Revision 4190

View differences:

org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.main/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
    <modelVersion>4.0.0</modelVersion>
4
    <artifactId>org.gvsig.vcsgis.main</artifactId>
5
    <packaging>jar</packaging>
6
    <name>${project.artifactId}</name>
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.vcsgis</artifactId>
10
        <version>1.0.0-SNAPSHOT</version>
11
    </parent>
12
  
13
  
14
    <build>
15
        <plugins>
16
            <plugin>
17
                <artifactId>maven-assembly-plugin</artifactId>
18
                <executions>
19
                    <execution>
20
                        <id>package-main</id>
21
                        <phase>package</phase>
22
                        <goals>
23
                            <goal>single</goal>
24
                        </goals>
25
                        <configuration>
26
                            <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
27
                            <appendAssemblyId>false</appendAssemblyId>
28
                            <finalName>${project.artifactId}-${project.version}</finalName>
29
                            <descriptors>
30
                                <descriptor>src/main/assembly/package-main.xml</descriptor>
31
                            </descriptors>
32
                        </configuration>
33
                    </execution>
34
                </executions>
35
            </plugin>
36

  
37
            <plugin>
38
                <groupId>org.apache.maven.plugins</groupId>
39
                <artifactId>maven-jar-plugin</artifactId>
40
                <configuration>
41
                    <archive>
42
                        <manifest>
43
                            <addClasspath>true</addClasspath>
44
                            <mainClass>org.gvsig.vcsgis.main.Main</mainClass>
45
                            <classpathPrefix>lib</classpathPrefix>
46
                        </manifest>
47
                    </archive>
48
                </configuration>
49
            </plugin>
50

  
51
        </plugins>
52

  
53
    </build>
54
  
55
  
56
    <dependencies>
57
        <dependency>
58
            <groupId>org.gvsig</groupId>
59
            <artifactId>org.gvsig.vcsgis.lib.api</artifactId>
60
            <scope>compile</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.gvsig</groupId>
64
            <artifactId>org.gvsig.vcsgis.swing.api</artifactId>
65
            <scope>compile</scope>
66
        </dependency>
67

  
68
        <!-- runtime dependencies -->
69
        <dependency>
70
            <groupId>org.gvsig</groupId>
71
            <artifactId>org.gvsig.vcsgis.lib.impl</artifactId>
72
            <scope>runtime</scope>
73
        </dependency>
74
        <dependency>
75
            <groupId>org.gvsig</groupId>
76
            <artifactId>org.gvsig.vcsgis.swing.impl</artifactId>
77
            <scope>compile</scope>
78
        </dependency>
79
        <dependency>
80
            <groupId>org.gvsig</groupId>
81
            <artifactId>${org.gvsig.metadata.lib.basic.impl}</artifactId>
82
            <scope>runtime</scope>
83
        </dependency>
84
        <dependency>
85
            <groupId>org.gvsig</groupId>
86
            <artifactId>org.gvsig.fmap.dal.impl</artifactId>
87
            <scope>runtime</scope>
88
        </dependency>
89
        <dependency>
90
            <groupId>org.gvsig</groupId>
91
            <artifactId>org.gvsig.fmap.dal.spi</artifactId>
92
            <scope>runtime</scope>
93
        </dependency>
94
        <dependency>
95
            <groupId>org.gvsig</groupId>
96
            <artifactId>org.gvsig.fmap.dal.file.lib</artifactId>
97
            <scope>runtime</scope>
98
        </dependency>
99
        <dependency>
100
            <groupId>org.gvsig</groupId>
101
            <artifactId>org.gvsig.fmap.dal.file.shp</artifactId>
102
            <scope>runtime</scope>
103
        </dependency>
104
        <dependency>
105
            <groupId>org.gvsig</groupId>
106
            <artifactId>org.gvsig.fmap.dal.file.dbf</artifactId>
107
            <scope>runtime</scope>
108
        </dependency>
109
        <dependency>
110
            <groupId>org.gvsig</groupId>
111
            <artifactId>org.gvsig.fmap.dal.db.lib</artifactId>
112
            <scope>runtime</scope>
113
        </dependency>
114
        <dependency>
115
            <groupId>org.gvsig</groupId>
116
            <artifactId>org.gvsig.fmap.dal.db.h2</artifactId>
117
            <scope>runtime</scope>
118
        </dependency>
119

  
120
        <dependency>
121
            <groupId>org.gvsig</groupId>
122
            <artifactId>org.gvsig.timesupport.lib.api</artifactId>
123
            <scope>runtime</scope>
124
        </dependency>
125
        <dependency>
126
            <groupId>org.gvsig</groupId>
127
            <artifactId>${org.gvsig.timesupport.lib.impl}</artifactId>
128
            <scope>runtime</scope>
129
        </dependency>
130

  
131
        <dependency>
132
            <groupId>org.gvsig</groupId>
133
            <artifactId>${org.gvsig.compat.impl}</artifactId>
134
            <scope>runtime</scope>
135
        </dependency>
136
        <dependency>
137
            <groupId>org.gvsig</groupId>
138
            <artifactId>${org.gvsig.fmap.geometry.impl}</artifactId>
139
            <scope>runtime</scope>
140
        </dependency>
141

  
142
        <dependency>
143
            <groupId>org.gvsig</groupId>            
144
            <artifactId>${org.gvsig.proj.lib.impl}</artifactId>
145
            <scope>runtime</scope>
146
        </dependency>
147

  
148
        <dependency>
149
            <groupId>org.gvsig</groupId>
150
            <artifactId>org.gvsig.tools.swing.api</artifactId>
151
            <scope>runtime</scope>
152
        </dependency>
153
        <dependency>
154
            <groupId>org.gvsig</groupId>
155
            <artifactId>org.gvsig.tools.swing.impl</artifactId>
156
            <scope>runtime</scope>
157
        </dependency>
158

  
159

  
160
    </dependencies>
161
</project>
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.main/src/main/java/org/gvsig/vcsgis/main/Main.java
1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2020 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.vcsgis.main;
25

  
26
import org.gvsig.tools.library.impl.DefaultLibrariesInitializer;
27

  
28
/**
29
 * Main executable class of vcsgis tool.
30
 *
31
 * @author gvSIG Team
32
 */
33
public class Main {
34

  
35
    public static void main(String args[]) {
36
        new DefaultLibrariesInitializer().fullInitialize();
37
    }
38

  
39
}
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.main/src/main/resources/README.txt
1
====
2
    gvSIG. Desktop Geographic Information System.
3

  
4
    Copyright (C) 2007-2012 gvSIG Association.
5

  
6
    This program is free software; you can redistribute it and/or
7
    modify it under the terms of the GNU General Public License
8
    as published by the Free Software Foundation; either version 2
9
    of the License, or (at your option) any later version.
10

  
11
    This program is distributed in the hope that it will be useful,
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU General Public License for more details.
15

  
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
    MA  02110-1301, USA.
20

  
21
    For any additional information, do not hesitate to contact us
22
    at info AT gvsig.com, or visit our website www.gvsig.com.
23
====
24

  
25
Put into this folder the resources needed by your classes.
26

  
27
This folder is added to the classpath, so you can load any resources 
28
through the ClassLoader.
29

  
30
By default, in this folder you can find an example of log4j configuration,
31
prepared to log messages through the console, so logging works when you
32
run your classes.
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.main/src/main/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2012 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 2
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
28

  
29
<!-- 
30
Log4J configuration file for unit tests execution.
31
 -->
32
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
33

  
34
	<!-- Appender configuration to show logging messages through the console -->
35
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
36
		<layout class="org.apache.log4j.PatternLayout">
37
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]  %m%n" />
38
		</layout>
39
	</appender>
40

  
41
	<!-- 
42
	Activate logging messages of DEBUG level of higher only for the
43
	org.gvsig.tools packages.
44
	You can put full classes names or packages instead, to configure
45
	logging for all the classes and subpackages of the package.
46
	-->
47
	<category name="org.gvsig">
48
		<priority value="WARN" />
49
	</category>
50
	<category name="org.cresques">
51
		<priority value="WARN" />
52
	</category>
53

  
54
	<!-- 
55
	By default, show only logging messages of INFO level or higher, 
56
	through the previously configured CONSOLE appender. 
57
	-->
58
	<root>
59
		<priority value="INFO" />
60
		<appender-ref ref="CONSOLE" />
61
	</root>
62
</log4j:configuration>
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.main/src/main/assembly/package-main.xml
1
<assembly>
2

  
3
    <id>package-main</id>
4
    <formats>
5
        <format>dir</format>
6
        <format>zip</format>
7
    </formats>
8

  
9
    <baseDirectory>${project.artifactId}</baseDirectory>
10
    <includeBaseDirectory>false</includeBaseDirectory>
11

  
12
    <files>
13
        <file>
14
            <source>target/${project.artifactId}-${project.version}.jar</source>
15
            <outputDirectory>.</outputDirectory>
16
        </file>
17
    </files>
18

  
19
    <fileSets>
20
        <fileSet>
21
            <directory>src/main/resources/data</directory>
22
            <outputDirectory>data</outputDirectory>
23
        </fileSet>
24
    </fileSets>
25

  
26
    <dependencySets>
27
        <dependencySet>
28
            <useProjectArtifact>false</useProjectArtifact>
29
            <useTransitiveDependencies>true</useTransitiveDependencies>
30
            <outputDirectory>lib</outputDirectory>
31
        </dependencySet>
32
    </dependencySets>
33

  
34
</assembly>
0 35

  
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/testSource2.csv
1
id/Integer/set/pk=true;text/String/set/size=100
2
1;AAA
3
2;BBB
4
3;CCC
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S03Checkout.txt
1

  
2
@rem ----------------------------------------------------------------
3
@rem TestS03Checkout.java
4
@rem Values to check request and response of checkout request
5
@rem ----------------------------------------------------------------
6

  
7
@begin request
8
@rem The client request of a checkout request for this test
9
{
10
    "Parameters":{
11
        "EntityName":"test",
12
        "EfectiveDate":null,
13
        "RevisionCode":null
14
    }
15
}
16
@end request
17

  
18
@begin response
19
@rem The server response of checkout request for this test 
20
{
21
    "Parameters":{
22
        "StatusCode":0,
23
        "StatusMessage":"_No_errors",
24
        "Entity":{
25
            "DataTableName":"VCSGIS_DATA",
26
            "Description":null,
27
            "EntityCode":"00000000000004abcdef0123456789",
28
            "EntityName":"test",
29
            "FeatureIdFieldName":"VCSGISCODE",
30
            "FeatureTypeAsJson":"\n{\n    \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureType\",\n    \"id\":\"testSource2\",\n    \"internalID\":\"4e62c43e\",\n    \"label\":null,\n    \"description\":null,\n    \"allowAtomaticValues\":false,\n    \"hasOID\":false,\n    \"defaultGeometryAttributeName\":null,\n    \"defaultTimeAttributeName\":null,\n    \"tags\":{\n        \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n    },\n    \"extraColumns\":{\n        \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureExtraColumns\",\n        \"extraColumns\":[\n        ]\n    },\n    \"descriptors\":[\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"id\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":0,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"Integer\",\n                \"type\":4,\n                \"subtype\":null\n            },\n            \"size\":0,\n            \"precision\":10,\n            \"scale\":0,\n            \"roundMode\":4,\n            \"allowNull\":false,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"text\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":10,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":100,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":false,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":true,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"VCSGISCODE\",\n            \"description\":null,\n            \"label\":\"VCSGIS Code\",\n            \"shortLabel\":null,\n            \"order\":20,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":60,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":true,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"es-ES\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        }\n    ]\n}",
31
            "FieldForLabel":"text",
32
            "GeometryFieldName":null,
33
            "RevisionCode":"00000000000016abcdef0123456789",
34
            "TopologyPlanCode":null,
35
            "UserCode":null,
36
            "Category":null,
37
            "Label":"test",
38
            "Authorizations":null,
39
            "TopologyPlanMode":0,
40
            "Resources":"test_res",
41
            "DataModels":null
42
        },
43
        "UsershashCode":"d41d8cd98f00b204e9800998ecf8427e",
44
        "TopologyPlansHashCode":"d41d8cd98f00b204e9800998ecf8427e"
45
    },
46
    "Data":[
47
        {
48
            "DataCode":"00000000000022abcdef0123456789",
49
            "Data":"\n{\n    \"id\":3,\n    \"text\":\"CCC\",\n    \"VCSGISCODE\":\"00000000000010abcdef0123456789\"\n}"
50
        },
51
        {
52
            "DataCode":"00000000000018abcdef0123456789",
53
            "Data":"\n{\n    \"id\":1,\n    \"text\":\"AAA\",\n    \"VCSGISCODE\":\"00000000000006abcdef0123456789\"\n}"
54
        },
55
        {
56
            "DataCode":"00000000000020abcdef0123456789",
57
            "Data":"\n{\n    \"id\":2,\n    \"text\":\"BBB\",\n    \"VCSGISCODE\":\"00000000000008abcdef0123456789\"\n}"
58
        }
59
    ]
60
}
61
@end response
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S02Commit.txt
1

  
2
@rem ----------------------------------------------------------------
3
@rem TestS02Commit.java
4
@rem Values to check request and response of commit request
5
@rem ----------------------------------------------------------------
6

  
7
@begin request
8
@rem The client request of a commit request for this test
9
{
10
    "Parameters":{
11
        "EfectiveDate":null,
12
        "RevisionDate":null,
13
        "Comment":null,
14
        "Entities":[
15
            {
16
                "DataTableName":"VCSGIS_DATA",
17
                "Description":null,
18
                "EntityCode":"00000000000004abcdef0123456789",
19
                "EntityName":"test",
20
                "FeatureIdFieldName":"VCSGISCODE",
21
                "FeatureTypeAsJson":"\n{\n    \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureType\",\n    \"id\":\"testSource2\",\n    \"internalID\":\"4e62c43e\",\n    \"label\":null,\n    \"description\":null,\n    \"allowAtomaticValues\":false,\n    \"hasOID\":false,\n    \"defaultGeometryAttributeName\":null,\n    \"defaultTimeAttributeName\":null,\n    \"tags\":{\n        \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n    },\n    \"extraColumns\":{\n        \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureExtraColumns\",\n        \"extraColumns\":[\n        ]\n    },\n    \"descriptors\":[\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"id\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":0,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"Integer\",\n                \"type\":4,\n                \"subtype\":null\n            },\n            \"size\":0,\n            \"precision\":10,\n            \"scale\":0,\n            \"roundMode\":4,\n            \"allowNull\":false,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"text\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":10,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":100,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":false,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":true,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"VCSGISCODE\",\n            \"description\":null,\n            \"label\":\"VCSGIS Code\",\n            \"shortLabel\":null,\n            \"order\":20,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":60,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":true,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"es-ES\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":\"\",\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        }\n    ]\n}",
22
                "FieldForLabel":"text",
23
                "GeometryFieldName":null,
24
                "RevisionCode":null,
25
                "TopologyPlanCode":null,
26
                "UserCode":null,
27
                "Category":null,
28
                "Label":"test",
29
                "Authorizations":null,
30
                "TopologyPlanMode":0,
31
                "Resources":null,
32
                "DataModels":null,
33
                "LocalRevisionCode":null
34
            }
35
        ],
36
        "NewEntityCodes":[
37
            "00000000000004abcdef0123456789"
38
        ]
39
    },
40
    "Data":[
41
        {
42
            "Code":"00000000000007abcdef0123456789",
43
            "EntityCode":"00000000000004abcdef0123456789",
44
            "Operation":2,
45
            "RelatedFeatureCode":"00000000000006abcdef0123456789",
46
            "Data":"\n{\n    \"id\":1,\n    \"text\":\"AAA\",\n    \"VCSGISCODE\":\"00000000000006abcdef0123456789\"\n}"
47
        },
48
        {
49
            "Code":"00000000000009abcdef0123456789",
50
            "EntityCode":"00000000000004abcdef0123456789",
51
            "Operation":2,
52
            "RelatedFeatureCode":"00000000000008abcdef0123456789",
53
            "Data":"\n{\n    \"id\":2,\n    \"text\":\"BBB\",\n    \"VCSGISCODE\":\"00000000000008abcdef0123456789\"\n}"
54
        },
55
        {
56
            "Code":"00000000000011abcdef0123456789",
57
            "EntityCode":"00000000000004abcdef0123456789",
58
            "Operation":2,
59
            "RelatedFeatureCode":"00000000000010abcdef0123456789",
60
            "Data":"\n{\n    \"id\":3,\n    \"text\":\"CCC\",\n    \"VCSGISCODE\":\"00000000000010abcdef0123456789\"\n}"
61
        }
62
    ]
63
}
64
@end request
65

  
66
@begin response
67
@rem The server response of commit request for this test 
68
{
69
    "Parameters":{
70
        "StatusCode":0,
71
        "StatusMessage":null,
72
        "Entities":[
73
            {
74
                "DataTableName":"VCSGIS_DATA",
75
                "Description":null,
76
                "EntityCode":"00000000000004abcdef0123456789",
77
                "EntityName":"test",
78
                "FeatureIdFieldName":"VCSGISCODE",
79
                "FieldForLabel":"text",
80
                "GeometryFieldName":null,
81
                "RevisionCode":"00000000000016abcdef0123456789",
82
                "TopologyPlanCode":null,
83
                "UserCode":null,
84
                "Category":null,
85
                "Label":"test",
86
                "Authorizations":null,
87
                "TopologyPlanMode":0,
88
                "Resources":null,
89
                "DataModels":null,
90
                "LocalRevisionCode":null
91
            }
92
        ]
93
    }
94
}
95
@end response
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S04Row.txt
1

  
2
@rem --------------------------------------------------
3
@rem TestS04Row.java
4
@rem Values to check request and response of 
5
@rem RowCreate/RowUpdate/RowDelete requests
6
@rem --------------------------------------------------
7

  
8
@rem The client request of a RowCreate request
9
@rem - EntityName: table name 
10
@rem - LocalRevisionCode: revision code of the data that the client has.
11
@rem - EfectiveDate: the efective date associated to this change. If null use now.
12
@rem - Comment
13
@rem - Data: The row values codified in Json. The VCSGISCODE field is asigned in 
14
@rem         this operation, if exists it is always overwrite.
15
@begin RowCreateRequest
16
{
17
    "EntityName":"test",
18
    "LocalRevisionCode":"00000000000016abcdef0123456789",
19
    "EfectiveDate":"2020-02-18 10:11:12.123",
20
    "Comment":"test row create (4,ddd)",
21
    "Data":"\n{\n    \"id\":4,\n    \"text\":\"DDD\",\n    \"VCSGISCODE\":\"\"\n}"
22
}
23
@end RowCreateRequest
24

  
25
@rem The server response of rowcreate request for this test 
26
@rem - StatusCode: 0 ok.
27
@rem - StatusMessage: Description of the error if StatusCode is not 0.
28
@rem - RelatedFeatureCode: Value asigned to the code of this 
29
@rem                       feature (VCSGISCODE) in the VCS
30
@rem - EntityName: Name of the table on which the operation has been performed.
31
@rem - EntityCode: Code associated with the table specified in EntityName.
32
@rem - RevisionCode: Code of the last revision of the EntityName table in the VCS.
33
@begin RowCreateResponse
34
{
35
    "Parameters":{
36
        "StatusCode":0,
37
        "StatusMessage":null,
38
        "RelatedFeatureCode":"00000000000024abcdef0123456789",
39
        "EntityName":"test",
40
        "EntityCode":"00000000000004abcdef0123456789",
41
        "RevisionCode":"00000000000026abcdef0123456789"
42
    }
43
}
44
@end RowCreateResponse
45

  
46

  
47
@rem The client request of a RowUpdate request
48
@rem - EntityName: table name 
49
@rem - LocalRevisionCode: revision code of the data that the client has.
50
@rem - EfectiveDate: the efective date associated to this change. If null use now.
51
@rem - Comment
52
@rem - Data: The row values codified in Json. VCSGISCODE cannot be null and 
53
@rem         must contain the del code in the VCS.
54
@begin RowUpdateRequest
55
{
56
    "EntityName":"test",
57
    "LocalRevisionCode":"00000000000026abcdef0123456789",
58
    "EfectiveDate":null,
59
    "Comment":"test row update (4,dd2)",
60
    "Data":"\n{\n    \"id\":4,\n    \"text\":\"DD2\",\n    \"VCSGISCODE\":\"00000000000024abcdef0123456789\"\n}"
61
}
62
@end RowUpdateRequest
63

  
64
@rem The server response of RowUpdate request for this test 
65
@rem - StatusCode: 0 ok.
66
@rem - StatusMessage: Description of the error if StatusCode is not 0.
67
@rem - EntityName: Name of the table on which the operation has been performed.
68
@rem - EntityCode: Code associated with the table specified in EntityName.
69
@rem - RevisionCode: Code of the last revision of the EntityName table in the VCS.
70
@begin RowUpdateResponse
71
{
72
    "Parameters":{
73
        "StatusCode":0,
74
        "StatusMessage":null,
75
        "EntityName":"test",
76
        "EntityCode":"00000000000004abcdef0123456789",
77
        "RevisionCode":"00000000000031abcdef0123456789"
78
    }
79
}
80
@end RowUpdateResponse
81

  
82

  
83
@rem The client request of a RowDelete request
84
@rem - EntityName: table name 
85
@rem - LocalRevisionCode: revision code of the data that the client has.
86
@rem - EfectiveDate: the efective date associated to this change. If null use now.
87
@rem - Comment
88
@rem - RelatedFeatureCode: code of the record to be deleted in the EntityName table.
89
@begin RowDeleteRequest
90
{
91
    "EntityName":"test",
92
    "LocalRevisionCode":"00000000000031abcdef0123456789",
93
    "RelatedFeatureCode":"00000000000024abcdef0123456789",
94
    "EfectiveDate":"2020-02-19 10:11:12.123",
95
    "Comment":"test row delete (4,dd2)"
96
}
97
@end RowDeleteRequest
98

  
99
@rem The server response of RowDelete request for this test 
100
@rem - StatusCode: 0 ok.
101
@rem - StatusMessage: Description of the error if StatusCode is not 0.
102
@rem - EntityName: Name of the table on which the operation has been performed.
103
@rem - EntityCode: Code associated with the table specified in EntityName.
104
@rem - RevisionCode: Code of the last revision of the EntityName table in the VCS.
105
@begin RowDeleteResponse
106
{
107
    "Parameters":{
108
        "StatusCode":0,
109
        "StatusMessage":null,
110
        "EntityName":"test",
111
        "EntityCode":"00000000000004abcdef0123456789",
112
        "RevisionCode":"00000000000036abcdef0123456789"
113
    }
114
}
115
@end RowDeleteResponse
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S06Authenticate.txt
1

  
2
@rem ----------------------------------------------------------------
3
@rem TestS03Checkout.java
4
@rem Values to check request and response of checkout request
5
@rem ----------------------------------------------------------------
6

  
7
@begin request
8
@rem The client request of a checkout request for this test
9
{
10
    "Parameters":{
11
        "UserId":"test",
12
        "Password":"password"
13
    }
14
}
15
@end request
16

  
17
@begin response
18
@rem The server response of checkout request for this test 
19
{
20
    "Parameters":{
21
        "StatusCode":0,
22
        "StatusMessage":"_No_errors",
23
        "UserCode":"00000000000002abcdef0123456789",
24
        "AuthenticationToken":"*"
25
    }
26
}
27
@end response
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S01Entities.txt
1

  
2
@rem ----------------------------------------------------------------
3
@rem TestR01Entities.java
4
@rem Values to check request and response of EntitiesRequestClient
5
@rem ----------------------------------------------------------------
6

  
7
@begin request
8
@rem The request of EntitiesRequestClient is always empty
9
@end request
10

  
11
@begin response
12
@rem The response of EntitiesRequestClient for this test 
13
{
14
    "Parameters":{
15
        "StatusCode":0,
16
        "StatusMessage":null,
17
        "Entities":[
18
            {
19
                "DataTableName":"VCSGIS_DATA",
20
                "Description":null,
21
                "EntityCode":"00000000000004abcdef0123456789",
22
                "EntityName":"test",
23
                "FeatureIdFieldName":"VCSGISCODE",
24
                "FeatureTypeAsJson":"\n{\n    \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureType\",\n    \"id\":\"testSource2\",\n    \"internalID\":\"4e62c43e\",\n    \"label\":null,\n    \"description\":null,\n    \"allowAtomaticValues\":false,\n    \"hasOID\":false,\n    \"defaultGeometryAttributeName\":null,\n    \"defaultTimeAttributeName\":null,\n    \"checkFeaturesAtFinishEditing\":false,\n    \"checkFeaturesAtInsert\":false,\n    \"tags\":{\n        \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n    },\n    \"extraColumns\":{\n        \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureExtraColumns\",\n        \"extraColumns\":[\n        ]\n    },\n    \"descriptors\":[\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"id\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":0,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"Integer\",\n                \"type\":4,\n                \"subtype\":null\n            },\n            \"size\":0,\n            \"precision\":10,\n            \"scale\":0,\n            \"roundMode\":4,\n            \"allowNull\":false,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":null,\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"text\",\n            \"description\":null,\n            \"label\":null,\n            \"shortLabel\":null,\n            \"order\":10,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":100,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":false,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":false,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":true,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"en\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":null,\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        },\n        {\n            \"__classname__\":\"org.gvsig.fmap.dal.feature.impl.DefaultFeatureAttributeDescriptor\",\n            \"name\":\"VCSGISCODE\",\n            \"description\":null,\n            \"label\":\"VCSGIS Code\",\n            \"shortLabel\":null,\n            \"order\":20,\n            \"groupName\":null,\n            \"dataType\":{\n                \"__classname__\":\"org.gvsig.tools.dataTypes.impl.DefaultDataType\",\n                \"name\":\"String\",\n                \"type\":8,\n                \"subtype\":null\n            },\n            \"size\":60,\n            \"precision\":-1,\n            \"scale\":-1,\n            \"roundMode\":4,\n            \"allowNull\":true,\n            \"primaryKey\":true,\n            \"readOnly\":false,\n            \"isAutomatic\":false,\n            \"isTime\":false,\n            \"indexed\":true,\n            \"isIndexAscending\":true,\n            \"allowIndexDuplicateds\":false,\n            \"hidden\":false,\n            \"avoidCachingAvailableValues\":false,\n            \"geometryType\":null,\n            \"srs\":null,\n            \"relationType\":0,\n            \"displaySize\":0,\n            \"locale\":{\n                \"__classname__\":\"java.util.Locale\",\n                \"languageTag\":\"es-ES\"\n            },\n            \"expression\":null,\n            \"availableValuesExpression\":null,\n            \"defaultValue\":null,\n            \"dataProfile\":null,\n            \"tags\":{\n                \"__classname__\":\"org.gvsig.tools.dynobject.impl.DefaultTags\"\n            },\n            \"availableValues\":null,\n            \"additionalInfo\":null\n        }\n    ]\n}",
25
                "FieldForLabel":"text",
26
                "GeometryFieldName":null,
27
                "RevisionCode":"00000000000016abcdef0123456789",
28
                "TopologyPlanCode":null,
29
                "UserCode":null,
30
                "Category":null,
31
                "Label":"test",
32
                "TopologyPlanMode":0,
33
                "Resources":null,
34
                "DataModels":null
35
            }
36
        ]
37
    }
38
}
39
@end response
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/expecteds/S05Update.txt
1

  
2
@rem ----------------------------------------------------------------
3
@rem TestS05Update.java
4
@rem Values to check request and response of update request
5
@rem ----------------------------------------------------------------
6

  
7
@begin request
8
@rem The client request of a update request for this test
9
{
10
    "Parameters":{
11
        "EntityName":"test",
12
        "LocalRevisionCode":"00000000000016abcdef0123456789"
13
    }
14
}
15
@end request
16

  
17
@begin response
18
@rem The server response of checkout request for this test 
19
{
20
    "Parameters":{
21
        "StatusCode":0,
22
        "StatusMessage":"_No_errors",
23
        "Entity":{
24
            "DataTableName":"VCSGIS_DATA",
25
            "Description":null,
26
            "EntityCode":"00000000000004abcdef0123456789",
27
            "EntityName":"test",
28
            "FeatureIdFieldName":"VCSGISCODE",
29
            "FieldForLabel":"text",
30
            "GeometryFieldName":null,
31
            "RevisionCode":"00000000000032abcdef0123456789",
32
            "TopologyPlanCode":null,
33
            "UserCode":null,
34
            "Category":null,
35
            "Label":"test",
36
            "TopologyPlanMode":0,
37
            "Resources":null,
38
            "DataModels":null
39
        },
40
        "UsersHashCode":"d41d8cd98f00b204e9800998ecf8427e",
41
        "TopologyPlansHashCode":"d41d8cd98f00b204e9800998ecf8427e"
42
    },
43
    "Data":[
44
        {
45
            "DataCode":"00000000000036abcdef0123456789",
46
            "EntityCode":"00000000000004abcdef0123456789",
47
            "RevisionCode":"00000000000032abcdef0123456789",
48
            "RevisionNumber":1,
49
            "EfectiveDate":"2020-02-17 10:11:12.123",
50
            "Operation":2,
51
            "FeatureRelatedCode":"00000000000026abcdef0123456789",
52
            "Data":"\n{\n    \"id\":4,\n    \"text\":\"DDD\",\n    \"VCSGISCODE\":\"00000000000026abcdef0123456789\"\n}"
53
        },
54
        {
55
            "DataCode":"00000000000034abcdef0123456789",
56
            "EntityCode":"00000000000004abcdef0123456789",
57
            "RevisionCode":"00000000000032abcdef0123456789",
58
            "RevisionNumber":1,
59
            "EfectiveDate":"2020-02-17 10:11:12.123",
60
            "Operation":1,
61
            "FeatureRelatedCode":"00000000000008abcdef0123456789",
62
            "Data":"\n{\n    \"id\":2,\n    \"text\":\"BB2\",\n    \"VCSGISCODE\":\"00000000000008abcdef0123456789\"\n}"
63
        }
64
    ]
65
}
66
@end response
org.gvsig.vcsgis/tags/org.gvsig.vcsgis-1.0.24/org.gvsig.vcsgis.lib/org.gvsig.vcsgis.lib.impl/src/test/resources/org/gvsig/vcsgis/lib/impl/testImportHistory.csv
1
"id/Integer/set/readOnly=true/set/allowNull=false/set/automatic=true/set/order=0";"extinca/Integer/set/order=10";"area/Integer/set/order=20";"finalmeters/Integer/set/order=30";"revisiondate/String/set/size=2147483647/set/order=40";"status/String/set/size=2147483647/set/order=50";"initialmeters/Integer/set/order=60";"version/Integer/set/order=70";"roadelementtype/String/set/size=2147483647/set/order=80";"auditcreatedby/Integer/set/order=90";"auditlastupdatedby/Integer/set/order=100";"urbantextreference/String/set/size=2147483647/set/order=110";"reserveareanumber/Integer/set/order=120";"reservelongitude/Double/set/locale=en/set/order=130";"urbanroadtype/Long/set/order=140";"urbanroads/Long/set/order=150";"urbansection/Long/set/order=160";"urbanstretches/Long/set/order=170";"extid/Long/set/order=180";"thrudate/String/set/size=30/set/order=190";"auditcreation/String/set/size=30/set/order=200";"fromdate/String/set/size=30/set/order=210";"auditlastupdate/String/set/size=30/set/order=220";"reservemodel/Long/set/order=230";"reservenumberplate/String/set/size=100/set/order=240";"reservecarparktype/String/set/size=20/set/order=250";"reserveownership/String/set/size=20/set/order=260";"reservetype/String/set/size=20/set/order=270";"reservetimetable/String/set/size=200/set/order=280";"notes/String/set/size=250/set/order=290";"id0/Long/set/readOnly=true/set/pk=true/set/automatic=true/set/order=300"
2
;"125584";"472438";"0";"2007-10-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"2.76";"486409";"3375";"485372";;;"2027-10-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-16 00:00:00.000000";"472417";;"LINE";;;;;
3
;"125585";"472438";"0";"2007-10-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"14";"0";"2.52";"486409";"3375";"485372";;;"2027-10-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-16 00:00:00.000000";"472417";;"LINE";;;;;
4
;"125601";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"49";"0";"4.05";"486409";"2920";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472416";"V.1566";"LINE";;;;;
5
;"125638";"472438";"0";"2007-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"14";"15.63";"486409";"2965";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-29 00:00:00.000000";"472423";;"BATTERY";;;;;
6
;"125639";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"45";"33";"42.3";"486409";"4450";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA JUZGADOS BENALUA";
7
;"125646";"472438";"0";"2004-09-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.01";"486419";"4195";"485372";;;"2024-09-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-17 00:00:00.000000";"472416";"V.2093";"LINE";;;;;
8
;"125712";"472438";"0";"2007-06-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3.01";"486409";"5485";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-06-07 00:00:00.000000";"472416";"V. 2907";"LINE";;;;;
9
;"125729";"472438";"0";"2004-09-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"42";"0";"2.65";"486409";"5190";"485372";;;"2024-09-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-29 00:00:00.000000";"472417";;"LINE";;;;;
10
;"124903";"472438";"0";"2005-05-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"2.8";"486409";"4194";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-08 00:00:00.000000";"472417";;"LINE";;;;;
11
;"125768";"472438";"0";"2004-09-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"5.19";"486409";"3215";"485372";;;"2024-09-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-02 00:00:00.000000";"472420";"V.384";"LINE";;;;;
12
;"125769";"472438";"0";"2004-03-14 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"4.01";"486409";"529";"485372";;;"2024-03-14 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-14 00:00:00.000000";"472417";;"LINE";;;;;
13
;"125771";"472438";"0";"2004-09-04 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.92";"486409";"2720";"485372";;;"2024-09-04 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-04 00:00:00.000000";"472417";;"LINE";;;;;
14
;"124906";"472438";"0";"2007-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"6.01";;;"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-28 00:00:00.000000";"472416";"V.3125";"LINE";;;;;
15
;"124907";"472438";"0";"2007-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"7.09";;;"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-28 00:00:00.000000";"472416";"V.3126";"LINE";;;;;
16
;"124910";"472438";"0";"2005-03-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"7.33";"486406";"5563";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-29 00:00:00.000000";"472416";"V. 445";"LINE";;;;;
17
;"124911";"472438";"0";"2005-03-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5";"486406";"5563";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-29 00:00:00.000000";"472417";;"LINE";;;;;
18
;"125780";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"21";"0";"3.01";"486406";"1905";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
19
;"125783";"472438";"0";"2005-05-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"18";"0";"3.02";"486409";"3375";"485372";;;"2025-05-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-06 00:00:00.000000";"472417";;"LINE";;;;;
20
;"125784";"472438";"0";"2005-02-14 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"47";"0";"2.5";"486409";"1810";"485372";;;"2025-02-14 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-02-14 00:00:00.000000";"472417";;"LINE";;;;;
21
;"125785";"472438";"0";"2007-06-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"3.1";"486409";"5485";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-06-07 00:00:00.000000";"472416";"V. 2908";"LINE";;;;;
22
;"125786";"472438";"0";"2007-09-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35";"0";"5.02";"486409";"4525";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-03 00:00:00.000000";"472416";"V. 3546";"LINE";;;;;
23
;"125787";"472438";"0";"2007-09-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"37";"0";"10.7";"486409";"4525";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-03 00:00:00.000000";"472417";;"LINE";;;;;
24
;"125835";"472438";"0";"2007-03-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2 AC";"0";"6.2";"486409";"2038";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-03-23 00:00:00.000000";"472416";"V. 3632";"LINE";;;;;
25
;"124960";"472438";"0";"2005-01-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.06";"486409";"6005";"485372";;;"2025-01-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-09 00:00:00.000000";"472417";;"LINE";;;;;
26
;"125936";"472438";"0";"2004-04-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"11";"0";"3.02";"486409";"5270";"485372";;;"2024-04-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-04-28 00:00:00.000000";"472416";"V.521";"LINE";;;;;
27
;"125018";"472438";"0";"2003-05-19 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"5.62";"486409";"4964";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-19 00:00:00.000000";"472416";;"LINE";;;;;
28
;"124988";"472438";"0";"2003-05-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"3.9";"486409";;"485372";;;"2011-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-07 00:00:00.000000";"472417";;"LINE";;;;"Calle: GENERAL MILLAN ASTRAY";
29
;"125987";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"13";"0";"3";"486409";"2064";"485372";;;"2025-04-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472417";;"LINE";;;;;
30
;"125017";"472438";"0";"2003-05-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20";"0";"3";"486409";"4964";"485372";;;"2023-05-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-19 00:00:00.000000";"472416";"V.2670";"LINE";;;;;
31
;"126013";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"10";"10.4";"486409";"6175";"485372";;;"2017-02-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472423";;"BATTERY";;;;"Parte: V=2432 , H= 53";
32
;"126014";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"12";"11.9";"486409";"2064";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA SAN BLAS";
33
;"125026";"472438";"0";"2003-05-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"44";"0";"3.68";"486409";"3515";"485372";;;"2023-05-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-22 00:00:00.000000";"472416";"V.2721";"LINE";;;;;
34
;"126015";"472438";"0";"2005-08-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"9";"9.72";"486409";"3840";"485372";;;"2017-02-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-08-02 00:00:00.000000";"472423";;"BATTERY";;;;"Parte: V=2430 , H=54";
35
;"125070";"472438";"0";"2003-05-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"12";"486419";"2545";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-14 00:00:00.000000";"472417";;"LINE";;;;;
36
;"125071";"472438";"0";"2003-05-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"11.98";"486409";"4505";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-20 00:00:00.000000";"472416";"V.A.391";"LINE";;;;;
37
;"126147";"472438";"0";"2007-05-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"24";"26";"24.53";"486406";"210";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-14 00:00:00.000000";"472423";;"BATTERY";;;;;
38
;"126148";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"6";"6.1";"486409";"1430";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA SAN BLAS";
39
;"125088";"472438";"0";"2007-10-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"18";"0";"3.6";"486409";"1055";"485372";;;"2027-10-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-22 00:00:00.000000";"472417";;"LINE";;;;;
40
;"126155";"472438";"0";"2007-10-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"4.38";"486409";"3375";"485372";;;"2027-10-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-16 00:00:00.000000";"472417";;"LINE";;;;;
41
;"126160";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"23";"0";"6.47";"486406";"210";"485372";;;"2023-08-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";"V.A.215";"LINE";;;;;
42
;"126161";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"4.9";"486406";"210";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";;"LINE";;;;;
43
;"126162";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"21";"0";"5.53";"486406";"210";"485372";;;"2023-08-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";"V.A.214";"LINE";;;;;
44
;"126163";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"4.9";"486406";"210";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";;"LINE";;;;;
45
;"126172";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"5.91";"486409";"4525";"485372";;;"2023-08-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472417";;"LINE";;;;;
46
;"126174";"472438";"0";"2007-05-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"9";"486409";"4860";"485372";;;"2010-09-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-16 00:00:00.000000";"472417";;"LINE";;;;;
47
;"126175";"472438";"0";"2007-02-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"7.93";"486409";"3375";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-02-12 00:00:00.000000";"472417";;"LINE";;;;;
48
;"126179";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"6";"5.8";"486409";"1430";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA SAN BLAS";
49
;"124939";"472438";"0";"2004-03-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"4.24";"486409";"4552";"485372";;;"2024-03-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-23 00:00:00.000000";"472417";;"LINE";;;;;
50
;"126232";"472438";"0";"2004-06-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"5.52";"486406";"2021";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-06-20 00:00:00.000000";"472416";"V.3050";"LINE";;;;;
51
;"126240";"472438";"0";"2004-08-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"2.62";"486409";"3280";"485372";;;"2024-08-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-08-05 00:00:00.000000";"472417";;"LINE";;;;;
52
;"126260";"472438";"0";"2003-05-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"3.16";"486409";"2020";"485372";;;"2023-05-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-16 00:00:00.000000";"472417";;"LINE";;;;;
53
;"126267";"472438";"0";"2006-01-30 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"26";"0";"4.55";"486406";"2385";"485372";;;"2026-01-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-30 00:00:00.000000";"472416";"V.1807";"LINE";;;;;
54
;"126268";"472438";"0";"2006-01-30 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"26";"0";"2.97";"486406";"2385";"485372";;;"2026-01-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-30 00:00:00.000000";"472416";"V.566";"LINE";;;;;
55
;"126270";"472438";"0";"2006-01-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"2.63";"486412";"0";"485372";;;"2026-01-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-27 00:00:00.000000";"472417";;"LINE";;;;;
56
;"126271";"472438";"0";"2003-05-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"6";"486409";"2020";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-16 00:00:00.000000";"472417";;"LINE";;;;;
57
;"126272";"472438";"0";"2003-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"5.1";"486406";"2430";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-10-24 00:00:00.000000";"472417";;"LINE";;;;;
58
;"126273";"472438";"0";"2004-07-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.7";"486409";"4400";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-27 00:00:00.000000";"472417";;"LINE";;;;;
59
;"126274";"472438";"0";"2004-08-04 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"6.4";"486409";"3285";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-08-04 00:00:00.000000";"472417";;"LINE";;;;;
60
;"126275";"472438";"0";"2004-08-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"5.9";"486409";"3280";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-08-05 00:00:00.000000";"472417";;"LINE";;;;;
61
;"126276";"472438";"0";"2006-02-01 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"14";"0";"5.61";"486406";"2385";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-01 00:00:00.000000";"472416";"V. 1772";"LINE";;;;;
62
;"126277";"472438";"0";"2006-02-01 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"5.32";"486406";"2385";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-01 00:00:00.000000";"472416";"V. 1762";"LINE";;;;;
63
;"126278";"472438";"0";"2006-02-06 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"26";"0";"5.98";"486406";"2385";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-06 00:00:00.000000";"472416";"V. 1807";"LINE";;;;;
64
;"126291";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"6.45";"486409";"61";"485372";;;"2027-09-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";"V.1165";"LINE";;;;;
65
;"126292";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"6.36";"486406";"3457";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";;"LINE";;;;;
66
;"126298";"472438";"0";"2006-01-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"92";"0";"6.9";"486406";"1819";"485372";;;"2026-01-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-22 00:00:00.000000";"472417";;"LINE";;;;;
67
;"124989";"472438";"0";"2003-05-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"4.96";"486409";;"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-07 00:00:00.000000";"472416";"V.2228";"LINE";;;;"Calle: GENERAL MILLAN ASTRAY";
68
;"126320";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"3.15";"486409";"61";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472417";;"LINE";;;;;
69
;"126321";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.97";"486409";"61";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";"V.0397";"LINE";;;;;
70
;"125027";"472438";"0";"2003-05-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"44";"0";"4.87";"486409";"3515";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-22 00:00:00.000000";"472416";;"LINE";;;;;
71
;"126416";"472438";"0";"2005-01-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"2.57";"486409";"4145";"485372";;;"2025-01-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-20 00:00:00.000000";"472417";;"LINE";;;;;
72
;"126419";"472438";"0";"2003-04-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35";"0";"3.03";"486409";"4252";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-04-29 00:00:00.000000";"472417";;"LINE";;;;;
73
;"126431";"472438";"0";"2005-04-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"42";"10";"15.33";"486409";"3385";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-28 00:00:00.000000";"472423";;"LINE";;;;;
74
;"126469";"472438";"0";"2005-11-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"9";"0";"3";"486409";"470";"485372";;;"2025-11-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-02 00:00:00.000000";"472416";"V.366";"LINE";;;;;
75
;"126470";"472438";"0";"2005-11-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"0";"4.69";"486409";"470";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-02 00:00:00.000000";"472416";;"LINE";;;;;
76
;"126498";"472438";"0";"2005-11-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.06";"486409";"470";"485372";;;"2025-11-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-02 00:00:00.000000";"472417";;"LINE";;;;;
77
;"126499";"472438";"0";"2003-07-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3";"486409";"470";"485372";;;"2023-07-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-21 00:00:00.000000";"472417";;"LINE";;;;;
78
;"126514";"472438";"0";"2003-01-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20B";"0";"3.35";"486409";"3390";"485372";;;"2023-01-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-01-16 00:00:00.000000";"472417";;"LINE";;;;;
79
;"126515";"472438";"0";"2005-01-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"39";"0";"7.9";"486409";"3390";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-20 00:00:00.000000";"472417";;"LINE";;;;;
80
;"126516";"472438";"0";"2003-07-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"18";"0";"3.01";"486409";"4815";"485372";;;"2023-07-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-20 00:00:00.000000";"472417";;"LINE";;;;;
81
;"126517";"472438";"0";"2004-10-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"3.72";"486406";"4350";"485372";;;"2024-10-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-10-07 00:00:00.000000";"472417";;"LINE";;;;;
82
;"126518";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"29";"0";"3.83";"486409";"1765";"485372";;;"2027-09-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
83
;"126524";"472438";"0";"2003-07-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"28";"0";"3.01";"486409";"2200";"485372";;;"2023-07-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-20 00:00:00.000000";"472417";;"LINE";;;;;
84
;"126526";"472438";"0";"2005-11-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"23";"0";"3";"486409";"2200";"485372";;;"2025-11-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-02 00:00:00.000000";"472417";;"LINE";;;;;
85
;"126527";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.02";"486409";"4130";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
86
;"126528";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.01";"486406";"1905";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
87
;"126529";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.03";"486406";"1905";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
88
;"126530";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"3.01";"486409";"4130";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
89
;"126531";"472438";"0";"2005-12-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"13";"0";"3";"486409";"1015";"485372";;;"2025-12-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-12-06 00:00:00.000000";"472417";;"LINE";;;;;
90
;"125086";"472438";"0";"2007-09-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.18";"486409";"5350";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-28 00:00:00.000000";"472416";"V.2895";"LINE";;;;;
91
;"125087";"472438";"0";"2007-10-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.02";"486409";"1055";"485372";;;"2027-10-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-22 00:00:00.000000";"472417";;"LINE";;;;;
92
;"126566";"472438";"0";"2003-07-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"9.4";"486409";"1035";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-21 00:00:00.000000";"472417";;"LINE";;;;;
93
;"125089";"472438";"0";"2007-06-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3.83";"486409";"3550";"485372";;;"2027-06-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-06-28 00:00:00.000000";"472417";;"LINE";;;;;
94
;"126581";"472438";"0";"2005-01-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"39";"0";"3";"486409";"3390";"485372";;;"2025-01-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-20 00:00:00.000000";"472416";"Vado en trámite";"LINE";;;;;
95
;"126582";"472438";"0";"2005-01-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"39";"0";"5.55";"486409";"3390";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-20 00:00:00.000000";"472416";;"LINE";;;;;
96
;"125093";"472438";"0";"2004-11-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.23";"486409";"529";"485372";;;"2024-11-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-19 00:00:00.000000";"472417";;"LINE";;;;;
97
;"125094";"472438";"0";"2004-11-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.11";"486409";"529";"485372";;;"2024-11-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-19 00:00:00.000000";"472417";;"LINE";;;;;
98
;"126591";"472438";"0";"2003-07-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"11";"0";"3.63";"486406";"4405";"485372";;;"2023-07-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-27 00:00:00.000000";"472417";;"LINE";;;;;
99
;"126598";"472438";"0";"2003-07-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"38";"0";"6.8";"486409";"4815";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-18 00:00:00.000000";"472417";;"LINE";;;;;
100
;"126599";"472438";"0";"2003-07-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"5";"486409";"4590";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-22 00:00:00.000000";"472416";"V.1457";"LINE";;;;;
101
;"126603";"472438";"0";"2006-01-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"5.9";"486409";"1035";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-18 00:00:00.000000";"472417";;"LINE";;;;;
102
;"126604";"472438";"0";"2005-12-13 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"0";"3.6";"486406";"2420";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-12-13 00:00:00.000000";"472417";;"LINE";;;;;
103
;"126605";"472438";"0";"2005-12-13 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"6.3";"486406";"2420";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-12-13 00:00:00.000000";"472417";;"LINE";;;;;
104
;"126606";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"13";"486409";"4130";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
105
;"126607";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"29";"0";"7.8";"486409";"1765";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
106
;"126608";"472438";"0";"2007-09-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"4.96";"486406";"1905";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-14 00:00:00.000000";"472416";"V. 3501";"LINE";;;;;
107
;"125104";"472438";"0";"2003-09-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"44";"0";"3.03";"486409";"5350";"485372";;;"2023-09-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-29 00:00:00.000000";"472417";;"LINE";;;;;
108
;"126609";"472438";"0";"2007-09-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27AC";"0";"8.4";"486409";"4130";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-14 00:00:00.000000";"472416";"V. 3428";"LINE";;;;;
109
;"126611";"472438";"0";"2007-07-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"0";"5";"486409";"2200";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-07-18 00:00:00.000000";"472417";"BASURA";"LINE";;;;;
110
;"126615";"472438";"0";"2004-11-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"11";"11.8";"486406";"4405";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-02 00:00:00.000000";"472423";;"BATTERY";;;;;
111
;"126616";"472438";"0";"2004-11-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"8";"7.6";"486406";"4350";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-02 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA ENSANCHE-OSCAR ESPLA";
112
;"126617";"472438";"0";"2006-12-04 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"9";"17.5";"486419";"2905";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-12-04 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA PLAZA GALICIA";
113
;"126618";"472438";"0";"2004-09-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"8";"8.2";"486409";"1035";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-24 00:00:00.000000";"472423";;"BATTERY";;;;;
114
;"126621";"472438";"0";"2004-11-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"21";"11.15";"486409";"1035";"485372";;;"2012-04-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-24 00:00:00.000000";"472423";;"LINE";;;;;
115
;"126622";"472438";"0";"2004-09-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"39";"48";"45.5";"486409";"2200";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-11 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CENTRO ENSANCHE";
116
;"126623";"472438";"0";"2004-11-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"31";"6";"6.6";"486406";"4350";"485372";;;"2015-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-02 00:00:00.000000";"472423";;"BATTERY";;;;;
117
;"126629";"472438";"0";"2005-03-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"3";"486409";"4600";"485372";;;"2025-03-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-06 00:00:00.000000";"472417";;"LINE";;;;;
118
;"125120";"472438";"0";"2004-02-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.03";"486409";"4975";"485372";;;"2024-02-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-19 00:00:00.000000";"472417";;"LINE";;;;;
119
;"125122";"472438";"0";"2007-09-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3.01";"486409";"531";"485372";;;"2027-09-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-28 00:00:00.000000";"472417";;"LINE";;;;;
120
;"125123";"472438";"0";"2007-09-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3.03";"486409";"531";"485372";;;"2027-09-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-28 00:00:00.000000";"472417";;"LINE";;;;;
121
;"126698";"472438";"0";"2006-04-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"3.01";"486409";"3945";"485372";;;"2026-04-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-28 00:00:00.000000";"472416";"V.489";"LINE";;;;;
122
;"126700";"472438";"0";"2006-04-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"3";"486409";"3945";"485372";;;"2026-04-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-28 00:00:00.000000";"472416";"V.233";"LINE";;;;;
123
;"126701";"472438";"0";"2006-04-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"4.34";"486409";"3945";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-28 00:00:00.000000";"472416";;"LINE";;;;;
124
;"126702";"472438";"0";"2006-04-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"18";"0";"3";"486409";"3945";"485372";;;"2026-04-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-28 00:00:00.000000";"472416";"V.1691";"LINE";;;;;
125
;"126703";"472438";"0";"2006-04-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"22";"0";"4.93";"486409";"3945";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-28 00:00:00.000000";"472416";;"LINE";;;;;
126
;"126777";"472438";"0";"2003-04-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"14";"0";"3.02";"486409";"4305";"485372";;;"2023-04-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-04-03 00:00:00.000000";"472417";;"LINE";;;;;
127
;"125153";"472438";"0";"2007-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"8.03";;;"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-28 00:00:00.000000";"472416";"V.3127";"LINE";;;;;
128
;"126829";"472438";"0";"2005-05-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"41";"0";"3.5";"486409";"1495";"485372";;;"2025-05-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-27 00:00:00.000000";"472416";"V.287";"LINE";;;;;
129
;"126830";"472438";"0";"2005-05-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"41";"0";"4.4";"486409";"1495";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-27 00:00:00.000000";"472416";;"LINE";;;;;
130
;"126840";"472438";"0";"2003-04-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"45";"0";"3.09";"486409";"1745";"485372";;;"2023-04-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-04-03 00:00:00.000000";"472417";;"LINE";;;;;
131
;"126848";"472438";"0";"2003-04-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"4.04";"486409";"1745";"485372";;;"2023-04-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-04-02 00:00:00.000000";"472417";;"LINE";;;;;
132
;"126866";"472438";"0";"2004-04-06 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"4.85";"486409";"1745";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-04-06 00:00:00.000000";"472416";"V. 3094";"LINE";;;;;
133
;"126868";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"4";"486406";"3010";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472417";;"LINE";;;;;
134
;"126877";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"29";"28.6";"486409";"6175";"485372";;;"2020-03-04 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: IES JORGE JUAN";
135
;"126878";"472438";"0";"2004-09-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"10";"9.9";"486406";"3010";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-14 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CENTRO TRADICIONAL";
136
;"126879";"472438";"0";"2004-09-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"10";"10.8";"486409";"526";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-23 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA MERCADO";
137
;"126881";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"27";"85";"486409";"526";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;"Titular: ZONA MERCADO CENTRAL";
138
;"126882";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"15";"47.9";"486409";"526";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;;
139
;"126886";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"29";"101.7";"486409";"526";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;"Titular: ZONA MERCADO CENTRAL";
140
;"126888";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"25";"108.3";"486409";"4725";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";"CORDÓN";"LINE";;;;;
141
;"126889";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"27";"88.3";"486409";"4725";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;"Titular: ZONA CENTRO TRADICIONAL";
142
;"126890";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"14";"10.8";"486409";"4725";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CENTRO TRADICIONAL";
143
;"126891";"472438";"0";"2006-03-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"15";"15.9";"486409";"5460";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-28 00:00:00.000000";"472423";;"BATTERY";;;;;
144
;"126892";"472438";"0";"2004-09-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"45";"42.28";"486406";"1485";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-21 00:00:00.000000";"472423";;"BATTERY";;;;;
145
;"126893";"472438";"0";"2007-11-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"13";"13.5";"486409";"4390";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-29 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA PLAZA TOROS";
146
;"126896";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"16";"16.54";"486409";"3590";"485372";;;"2012-10-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"LINE";;;;;
147
;"126897";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"10";"10.11";"486409";"3590";"485372";;;"2012-10-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"LINE";;;;;
148
;"126901";"472438";"0";"2004-09-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"69";"18";"20";"486409";"3945";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-22 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ESCUELA DE IDIOMAS";
149
;"126952";"472438";"0";"2005-10-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"4.51";"486406";"3020";"485372";;;"2025-10-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-10-19 00:00:00.000000";"472416";"V.1405";"LINE";;;;;
150
;"125200";"472438";"0";"2007-09-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"26";"0";"5.15";"486409";"531";"485372";;;"2027-09-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-28 00:00:00.000000";"472417";;"LINE";;;;;
151
;"125200";"472438";"0";"2004-11-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"26";"0";"5.15";"486409";"531";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-18 00:00:00.000000";"472417";;"LINE";;;;;
152
;"125201";"472438";"0";"2007-06-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"7.7";"486409";"1100";"485372";;;"2011-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-06-12 00:00:00.000000";"472417";;"LINE";;;;;
153
;"125202";"472438";"0";"2007-10-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"52";"0";"4.45";"486409";"1450";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-05 00:00:00.000000";"472416";"V.3150";"LINE";;;;;
154
;"125203";"472438";"0";"2007-10-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"33";"0";"5.55";"486409";"1450";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-05 00:00:00.000000";"472416";"V.3779";"LINE";;;;;
155
;"125204";"472438";"0";"2007-10-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"29";"0";"4.59";"486409";"1450";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-05 00:00:00.000000";"472416";"V.3364";"LINE";;;;;
156
;"125205";"472438";"0";"2007-10-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"40";"0";"4.45";"486409";"780";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-23 00:00:00.000000";"472416";"V.3588";"LINE";;;;;
157
;"125206";"472438";"0";"2007-10-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"36";"0";"2.97";"486409";"780";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-23 00:00:00.000000";"472416";"V.2781";"LINE";;;;;
158
;"125207";"472438";"0";"2007-10-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"33";"0";"3.52";"486409";"780";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-23 00:00:00.000000";"472416";"V.2659";"LINE";;;;;
159
;"126993";"472438";"0";"2003-08-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3.03";"486409";"1890";"485372";;;"2023-08-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-06 00:00:00.000000";"472417";;"LINE";;;;;
160
;"125210";"472438";"0";"2007-10-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"6.01";"486409";"1910";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-22 00:00:00.000000";"472416";"V.2779";"LINE";;;;;
161
;"125211";"472438";"0";"2007-10-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"4.46";"486409";"1910";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-22 00:00:00.000000";"472416";"V.0051";"LINE";;;;;
162
;"126994";"472438";"0";"2003-08-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3";"486409";"1890";"485372";;;"2023-08-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-06 00:00:00.000000";"472417";;"LINE";;;;;
163
;"127025";"472438";"0";"2006-11-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"33";"0";"3.01";"486409";"470";"485372";;;"2026-11-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-09 00:00:00.000000";"472416";"V.A.126";"LINE";;;;;
164
;"127033";"472438";"0";"2005-12-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3.08";"486409";"1015";"485372";;;"2025-12-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-12-06 00:00:00.000000";"472417";;"LINE";;;;;
165
;"127039";"472438";"0";"2003-07-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"39";"0";"3.03";"486409";"470";"485372";;;"2023-07-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-22 00:00:00.000000";"472417";;"LINE";;;;;
166
;"127040";"472438";"0";"2003-07-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"13";"0";"4.5";"486406";"3875";"485372";;;"2023-07-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-22 00:00:00.000000";"472417";;"LINE";;;;;
167
;"127041";"472438";"0";"2003-07-30 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"23";"0";"3.04";"486406";"2370";"485372";;;"2023-07-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-07-30 00:00:00.000000";"472417";;"LINE";;;;;
168
;"127061";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3.03";"486406";"4350";"485372";;;"2027-09-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
169
;"127068";"472438";"0";"2006-06-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"8";"486419";"437";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-06-12 00:00:00.000000";"472417";;"LINE";;;;;
170
;"127069";"472438";"0";"2006-06-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"3.2";"486419";"437";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-06-12 00:00:00.000000";"472417";;"LINE";;;;;
171
;"127070";"472438";"0";"2005-11-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"3.1";"486409";"4770";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-29 00:00:00.000000";"472417";;"LINE";;;;;
172
;"127071";"472438";"0";"2005-11-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"3";"486409";"3040";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-29 00:00:00.000000";"472417";;"LINE";;;;;
173
;"127072";"472438";"0";"2006-11-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"32";"0";"3.1";"486409";"470";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-09 00:00:00.000000";"472417";;"LINE";;;;;
174
;"127073";"472438";"0";"2006-11-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"12.8";"486406";"3875";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-09 00:00:00.000000";"472417";"V.A.126";"LINE";;;;;
175
;"127074";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"7";"486406";"3020";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
176
;"127076";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"0";"10.5";"486406";"3020";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
177
;"125223";"472438";"0";"2006-11-13 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3";"486409";"5833";"485372";;;"2026-11-13 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-13 00:00:00.000000";"472417";;"LINE";;;;;
178
;"125225";"472438";"0";"2006-11-13 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"3";"486409";"1022";"485372";;;"2026-11-13 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-13 00:00:00.000000";"472417";;"LINE";;;;;
179
;"127077";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"6.4";"486409";"3000";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
180
;"127078";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5D";"0";"7";"486409";"3000";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
181
;"127079";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"7.4";"486409";"5890";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
182
;"127080";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5A";"0";"2.7";"486406";"3020";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
183
;"127081";"472438";"0";"2007-09-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35";"0";"8.8";"486406";"4350";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-12 00:00:00.000000";"472417";;"LINE";;;;;
184
;"127091";"472438";"0";"2005-11-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"10.4";"486409";"3465";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-18 00:00:00.000000";"472417";;"LINE";;;;;
185
;"127092";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"18";"17.1";"486409";"2495";"485372";;;"2014-02-18 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"BATTERY";;;;;
186
;"127093";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"6";"8.11";"486409";"1120";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CENTRO TRADICIONAL";
187
;"127099";"472438";"0";"2004-09-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"13";"15.3";"486409";"1250";"485372";;;"2014-03-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-30 00:00:00.000000";"472423";;"BATTERY";;;;;
188
;"127102";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"26";"22.8";"486419";"4102";"485372";;;"2011-12-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;;
189
;"127103";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"31";"39.6";"486419";"4102";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472423";;"LINE";;;;;
190
;"127104";"472438";"0";"2004-09-15 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"8";"9.9";"486409";"2570";"485372";;;"2016-09-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-15 00:00:00.000000";"472423";;"BATTERY";;;"24 Horas";"Parte: OBRA | Titular: ZONA SAN BLAS";
191
;"127105";"472438";"0";"2004-09-15 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"14";"15.9";"486409";"1890";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-15 00:00:00.000000";"472423";;"BATTERY";;;"24 Horas";"Titular: ZONA ENSANCHE-DIPUTACIÓN";
192
;"127106";"472438";"0";"2004-06-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"26";"5";"9.8";"486409";"3125";"485372";;;"2012-05-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-06-30 00:00:00.000000";"472423";;"LINE";;;;;
193
;"127108";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"24";"9";"10.1";"486409";"1635";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"BATTERY";;;"24 Horas";"Titular: ZONA CENTRO-MONTAÑETA";
194
;"127109";"472438";"0";"2005-11-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"18";"19.6";"486409";"4770";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-29 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA ENSANCHE-MAISONAVE";
195
;"127110";"472438";"0";"2004-09-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"8";"14";"486409";"4770";"485372";;;"2017-11-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-20 00:00:00.000000";"472423";;"BATTERY";;;"24 Horas";"Parte: H=623 | Titular: ZONA CENTRO-ENSANCHE";
196
;"127111";"472438";"0";"2004-09-16 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"10";"11.1";"486406";"3010";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-16 00:00:00.000000";"472423";;"BATTERY";;;;;
197
;"127112";"472438";"0";"2004-09-17 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"7";"12.7";"486409";"3040";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-17 00:00:00.000000";"472423";;"BATTERY";;;"24 Horas";"Titular: ZONA ENSANCHE-DIPUTACION";
198
;"127113";"472438";"0";"2004-09-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"39";"12";"10.1";"486409";"470";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-14 00:00:00.000000";"472423";;"BATTERY";"MUNICIPAL";;;;
199
;"127116";"472438";"0";"2002-09-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"4.2";"486409";"1955";"485372";;;"2022-09-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-09-16 00:00:00.000000";"472416";;"LINE";;;;;
200
;"127119";"472438";"0";"2006-02-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"6.22";"486409";"180";"485372";;;"2026-02-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-19 00:00:00.000000";"472417";;"LINE";;;;;
201
;"127128";"472438";"0";"2003-09-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.1";"486419";"661";"485372";;;"2023-09-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-06 00:00:00.000000";"472417";;"LINE";;;;;
202
;"127131";"472438";"0";"2002-09-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"13.96";"486409";"2790";"485372";;;"2022-09-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-09-17 00:00:00.000000";"472416";"V.2684";"LINE";;;;;
203
;"127132";"472438";"0";"2002-09-17 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"10.92";"486409";"2790";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-09-17 00:00:00.000000";"472416";;"LINE";;;;;
204
;"127134";"472438";"0";"2007-03-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"3";"486409";"1070";"485372";;;"2027-03-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-03-15 00:00:00.000000";"472417";"V.2684";"LINE";;;;;
205
;"127142";"472438";"0";"2004-07-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"95";"0";"3";"486406";"450";"485372";;;"2024-07-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-15 00:00:00.000000";"472417";;"LINE";;;;;
206
;"127206";"472438";"0";"2006-02-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"6.78";"486409";"4612";"485372";;;"2026-02-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-12 00:00:00.000000";"472417";;"LINE";;;;;
207
;"125271";"472438";"0";"2007-03-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2 AC";"0";"11.3";"486409";"2038";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-03-23 00:00:00.000000";"472416";"V. 3381";"LINE";;;;;
208
;"127221";"472438";"0";"2003-09-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"3.31";"486409";"3355";"485372";;;"2023-09-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-28 00:00:00.000000";"472416";"V.2565";"LINE";;;;;
209
;"127236";"472438";"0";"2006-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3";"486409";"2285";"485372";;;"2026-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-09 00:00:00.000000";"472416";"V.787";"LINE";;;;;
210
;"127237";"472438";"0";"2006-02-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.1";"486409";"2285";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-09 00:00:00.000000";"472416";;"LINE";;;;;
211
;"125285";"472438";"0";"2004-11-18 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"4";"486409";"6030";"485372";;;"2024-11-18 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-18 00:00:00.000000";"472417";;"LINE";;;;;
212
;"127273";"472438";"0";"2004-02-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"15";"0";"3";"486409";"2460";"485372";;;"2024-02-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-02 00:00:00.000000";"472417";;"LINE";;;;;
213
;"127288";"472438";"0";"2004-03-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"54";"0";"5.86";"486409";"2960";"485372";;;"2024-03-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-10 00:00:00.000000";"472417";;"LINE";;;;;
214
;"127295";"472438";"0";"2006-02-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"2.86";"486409";"4945";"485372";;;"2026-02-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-26 00:00:00.000000";"472417";;"LINE";;;;;
215
;"127296";"472438";"0";"2003-09-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"2.9";"486419";"661";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-05 00:00:00.000000";"472417";;"LINE";;;;;
216
;"127297";"472438";"0";"2006-03-06 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"6.15";"486415";"1627";"485372";;;"2026-03-06 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-06 00:00:00.000000";"472417";;"LINE";;;;;
217
;"127298";"472438";"0";"2006-03-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.14";"486409";"3050";"485372";;;"2026-03-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-02 00:00:00.000000";"472417";;"LINE";;;;;
218
;"127300";"472438";"0";"2003-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"4.64";"486409";"4855";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-10 00:00:00.000000";"472417";;"LINE";;;;;
219
;"127301";"472438";"0";"2003-09-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"3.7";"486409";"3355";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-28 00:00:00.000000";"472417";;"LINE";;;;;
220
;"127302";"472438";"0";"2006-02-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.5";"486419";"730";"485372";;;"2010-02-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-23 00:00:00.000000";"472416";;"LINE";;;;;
221
;"127303";"472438";"0";"2006-03-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"34";"0";"4.84";"486406";"2085";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-08 00:00:00.000000";"472416";;"LINE";;;;;
222
;"125314";"472438";"0";"2007-09-24 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20";"0";"5.4";"486409";"6030";"485372";;;"2027-09-24 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-24 00:00:00.000000";"472417";;"LINE";;;;;
223
;"127315";"472438";"0";"2003-10-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"40";"0";"5.09";"486409";"5930";"485372";;;"2023-10-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-10-16 00:00:00.000000";"472417";;"LINE";;;;;
224
;"125314";"472438";"0";"2003-05-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"5.4";"486409";"6030";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-25 00:00:00.000000";"472417";;"LINE";;;;;
225
;"125315";"472438";"0";"2007-10-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"40";"0";"5.48";"486409";"3235";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-11 00:00:00.000000";"472416";"V.0418";"LINE";;;;;
226
;"125316";"472438";"0";"2007-10-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"38";"0";"5.07";"486409";"3235";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-11 00:00:00.000000";"472416";"V.0417";"LINE";;;;;
227
;"127332";"472438";"0";"2004-03-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"45";"0";"3";"486409";"2960";"485372";;;"2024-03-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-10 00:00:00.000000";"472417";;"LINE";;;;;
228
;"127336";"472438";"0";"2004-03-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3";"486409";"2960";"485372";;;"2024-03-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-10 00:00:00.000000";"472417";;"LINE";;;;;
229
;"125317";"472438";"0";"2007-10-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"81";"0";"4.4";"486409";"1925";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-07 00:00:00.000000";"472416";"V.2979";"LINE";;;;;
230
;"125322";"472438";"0";"2007-09-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"51";"0";"4.25";"486409";"6030";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-24 00:00:00.000000";"472417";;"LINE";;;;;
231
;"127355";"472438";"0";"2004-03-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3";"486409";"2960";"485372";;;"2024-03-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-10 00:00:00.000000";"472417";;"LINE";;;;;
232
;"125324";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"64";"32";"87.3";"486409";"1825";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472423";"CORDON";"LINE";;;;;
233
;"125325";"472438";"0";"2007-09-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"29";"75.9";"486409";"527";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-25 00:00:00.000000";"472423";;"LINE";;;;"Titular: ZONA FLORIDA | Observaciones: CORDÓN";
234
;"125326";"472438";"0";"2007-09-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"37";"91";"486409";"527";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-25 00:00:00.000000";"472423";;"LINE";;;;"Titular: ZONA FLORIDA | Observaciones: CORDÓN";
235
;"125327";"472438";"0";"2007-10-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"3.75";"486409";"6025";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-07 00:00:00.000000";"472416";"V.3101";"LINE";;;;;
236
;"125328";"472438";"0";"2004-11-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.01";"486409";"6025";"485372";;;"2024-11-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-07 00:00:00.000000";"472417";;"LINE";;;;;
237
;"125333";"472438";"0";"2007-10-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.01";"486409";"4550";"485372";;;"2027-10-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-20 00:00:00.000000";"472417";;"LINE";;;;;
238
;"125334";"472438";"0";"2007-10-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.01";"486409";"4495";"485372";;;"2027-10-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-20 00:00:00.000000";"472417";;"LINE";;;;;
239
;"125335";"472438";"0";"2007-10-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.02";"486409";"5985";"485372";;;"2027-10-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-20 00:00:00.000000";"472417";;"LINE";;;;;
240
;"127415";"472438";"0";"2004-07-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"26";"0";"3.99";"486409";"5690";"485372";;;"2024-07-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-19 00:00:00.000000";"472417";;"LINE";;;;;
241
;"125336";"472438";"0";"2004-11-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"5.02";"486409";"5015";"485372";;;"2024-11-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-12 00:00:00.000000";"472417";;"LINE";;;;;
242
;"127433";"472438";"0";"2004-07-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"22";"0";"3";"486409";"3820";"485372";;;"2024-07-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-22 00:00:00.000000";"472417";;"LINE";;;;;
243
;"125337";"472438";"0";"2004-11-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"15";"0";"3";"486409";"3640";"485372";;;"2024-11-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-12 00:00:00.000000";"472417";;"LINE";;;;;
244
;"127447";"472438";"0";"2004-07-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"53";"0";"3.01";"486409";"3820";"485372";;;"2024-07-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-20 00:00:00.000000";"472417";;"LINE";;;;;
245
;"125338";"472438";"0";"2007-10-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.01";"486409";"3175";"485372";;;"2027-10-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-10 00:00:00.000000";"472417";;"LINE";;;;;
246
;"125339";"472438";"0";"2004-11-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.01";"486409";"1060";"485372";;;"2024-11-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-11 00:00:00.000000";"472417";;"LINE";;;;;
247
;"125340";"472438";"0";"2004-11-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"3.87";"486409";"1060";"485372";;;"2024-11-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-09 00:00:00.000000";"472417";;"LINE";;;;;
248
;"127470";"472438";"0";"2007-05-15 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"9.1";"486419";"2650";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-15 00:00:00.000000";"472416";"V.2254";"LINE";;;;;
249
;"127476";"472438";"0";"2006-01-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"26";"0";"3.12";"486409";"3400";"485372";;;"2026-01-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-01-29 00:00:00.000000";"472417";;"LINE";;;;;
250
;"125341";"472438";"0";"2007-09-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"4.6";"486406";"2080";"485372";;;"2027-09-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-26 00:00:00.000000";"472417";;"LINE";;;;;
251
;"125342";"472438";"0";"2007-09-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"4";"486409";"1925";"485372";;;"2027-09-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-20 00:00:00.000000";"472417";;"LINE";;;;;
252
;"127483";"472438";"0";"2004-03-24 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.38";"486419";"465";"485372";;;"2024-03-24 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-24 00:00:00.000000";"472417";;"LINE";;;;;
253
;"127500";"472438";"0";"2005-02-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"2.86";"486409";"2301";"485372";;;"2025-02-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-02-25 00:00:00.000000";"472417";;"LINE";;;;;
254
;"127501";"472438";"0";"2006-05-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.59";"486406";"29";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-23 00:00:00.000000";"472417";;"LINE";;;;;
255
;"125346";"472438";"0";"2005-05-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.01";"486409";"2595";"485372";;;"2025-05-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-19 00:00:00.000000";"472417";;"LINE";;;;;
256
;"127542";"472438";"0";"2002-10-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"25";"0";"5";"486409";"1940";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-22 00:00:00.000000";"472416";"V 2461";"LINE";;;;;
257
;"127543";"472438";"0";"2002-10-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"43";"0";"5.5";"486409";"1940";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-22 00:00:00.000000";"472416";"V 1038";"LINE";;;;;
258
;"127544";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"7.36";"486409";"525";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 2324";"LINE";;;;;
259
;"127545";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.03";"486409";"525";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V2489";"LINE";;;;;
260
;"127546";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"5.66";"486409";"525";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 2130";"LINE";;;;;
261
;"127547";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"0";"3.84";"486406";"4592";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"VADO PERMANENTE";"LINE";;;;;
262
;"127548";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"0";"8";"486406";"4592";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472417";;"LINE";;;;;
263
;"127549";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.6";"486419";"2162";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 2211";"LINE";;;;;
264
;"127550";"472438";"0";"2007-10-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"2.9";"486409";"4289";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-02 00:00:00.000000";"472417";;"LINE";;;;;
265
;"127551";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.47";"486409";"215";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 1857";"LINE";;;;;
266
;"127552";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.04";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 2426";"LINE";;;;;
267
;"127553";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"4.14";"486409";"1940";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 730";"LINE";;;;;
268
;"127554";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"5.08";"486409";"215";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 1502";"LINE";;;;;
269
;"125356";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"41";"0";"4.74";"486409";"1825";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";"V.3267";"LINE";;;;;
270
;"127555";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.3";"486409";"3963";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472417";;"LINE";;;;;
271
;"127556";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.15";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"VA 296";"LINE";;;;;
272
;"127557";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.67";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"VA 295";"LINE";;;;;
273
;"127558";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.15";"486409";"215";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 1622";"LINE";;;;;
274
;"127559";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"6.69";"486409";"215";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 2604";"LINE";;;;;
275
;"127560";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"3.96";"486419";"2162";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 1809";"LINE";;;;;
276
;"127561";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.37";"486419";"2162";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"VADO PERMANENTE";"LINE";;;;;
277
;"127562";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.82";"486419";"2162";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 1652";"LINE";;;;;
278
;"127563";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"5.34";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 494";"LINE";;;;;
279
;"127564";"472438";"0";"2002-10-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"5.37";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-24 00:00:00.000000";"472416";"V 262";"LINE";;;;;
280
;"127565";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"6";"486406";"4545";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2661";"LINE";;;;;
281
;"127566";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"136";"0";"4.51";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1543";"LINE";;;;;
282
;"127567";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"130";"0";"4";"486409";"2340";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2226";"LINE";;;;;
283
;"127568";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"4.11";"486409";"2765";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
284
;"127568";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.11";"486409";"2765";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472417";;"LINE";;;;;
285
;"127569";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"156";"0";"5.76";"486409";"3805";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2463";"LINE";;;;;
286
;"127570";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"4.89";"486409";"560";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2462";"LINE";;;;;
287
;"127571";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"136";"0";"5.55";"486409";"3805";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1573";"LINE";;;;;
288
;"127572";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"123";"0";"5";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1272";"LINE";;;;;
289
;"127573";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.05";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 588";"LINE";;;;;
290
;"127574";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"118";"0";"4.84";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 198";"LINE";;;;;
291
;"127575";"472438";"0";"2003-03-18 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"4.07";"486409";"2355";"485372";;;"2023-03-18 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-18 00:00:00.000000";"472416";"V 2365";"LINE";;;;;
292
;"127575";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.07";"486409";"2355";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2365";"LINE";;;;;
293
;"127576";"472438";"0";"2003-03-18 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"7.98";"486409";"2355";"485372";;;"2023-03-18 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-18 00:00:00.000000";"472416";"V 228";"LINE";;;;;
294
;"127576";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"7.98";"486409";"2355";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 228";"LINE";;;;;
295
;"127577";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.97";"486409";"2355";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2320";"LINE";;;;;
296
;"127578";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"69";"0";"5.5";"486409";"3805";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 203";"LINE";;;;;
297
;"127579";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"86";"0";"5.1";"486409";"3805";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 363VADO TEMPORAL";"LINE";;;;;
298
;"125363";"472438";"0";"2007-09-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"3.89";"486409";"3695";"485372";;;"2027-09-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-17 00:00:00.000000";"472417";;"LINE";;;;;
299
;"127580";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.95";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 270";"LINE";;;;;
300
;"127581";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"3.14";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2210";"LINE";;;;;
301
;"127582";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3";"486409";"10";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472417";;"LINE";;;;;
302
;"127583";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"3.01";"486409";"10";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472417";;"LINE";;;;;
303
;"127584";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"4.66";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 112";"LINE";;;;;
304
;"127585";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"10.54";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1112";"LINE";;;;;
305
;"127586";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"12.42";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1740";"LINE";;;;;
306
;"127587";"472438";"0";"2006-02-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"17";"0";"4.47";"486409";"10";"485372";;;"2026-02-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-02 00:00:00.000000";"472416";"V 1888";"LINE";;;;;
307
;"127587";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.47";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1888";"LINE";;;;;
308
;"127588";"472438";"0";"2006-02-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"17";"0";"4.52";"486409";"10";"485372";;;"2026-02-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-02-02 00:00:00.000000";"472416";"V 1889";"LINE";;;;;
309
;"127588";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.52";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1889";"LINE";;;;;
310
;"127589";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.59";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1895";"LINE";;;;;
311
;"127590";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.65";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1894";"LINE";;;;;
312
;"127591";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"6.04";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1113";"LINE";;;;;
313
;"127593";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"5";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1262";"LINE";;;;;
314
;"127594";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.06";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1261";"LINE";;;;;
315
;"127595";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3E";"0";"4.44";"486406";"4592";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1855";"LINE";;;;;
316
;"127596";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3B";"0";"4.22";"486406";"4592";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2682";"LINE";;;;;
317
;"127597";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"4.2";"486409";"4612";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1869";"LINE";;;;;
318
;"127598";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"5.09";"486409";"522";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1036";"LINE";;;;;
319
;"127599";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.18";"486409";"522";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1671";"LINE";;;;;
320
;"127600";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"3.98";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2058";"LINE";;;;;
321
;"127601";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"4.28";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2139";"LINE";;;;;
322
;"127602";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"4.62";"486409";"3080";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1193";"LINE";;;;;
323
;"127603";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"4.93";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2021";"LINE";;;;;
324
;"127604";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3.62";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2020";"LINE";;;;;
325
;"127605";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"4.83";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1224";"LINE";;;;;
326
;"127606";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"14";"0";"6.1";"486409";"4184";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1203";"LINE";;;;;
327
;"127607";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"31";"0";"4.67";"486409";"2865";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2252";"LINE";;;;;
328
;"127608";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"36";"0";"4.23";"486409";"2865";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1225";"LINE";;;;;
329
;"125369";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"23";"0";"3.01";"486409";"1825";"485372";;;"2025-04-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472416";"V.52";"LINE";;;;;
330
;"127609";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"0";"4.47";"486409";"522";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 192";"LINE";;;;;
331
;"127610";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"57";"0";"4.82";"486409";"2865";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 110";"LINE";;;;;
332
;"127611";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"4.03";"486409";"522";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1337";"LINE";;;;;
333
;"127612";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.34";"486409";"522";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2361";"LINE";;;;;
334
;"127614";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"4.95";"486409";"3034";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2442";"LINE";;;;;
335
;"127615";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"2";"12.8";"486409";"3080";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472418";;"LINE";;;;"Titular: ZONA CAROLINAS";
336
;"127616";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"6";"486409";"3080";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 75";"LINE";;;;;
337
;"127617";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"5";"486409";"3080";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"VA 162";"LINE";;;;;
338
;"127618";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"5.11";"486409";"3080";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1653";"LINE";;;;;
339
;"127619";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"0";"5.01";"486409";"3080";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 1880";"LINE";;;;;
340
;"127621";"472438";"0";"2003-08-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.7";"486409";"3963";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-25 00:00:00.000000";"472417";;"LINE";;;;;
341
;"127622";"472438";"0";"2003-09-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"8.4";"486406";"4592";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-09-25 00:00:00.000000";"472417";;"LINE";;;;;
342
;"127623";"472438";"0";"2007-10-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"5.05";"486409";"4289";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-02 00:00:00.000000";"472416";"V.1936";"LINE";;;;;
343
;"127624";"472438";"0";"2003-03-26 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"2.8";"486406";"4545";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-26 00:00:00.000000";"472417";;"LINE";;;;;
344
;"127629";"472438";"0";"2005-07-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"9.2";"486409";"3963";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-07-27 00:00:00.000000";"472417";;"LINE";;;;;
345
;"127636";"472438";"0";"2002-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"5.1";"486409";"10";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-25 00:00:00.000000";"472416";"V 2011";"LINE";;;;;
346
;"125370";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"21";"0";"3.01";"486409";"1825";"485372";;;"2027-09-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";;"LINE";;;;;
347
;"127647";"472438";"0";"2004-08-23 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"84";"0";"4";"486409";"3380";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-08-23 00:00:00.000000";"472417";;"LINE";;;;;
348
;"127648";"472438";"0";"2006-03-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"5.36";"486409";"4630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-20 00:00:00.000000";"472416";"Nº 2905";"LINE";;;;;
349
;"127651";"472438";"0";"2004-12-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3.61";"486409";"4380";"485372";;;"2024-12-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-12-12 00:00:00.000000";"472417";;"LINE";;;;;
350
;"125370";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"3.01";"486409";"1825";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472416";;"LINE";;;;;
351
;"127664";"472438";"0";"2006-03-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"14";"0";"6.49";"486409";"1888";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-20 00:00:00.000000";"472416";"Nº 2690";"LINE";;;;;
352
;"127665";"472438";"0";"2006-03-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"188";"0";"5.34";"486406";"1819";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-20 00:00:00.000000";"472416";"Nº 3330";"LINE";;;;;
353
;"127666";"472438";"0";"2004-03-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"14";"0";"2.64";"486409";"5965";"485372";;;"2024-03-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-28 00:00:00.000000";"472417";;"LINE";;;;;
354
;"127667";"472438";"0";"2004-03-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.94";"486409";"5965";"485372";;;"2024-03-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-28 00:00:00.000000";"472417";;"LINE";;;;;
355
;"127668";"472438";"0";"2004-03-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"14";"0";"5.89";"486409";"4345";"485372";;;"2024-03-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-21 00:00:00.000000";"472417";;"LINE";;;;;
356
;"127673";"472438";"0";"2004-03-24 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.02";"486409";"1090";"485372";;;"2024-03-24 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-24 00:00:00.000000";"472417";;"LINE";;;;;
357
;"127674";"472438";"0";"2004-03-24 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.01";"486409";"1090";"485372";;;"2024-03-24 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-24 00:00:00.000000";"472417";;"LINE";;;;;
358
;"125371";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3.62";"486409";"1825";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";;"LINE";;;;;
359
;"127686";"472438";"0";"2004-03-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3.05";"486409";"2715";"485372";;;"2024-03-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-25 00:00:00.000000";"472417";;"LINE";;;;;
360
;"127695";"472438";"0";"2006-03-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"6.85";"486409";"2855";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-20 00:00:00.000000";"472416";"Nº 3077";"LINE";;;;;
361
;"127696";"472438";"0";"2004-03-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"14";"0";"7.4";"486409";"4345";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-21 00:00:00.000000";"472417";;"LINE";;;;;
362
;"127697";"472438";"0";"2004-04-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"3.05";"486409";"1855";"485372";;;"2024-04-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-04-29 00:00:00.000000";"472417";;"LINE";;;;;
363
;"127714";"472438";"0";"2003-06-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"3.9";"486409";"3120";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-06-10 00:00:00.000000";"472417";;"LINE";;;;;
364
;"127715";"472438";"0";"2003-06-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3.9";"486409";"3120";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-06-10 00:00:00.000000";"472417";;"LINE";;;;;
365
;"127716";"472438";"0";"2004-04-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"10.1";"486409";"2172";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-04-27 00:00:00.000000";"472417";;"LINE";;;;;
366
;"127733";"472438";"0";"2004-08-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.49";"486409";"4183";"485372";;;"2024-08-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-08-26 00:00:00.000000";"472417";;"LINE";;;;;
367
;"127752";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"3";"18.4";"486419";"1790";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472418";;"LINE";;;;"Titular: ZONA CASCO ANTIGUO";
368
;"127753";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"3.76";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 924";"LINE";;;;;
369
;"127754";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 2620";"LINE";;;;;
370
;"127755";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"2.99";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 573";"LINE";;;;;
371
;"127756";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"3.97";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 281";"LINE";;;;;
372
;"127757";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"3";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 803";"LINE";;;;;
373
;"127758";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"3.71";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 1969";"LINE";;;;;
374
;"127759";"472438";"0";"2002-10-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"3.04";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-31 00:00:00.000000";"472416";"V 722";"LINE";;;;;
375
;"127760";"472438";"0";"2002-11-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"4";"486406";"2235";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-11-05 00:00:00.000000";"472416";"VA 305";"LINE";;;;;
376
;"127761";"472438";"0";"2002-11-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13B";"0";"6.25";"486406";"2235";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-11-05 00:00:00.000000";"472416";"VA 100";"LINE";;;;;
377
;"127762";"472438";"0";"2002-11-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13B";"0";"4.98";"486406";"2235";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-11-05 00:00:00.000000";"472416";"V 817";"LINE";;;;;
378
;"127763";"472438";"0";"2002-11-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"5.06";"486406";"2235";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-11-05 00:00:00.000000";"472416";"VA 101";"LINE";;;;;
379
;"127768";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"56";"0";"3";"486409";"6150";"485372";;;"2023-08-07 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";"V 2396";"LINE";;;;;
380
;"127769";"472438";"0";"2003-08-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"56";"0";"3";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-07 00:00:00.000000";"472416";;"LINE";;;;;
381
;"127780";"472438";"0";"2006-05-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"33";"0";"5.49";"486409";"6150";"485372";;;"2026-05-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-29 00:00:00.000000";"472416";"V 394";"LINE";;;;;
382
;"127781";"472438";"0";"2006-05-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35B";"0";"5.6";"486409";"6150";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-29 00:00:00.000000";"472416";;"LINE";;;;;
383
;"127786";"472438";"0";"2006-05-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"3.04";"486409";"6045";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-29 00:00:00.000000";"472416";;"LINE";;;;;
384
;"127787";"472438";"0";"2006-05-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35B";"0";"3.73";"486409";"6150";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-29 00:00:00.000000";"472416";"V 2812";"LINE";;;;;
385
;"127803";"472438";"0";"2004-07-15 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.7";"486409";"1410";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-15 00:00:00.000000";"472417";;"LINE";;;;;
386
;"127805";"472438";"0";"2005-11-17 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"5";"7.4";"486419";"4795";"485372";;;"2015-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-11-17 00:00:00.000000";"472423";;"LINE";;;;;
387
;"127808";"472438";"0";"2004-06-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"9";"14.1";"486420";"4000";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-06-30 00:00:00.000000";"472423";;"LINE";;;;;
388
;"127851";"472438";"0";"2005-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"10";"11.4";"486415";"5865";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-10-25 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA EL PLA";
389
;"127938";"472438";"0";"2003-03-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"55";"0";"10.89";"486409";"5385";"485372";;;"2023-03-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-15 00:00:00.000000";"472418";;"LINE";;;;;
390
;"125647";"472438";"0";"2004-09-17 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"4.4";"486419";"4195";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-09-17 00:00:00.000000";"472416";;"LINE";;;;;
391
;"127962";"472438";"0";"2003-03-15 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"75";"0";"5";"486409";"3440";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-15 00:00:00.000000";"472417";;"LINE";;;;;
392
;"127988";"472438";"0";"2004-02-04 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"71";"0";"3.78";"486409";"2980";"485372";;;"2024-02-04 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-04 00:00:00.000000";"472417";;"LINE";;;;;
393
;"127989";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"3";"486409";"4115";"485372";;;"2023-03-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472417";;"LINE";;;;;
394
;"127991";"472438";"0";"2003-05-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"39";"0";"3";"486409";"4700";"485372";;;"2023-05-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-05 00:00:00.000000";"472417";;"LINE";;;;;
395
;"127995";"472438";"0";"2005-03-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.62";"486409";"710";"485372";;;"2025-03-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-22 00:00:00.000000";"472417";;"LINE";;;;;
396
;"127996";"472438";"0";"2005-03-22 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"5.16";"486409";"710";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-22 00:00:00.000000";"472417";;"LINE";;;;;
397
;"127997";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"17";"0";"3";"486409";"4830";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
398
;"127998";"472438";"0";"2004-01-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"11";"0";"10.8";"486409";"2785";"485372";;;"2024-01-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-26 00:00:00.000000";"472418";;"LINE";;;;;
399
;"128001";"472438";"0";"2004-02-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20";"0";"3";"486409";"2415";"485372";;;"2024-02-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-11 00:00:00.000000";"472417";;"LINE";;;;;
400
;"128003";"472438";"0";"2004-02-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"129";"0";"3";"486409";"5590";"485372";;;"2024-02-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-22 00:00:00.000000";"472417";;"LINE";;;;;
401
;"128005";"472438";"0";"2004-02-29 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"28";"0";"3";"486409";"521";"485372";;;"2024-02-29 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-29 00:00:00.000000";"472417";;"LINE";;;;;
402
;"125434";"472438";"0";"2007-10-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"59";"0";"8.43";"486409";"1925";"485372";;;"2027-10-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-20 00:00:00.000000";"472417";;"LINE";;;;;
403
;"128008";"472438";"0";"2004-02-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3";"486409";"4700";"485372";;;"2024-02-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-08 00:00:00.000000";"472417";;"LINE";;;;;
404
;"128017";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"3.01";"486409";"5365";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
405
;"128018";"472438";"0";"2006-05-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"4.24";"486409";"5385";"485372";;;"2026-05-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-17 00:00:00.000000";"472417";;"LINE";;;;;
406
;"128019";"472438";"0";"2004-02-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"48C";"0";"3.01";"486409";"2335";"485372";;;"2024-02-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-11 00:00:00.000000";"472417";;"LINE";;;;;
407
;"128020";"472438";"0";"2003-03-24 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"21";"0";"3.7";"486409";"2785";"485372";;;"2023-03-24 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-24 00:00:00.000000";"472417";;"LINE";;;;;
408
;"128022";"472438";"0";"2003-03-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"51";"0";"3";"486409";"5385";"485372";;;"2023-03-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-15 00:00:00.000000";"472417";;"LINE";;;;;
409
;"128023";"472438";"0";"2004-01-28 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"3";"486409";"3055";"485372";;;"2024-01-28 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-28 00:00:00.000000";"472417";;"LINE";;;;;
410
;"128024";"472438";"0";"2003-03-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"49";"0";"2.99";"486409";"5385";"485372";;;"2023-03-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-15 00:00:00.000000";"472417";;"LINE";;;;;
411
;"128025";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"39";"0";"3.01";"486409";"5365";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
412
;"128026";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"43";"0";"3.01";"486409";"5365";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
413
;"128027";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"43";"0";"3.01";"486409";"5365";"485372";;;"2023-03-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472417";;"LINE";;;;;
414
;"128029";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"38";"0";"3.01";"486409";"5365";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
415
;"128031";"472438";"0";"2004-01-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"3";"486409";"2785";"485372";;;"2024-01-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-26 00:00:00.000000";"472417";;"LINE";;;;;
416
;"128032";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"50";"0";"4.7";"486409";"5365";"485372";;;"2023-03-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472417";;"LINE";;;;;
417
;"128036";"472438";"0";"2004-01-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"17";"0";"4.23";"486409";"2735";"485372";;;"2024-01-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-23 00:00:00.000000";"472417";;"LINE";;;;;
418
;"128037";"472438";"0";"2004-01-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3";"486409";"2755";"485372";;;"2024-01-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-26 00:00:00.000000";"472417";;"LINE";;;;;
419
;"128038";"472438";"0";"2004-01-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.01";"486409";"2755";"485372";;;"2024-01-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-26 00:00:00.000000";"472417";;"LINE";;;;;
420
;"128039";"472438";"0";"2004-01-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"3.7";"486409";"2735";"485372";;;"2024-01-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-26 00:00:00.000000";"472417";;"LINE";;;;;
421
;"128040";"472438";"0";"2003-03-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"7.71";"486409";"1265";"485372";;;"2023-03-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-11 00:00:00.000000";"472417";;"LINE";;;;;
422
;"128042";"472438";"0";"2005-04-18 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"9";"0";"5.24";"486409";"3850";"485372";;;"2025-04-18 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-18 00:00:00.000000";"472417";;"LINE";;;;;
423
;"128043";"472438";"0";"2005-03-31 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"14";"0";"3";"486409";"533";"485372";;;"2025-03-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-31 00:00:00.000000";"472417";;"LINE";;;;;
424
;"128044";"472438";"0";"2005-03-31 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"3";"486409";"533";"485372";;;"2025-03-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-31 00:00:00.000000";"472417";;"LINE";;;;;
425
;"128045";"472438";"0";"2005-03-31 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"3";"486409";"533";"485372";;;"2025-03-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-31 00:00:00.000000";"472417";;"LINE";;;;;
426
;"128046";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"3";"486409";"2555";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
427
;"128047";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"17.24";"486409";"2555";"485372";;;"2023-03-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472419";;"LINE";;;;;
428
;"128048";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3";"486409";"4196";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
429
;"128049";"472438";"0";"2005-03-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"37";"0";"3.5";"486409";"4375";"485372";;;"2025-03-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-16 00:00:00.000000";"472417";;"LINE";;;;;
430
;"128050";"472438";"0";"2005-03-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"3";"486409";"4655";"485372";;;"2025-03-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-16 00:00:00.000000";"472417";;"LINE";;;;;
431
;"128051";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"13";"0";"3.01";"486409";"5365";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
432
;"128053";"472438";"0";"2005-03-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20";"0";"20.37";"486409";"1020";"485372";;;"2025-03-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-16 00:00:00.000000";"472419";;"LINE";;;;;
433
;"125454";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"16";"0";"3.03";"486409";"460";"485372";;;"2027-09-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472417";;"LINE";;;;;
434
;"128056";"472438";"0";"2005-04-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"31";"0";"2.99";"486409";"870";"485372";;;"2025-04-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-10 00:00:00.000000";"472417";;"LINE";;;;;
435
;"128064";"472438";"0";"2005-03-31 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"28";"0";"6.25";"486409";"533";"485372";;;"2025-03-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-31 00:00:00.000000";"472417";;"LINE";;;;;
436
;"128066";"472438";"0";"2004-01-21 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"2.99";"486415";"5865";"485372";;;"2024-01-21 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-21 00:00:00.000000";"472417";;"LINE";;;;;
437
;"125459";"472438";"0";"2007-10-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"4.92";"486409";"840";"485372";;;"2027-10-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-09 00:00:00.000000";"472416";"V.1366";"LINE";;;;;
438
;"128076";"472438";"0";"2005-04-14 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"36";"0";"7.17";"486409";"2440";"485372";;;"2025-04-14 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-14 00:00:00.000000";"472417";;"LINE";;;;;
439
;"128078";"472438";"0";"2005-04-14 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"11";"0";"3.56";"486409";"3360";"485372";;;"2025-04-14 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-14 00:00:00.000000";"472417";;"LINE";;;;;
440
;"128079";"472438";"0";"2005-04-14 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.97";"486409";"5045";"485372";;;"2025-04-14 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-14 00:00:00.000000";"472417";;"LINE";;;;;
441
;"128084";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"4.33";"486409";"2555";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472416";"V.1704";"LINE";;;;;
442
;"128085";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"30";"0";"4.54";"486409";"4115";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
443
;"128085";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"30";"0";"4.54";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472417";;"LINE";;;;;
444
;"128086";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"4.68";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472416";"V.2810";"LINE";;;;;
445
;"128087";"472438";"0";"2003-03-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"24";"0";"4.01";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-21 00:00:00.000000";"472416";"V.2809";"LINE";;;;;
446
;"128089";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"32";"0";"3.13";"486409";"4115";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
447
;"128090";"472438";"0";"2004-01-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"59";"0";"3.74";"486409";"2335";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-27 00:00:00.000000";"472417";;"LINE";;;;;
448
;"128091";"472438";"0";"2004-01-27 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"6.05";"486409";"3145";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-27 00:00:00.000000";"472417";;"LINE";;;;;
449
;"128092";"472438";"0";"2004-01-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3";"486409";"2415";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-21 00:00:00.000000";"472417";;"LINE";;;;;
450
;"128094";"472438";"0";"2005-04-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"56B";"0";"11";"486409";"2335";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-07 00:00:00.000000";"472417";"BASURA";"LINE";;;;;
451
;"128095";"472438";"0";"2005-03-31 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"0";"6.8";"486409";"533";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-31 00:00:00.000000";"472417";;"LINE";;;;;
452
;"128096";"472438";"0";"2006-05-06 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"37";"0";"6.1";"486409";"4375";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-06 00:00:00.000000";"472417";;"LINE";;;;;
453
;"128098";"472438";"0";"2006-08-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"5";"486409";"3055";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-08-03 00:00:00.000000";"472417";;"LINE";;;;;
454
;"128103";"472438";"0";"2005-10-26 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"42";"10";"10.3";"486409";"2415";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-10-26 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CAROLINAS-PLA";
455
;"128106";"472438";"0";"2007-07-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"8";"9.8";"486419";"3885";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-07-24 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CAROLINAS";
456
;"128107";"472438";"0";"2007-07-24 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"14";"14.9";"486409";"2735";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-07-24 00:00:00.000000";"472423";;"BATTERY";;;;"Titular: ZONA CAROLINAS";
457
;"125466";"472438";"0";"2007-10-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"16";"0";"3.02";"486409";"3235";"485372";;;"2027-10-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-11 00:00:00.000000";"472416";"V.A.202";"LINE";;;;;
458
;"128121";"472438";"0";"2004-02-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"2.93";"486419";"4075";"485372";;;"2024-02-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-11 00:00:00.000000";"472417";;"LINE";;;;;
459
;"128140";"472438";"0";"2004-03-01 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"3.23";"486409";"2360";"485372";;;"2024-03-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-01 00:00:00.000000";"472417";;"LINE";;;;;
460
;"128146";"472438";"0";"2004-03-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3.24";"486409";"4510";"485372";;;"2024-03-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-08 00:00:00.000000";"472417";;"LINE";;;;;
461
;"128150";"472438";"0";"2004-03-02 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"37";"0";"4.33";"486409";"2150";"485372";;;"2024-03-02 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-02 00:00:00.000000";"472420";"TALLER";"LINE";;;;;
462
;"128163";"472438";"0";"2004-02-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"7";"0";"3.04";"486409";"380";"485372";;;"2024-02-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-22 00:00:00.000000";"472417";;"LINE";;;;;
463
;"128194";"472438";"0";"2005-04-13 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"5.06";"486419";"2380";"485372";;;"2025-04-13 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-13 00:00:00.000000";"472416";"V 227";"LINE";;;;;
464
;"128195";"472438";"0";"2005-04-13 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"5";"486419";"2380";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-13 00:00:00.000000";"472416";;"LINE";;;;;
465
;"128197";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"7.99";"486409";"537";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 260";"LINE";;;;;
466
;"128198";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.99";"486409";"537";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
467
;"128199";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"4.02";"486409";"537";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 2235";"LINE";;;;;
468
;"128200";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.89";"486409";"537";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
469
;"128201";"472438";"0";"2005-04-01 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"2.99";"486409";"2975";"485372";;;"2025-04-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-01 00:00:00.000000";"472417";;"LINE";;;;;
470
;"128202";"472438";"0";"2005-04-01 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.47";"486409";"2975";"485372";;;"2025-04-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-01 00:00:00.000000";"472417";;"LINE";;;;;
471
;"128203";"472438";"0";"2005-04-01 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"27";"0";"3.01";"486409";"2975";"485372";;;"2025-04-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-01 00:00:00.000000";"472417";;"LINE";;;;;
472
;"128228";"472438";"0";"2004-11-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"9";"0";"3";"486409";"2325";"485372";;;"2024-11-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-11-03 00:00:00.000000";"472417";;"LINE";;;;;
473
;"128232";"472438";"0";"2005-04-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"27";"0";"3.01";"486409";"1020";"485372";;;"2025-04-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-05 00:00:00.000000";"472417";;"LINE";;;;;
474
;"128251";"472438";"0";"2005-04-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"43";"0";"2.99";"486409";"3335";"485372";;;"2025-04-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-17 00:00:00.000000";"472417";;"LINE";;;;;
475
;"128252";"472438";"0";"2005-04-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.01";"486409";"2350";"485372";;;"2025-04-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-17 00:00:00.000000";"472417";;"LINE";;;;;
476
;"128254";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"32";"0";"4";"486409";"3335";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 130";"LINE";;;;;
477
;"128255";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"3.03";"486409";"537";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
478
;"128256";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"5.03";"486409";"537";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 2389";"LINE";;;;;
479
;"128257";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.79";"486409";"537";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
480
;"128258";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.64";"486409";"5895";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472417";;"LINE";;;;;
481
;"128263";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3";"486409";"3705";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 500";"LINE";;;;;
482
;"128264";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"4.73";"486409";"3705";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
483
;"128265";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3";"486409";"3705";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472417";;"LINE";;;;;
484
;"128266";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"4.48";"486409";"3705";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 1452";"LINE";;;;;
485
;"128267";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"5.43";"486409";"3705";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
486
;"128268";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"4.36";"486409";"3895";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 1266";"LINE";;;;;
487
;"128269";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"4.04";"486409";"3895";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
488
;"128270";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"4.15";"486409";"3895";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 1454";"LINE";;;;;
489
;"128271";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.73";"486409";"3895";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
490
;"128272";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3";"486409";"3705";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472417";;"LINE";;;;;
491
;"128277";"472438";"0";"2003-08-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"5.9";"486409";"2470";"485372";;;"2023-08-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-11 00:00:00.000000";"472417";;"LINE";;;;;
492
;"128278";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"5.56";"486409";"5895";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 429";"LINE";;;;;
493
;"128279";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"5.38";"486409";"5895";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
494
;"128280";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"6";"486409";"1670";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";"V 388";"LINE";;;;;
495
;"128281";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"9.1";"486409";"1670";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472416";;"LINE";;;;;
496
;"128290";"472438";"0";"2004-02-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"24.53";"486419";"4665";"485372";;;"2024-02-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-05 00:00:00.000000";"472419";;"LINE";;;;;
497
;"128291";"472438";"0";"2004-02-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"21.23";"486419";"4665";"485372";;;"2024-02-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-05 00:00:00.000000";"472419";;"LINE";;;;;
498
;"128295";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"31.37";"486409";"3705";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472419";;"LINE";;;;;
499
;"128296";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"47.55";"486409";"537";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472419";;"LINE";;;;;
500
;"125778";"472438";"0";"2007-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3.02";"486409";"620";"485372";;;"2027-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-05-23 00:00:00.000000";"472417";;"LINE";;;;;
501
;"128297";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"9.38";"486419";"2380";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472421";;"LINE";;;;;
502
;"128298";"472438";"0";"2007-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"8.8";"486419";"2380";"485372";;;"2027-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-11-08 00:00:00.000000";"472421";;"LINE";;;;;
503
;"128311";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"12";"0";"3.59";"486409";"2356";"485372";;;"2025-04-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472417";;"LINE";;;;;
504
;"128312";"472438";"0";"2003-03-19 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"137";"0";"6.8";"486409";"2980";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-19 00:00:00.000000";"472417";;"LINE";;;;;
505
;"128313";"472438";"0";"2003-05-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"2.44";"486409";"4967";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-05-29 00:00:00.000000";"472417";;"LINE";;;;;
506
;"128314";"472438";"0";"2005-03-01 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"61";"0";"6.85";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-03-01 00:00:00.000000";"472417";;"LINE";;;;;
507
;"128315";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"4.81";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2010";"LINE";;;;;
508
;"128316";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"19";"0";"3.01";"486409";"4850";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
509
;"128316";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"0";"3.01";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
510
;"128317";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"3.67";"486409";"4850";"485372";;;"2014-03-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1499";"LINE";;;;;
511
;"128318";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18";"0";"5";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1734";"LINE";;;;;
512
;"128319";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"20";"0";"3.01";"486409";"4850";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
513
;"128319";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"20";"0";"3.01";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
514
;"128320";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"23";"0";"3.42";"486409";"4850";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
515
;"128320";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3.42";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
516
;"128321";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"3.56";"486409";"4850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 166";"LINE";;;;;
517
;"128322";"472438";"0";"2004-02-15 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"28";"0";"3";"486409";"630";"485372";;;"2024-02-15 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-15 00:00:00.000000";"472417";;"LINE";;;;;
518
;"128322";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"0";"3";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
519
;"128323";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"26";"0";"4.23";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1068";"LINE";;;;;
520
;"128324";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"97";"0";"4.75";"486409";"2915";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2431";"LINE";;;;;
521
;"128325";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.46";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 854";"LINE";;;;;
522
;"128326";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"120";"0";"4.32";"486409";"2915";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 832";"LINE";;;;;
523
;"128327";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3.5";"486409";"2785";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 199";"LINE";;;;;
524
;"128328";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"3.37";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1842";"LINE";;;;;
525
;"128329";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"4.09";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1816";"LINE";;;;;
526
;"128330";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"3";"486409";"4830";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
527
;"128331";"472438";"0";"2004-02-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.87";"486409";"5065";"485372";;;"2024-02-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-10 00:00:00.000000";"472417";;"LINE";;;;;
528
;"128331";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"3.87";"486409";"5065";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
529
;"128332";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"5.74";"486409";"5065";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2078";"LINE";;;;;
530
;"128333";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"4.71";"486409";"5065";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 38";"LINE";;;;;
531
;"128334";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"3.49";"486409";"3960";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1265";"LINE";;;;;
532
;"128335";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"3.48";"486409";"3960";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 99";"LINE";;;;;
533
;"128336";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"4.53";"486409";"3960";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1385";"LINE";;;;;
534
;"128337";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"4.28";"486409";"3960";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1256";"LINE";;;;;
535
;"128338";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"106";"0";"3.46";"486409";"4700";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 162";"LINE";;;;;
536
;"128339";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"104";"0";"3.5";"486409";"4700";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 70";"LINE";;;;;
537
;"128340";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"104";"0";"4.13";"486409";"4700";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 50";"LINE";;;;;
538
;"128341";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"77";"0";"4.25";"486409";"4700";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 90";"LINE";;;;;
539
;"128342";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"75";"0";"3";"486409";"4700";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
540
;"128343";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"0";"5.2";"486409";"4470";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
541
;"128344";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"88";"0";"4.86";"486409";"4700";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 41";"LINE";;;;;
542
;"128345";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"67";"0";"6.5";"486409";"4700";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 90";"LINE";;;;;
543
;"128346";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"29";"0";"4.39";"486409";"4090";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2600";"LINE";;;;;
544
;"128347";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.36";"486409";"4470";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 881";"LINE";;;;;
545
;"128348";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3B";"0";"4.89";"486409";"4470";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1763";"LINE";;;;;
546
;"128349";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"4.47";"486409";"523";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 36";"LINE";;;;;
547
;"128350";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"3.83";"486409";"523";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 67";"LINE";;;;;
548
;"128351";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4B";"0";"5.42";"486409";"523";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1596";"LINE";;;;;
549
;"128352";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.71";"486409";"523";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2695";"LINE";;;;;
550
;"128353";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.45";"486409";"523";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 34";"LINE";;;;;
551
;"128354";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"9";"0";"3";"486409";"4470";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
552
;"128355";"472438";"0";"2004-02-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"76";"0";"3";"486409";"4115";"485372";;;"2024-02-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-08 00:00:00.000000";"472417";;"LINE";;;;;
553
;"128355";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"76";"0";"3";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
554
;"128356";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"13";"0";"3.22";"486409";"4090";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
555
;"128356";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"3.22";"486409";"4090";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
556
;"128357";"472438";"0";"2003-03-13 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"68";"0";"3.26";"486409";"4115";"485372";;;"2023-03-13 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-13 00:00:00.000000";"472417";;"LINE";;;;;
557
;"128357";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"68";"0";"3.26";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
558
;"128358";"472438";"0";"2004-02-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"16";"0";"3";"486409";"4090";"485372";;;"2024-02-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-17 00:00:00.000000";"472417";;"LINE";;;;;
559
;"128358";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"16";"0";"3";"486409";"4090";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
560
;"128359";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"80";"0";"4.63";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1870";"LINE";;;;;
561
;"128360";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"82";"0";"4.51";"486409";"4115";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1103";"LINE";;;;;
562
;"128361";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"3";"486419";"5660";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
563
;"128362";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"108";"0";"3.56";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2434";"LINE";;;;;
564
;"128363";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"106";"0";"4.23";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 1559";"LINE";;;;;
565
;"128364";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"106";"0";"4.59";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 232";"LINE";;;;;
566
;"128365";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"106";"0";"4.13";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 2640";"LINE";;;;;
567
;"128366";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"98";"0";"4.9";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 8";"LINE";;;;;
568
;"128367";"472438";"0";"2003-03-19 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"88";"0";"3";"486409";"2340";"485372";;;"2023-03-19 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-19 00:00:00.000000";"472417";;"LINE";;;;;
569
;"128367";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"88";"0";"3";"486409";"2340";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
570
;"128368";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"85";"0";"3";"486409";"2980";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
571
;"128369";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"85";"0";"3.44";"486409";"2980";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472416";"V 241";"LINE";;;;;
572
;"128370";"472438";"0";"2003-03-12 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"11";"0";"26.08";"486409";"4470";"485372";;;"2023-03-12 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-12 00:00:00.000000";"472419";;"LINE";;;;;
573
;"128370";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"0";"26.08";"486409";"4470";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472419";;"LINE";;;;;
574
;"128371";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"4.76";"486409";"1295";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 2192";"LINE";;;;;
575
;"128372";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.12";"486409";"1295";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 2689";"LINE";;;;;
576
;"128373";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"115";"0";"5.08";"486409";"2980";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"VADO EN TRAMITE";"LINE";;;;;
577
;"128374";"472438";"0";"2006-11-08 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"4.98";"486409";"2765";"485372";;;"2026-11-08 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-08 00:00:00.000000";"472416";"V 2688";"LINE";;;;;
578
;"128374";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"4.98";"486409";"2765";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 2688";"LINE";;;;;
579
;"128375";"472438";"0";"2006-11-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"22";"0";"5.72";"486406";"4545";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-11-08 00:00:00.000000";"472416";;"LINE";;;;;
580
;"128376";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"56";"0";"4.79";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1794";"LINE";;;;;
581
;"128377";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"56";"0";"4.55";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1529";"LINE";;;;;
582
;"128378";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"0";"2.73";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
583
;"128379";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"39";"0";"3.31";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1966";"LINE";;;;;
584
;"128380";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"35";"0";"3";"486409";"4830";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
585
;"128380";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"35";"0";"3";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
586
;"128381";"472438";"0";"2004-02-03 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"33";"0";"2.99";"486409";"4830";"485372";;;"2024-02-03 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-03 00:00:00.000000";"472417";;"LINE";;;;;
587
;"128381";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"33";"0";"2.99";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
588
;"128382";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"19";"0";"4.95";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1494";"LINE";;;;;
589
;"128383";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"0";"3";"486409";"4830";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
590
;"128384";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"3";"486409";"1886";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
591
;"128385";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"28";"0";"4.9";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"VA 49 VADO TEMPORAL";"LINE";;;;;
592
;"128386";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"26";"0";"4.5";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1006";"LINE";;;;;
593
;"128387";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"4.9";"486415";"2125";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"VA 349";"LINE";;;;;
594
;"128388";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"5.08";"486415";"2125";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 925";"LINE";;;;;
595
;"128389";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"40";"0";"4.7";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1959";"LINE";;;;;
596
;"128390";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"4";"486415";"2125";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
597
;"128391";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"3";"486415";"2125";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
598
;"128392";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"4.23";"486415";"2125";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V.";"LINE";;;;;
599
;"128393";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"4.48";"486409";"3680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1171";"LINE";;;;;
600
;"128394";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"5.33";"486409";"3680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 883";"LINE";;;;;
601
;"128395";"472438";"0";"2006-05-16 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"4.31";"486409";"3680";"485372";;;"2026-05-16 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-16 00:00:00.000000";"472417";;"LINE";;;;;
602
;"128395";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"4.31";"486409";"3680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
603
;"128397";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"11";"0";"5.03";"486409";"3680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 650";"LINE";;;;;
604
;"128398";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"13";"0";"4.93";"486409";"3680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 2328";"LINE";;;;;
605
;"128399";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"4.1";"486409";"3680";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
606
;"128400";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"6";"0";"13.5";"486409";"3680";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472419";;"LINE";;;;;
607
;"128401";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"4";"486409";"535";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"VA 173";"LINE";;;;;
608
;"128402";"472438";"0";"2006-05-22 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"3.27";"486409";"535";"485372";;;"2026-05-22 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-22 00:00:00.000000";"472417";;"LINE";;;;;
609
;"128402";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"3.27";"486409";"535";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
610
;"128403";"472438";"0";"2003-03-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"3.42";"486409";"2735";"485372";;;"2023-03-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-10 00:00:00.000000";"472417";;"LINE";;;;;
611
;"128403";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"24";"0";"3.42";"486409";"2735";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
612
;"128404";"472438";"0";"2004-02-09 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.02";"486409";"535";"485372";;;"2024-02-09 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-09 00:00:00.000000";"472417";;"LINE";;;;;
613
;"128404";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"3.02";"486409";"535";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
614
;"128405";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"59";"0";"4.25";"486409";"5365";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 719";"LINE";;;;;
615
;"128406";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"6.5";"486409";"3680";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 736";"LINE";;;;;
616
;"128407";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.32";"486409";"5385";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 2219";"LINE";;;;;
617
;"128408";"472438";"0";"2004-01-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"24";"0";"2.99";"486409";"1886";"485372";;;"2024-01-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-23 00:00:00.000000";"472417";;"LINE";;;;;
618
;"128408";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"24";"0";"2.99";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
619
;"128409";"472438";"0";"2004-01-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"27";"0";"3";"486409";"1886";"485372";;;"2024-01-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-01-23 00:00:00.000000";"472417";;"LINE";;;;;
620
;"128409";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"3";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
621
;"128410";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"27";"0";"4.91";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 222";"LINE";;;;;
622
;"128411";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"47";"0";"4.05";"486409";"4090";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 853";"LINE";;;;;
623
;"128412";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"25";"0";"5.02";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 382";"LINE";;;;;
624
;"128413";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"63";"0";"4.64";"486409";"1680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1867";"LINE";;;;;
625
;"128414";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"61";"0";"4.53";"486409";"1680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"V 1097";"LINE";;;;;
626
;"128415";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"61";"0";"4.48";"486409";"1680";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472416";"VA 352";"LINE";;;;;
627
;"128416";"472438";"0";"2006-05-10 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"25";"0";"4.02";"486409";"1886";"485372";;;"2026-05-10 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-05-10 00:00:00.000000";"472417";;"LINE";;;;;
628
;"128416";"472438";"0";"2002-10-29 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"25";"0";"4.02";"486409";"1886";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-29 00:00:00.000000";"472417";;"LINE";;;;;
629
;"128417";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"30";"0";"3.77";"486409";"630";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 1379";"LINE";;;;;
630
;"128418";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"30";"0";"3.29";"486409";"630";"485372";;;"2017-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"VA 268";"LINE";;;;;
631
;"128419";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"45";"0";"3.64";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 1731";"LINE";;;;;
632
;"128420";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.54";"486409";"508";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 1743";"LINE";;;;;
633
;"128421";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"4.79";"486409";"508";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 714";"LINE";;;;;
634
;"128422";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"66";"0";"4.79";"486409";"5365";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 1507";"LINE";;;;;
635
;"128423";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"30";"0";"3.6";"486409";"2735";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 470";"LINE";;;;;
636
;"128424";"472438";"0";"2002-10-30 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"12";"0";"7.87";"486409";"3850";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-30 00:00:00.000000";"472416";"V 1659";"LINE";;;;;
637
;"128435";"472438";"0";"2003-03-12 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.26";"486409";"508";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-12 00:00:00.000000";"472416";"V.2844";"LINE";;;;;
638
;"128436";"472438";"0";"2003-03-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"29";"0";"4.61";"486409";"4830";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-11 00:00:00.000000";"472416";"V.1532";"LINE";;;;;
639
;"128437";"472438";"0";"2003-03-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"5.12";"486409";"3960";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-11 00:00:00.000000";"472416";"V.1825";"LINE";;;;;
640
;"128439";"472438";"0";"2004-02-18 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"62";"0";"3.5";"486406";"4545";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-18 00:00:00.000000";"472417";;"LINE";;;;;
641
;"125525";"472438";"0";"2007-10-01 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"9.8";"486419";"3888";"485372";;;"2027-10-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-01 00:00:00.000000";"472417";;"LINE";;;;;
642
;"125525";"472438";"0";"2003-08-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"9.8";"486419";"3888";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-08-25 00:00:00.000000";"472417";;"LINE";;;;;
643
;"128440";"472438";"0";"2004-02-08 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3";"486409";"4470";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-02-08 00:00:00.000000";"472417";;"LINE";;;;;
644
;"128441";"472438";"0";"2003-03-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"104";"0";"2.89";"486409";"4700";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-03 00:00:00.000000";"472417";;"LINE";;;;;
645
;"128442";"472438";"0";"2003-03-03 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"92";"0";"2.8";"486409";"4700";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-03-03 00:00:00.000000";"472417";;"LINE";;;;;
646
;"128443";"472438";"0";"2005-04-21 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"2.56";"486409";"3585";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-21 00:00:00.000000";"472417";;"LINE";;;;;
647
;"125526";"472438";"0";"2004-04-14 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"2";"0";"2.5";"486409";"6025";"485372";;;"2014-07-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-04-14 00:00:00.000000";"472417";;"LINE";;;;;
648
;"128453";"472438";"0";"2002-10-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"5";"0";"3";"486409";"4470";"485372";;;"2014-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2002-10-28 00:00:00.000000";"472417";;"LINE";;;;;
649
;"125530";"472438";"0";"2007-09-17 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"22";"0";"12.9";"486409";"3695";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-17 00:00:00.000000";"472417";;"LINE";;;;;
650
;"128464";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"10";"0";"4.79";"486409";"2356";"485372";;;"2025-04-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472416";"V.1413";"LINE";;;;;
651
;"128465";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"10";"0";"5.69";"486409";"2356";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472416";;"LINE";;;;;
652
;"128466";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"4";"0";"5.35";"486409";"2356";"485372";;;"2025-04-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472416";"V.1412";"LINE";;;;;
653
;"128467";"472438";"0";"2005-04-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"4";"0";"4.56";"486409";"2356";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-25 00:00:00.000000";"472416";;"LINE";;;;;
654
;"128468";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"5";"0";"7.97";"486409";"1412";"485372";;;"2025-04-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472417";;"LINE";;;;;
655
;"125531";"472438";"0";"2007-09-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"23";"0";"7.09";"486409";"2160";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-09 00:00:00.000000";"472416";"V. 3564";"LINE";;;;;
656
;"125533";"472438";"0";"2007-09-10 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"21";"0";"3.68";"486409";"1825";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-09-10 00:00:00.000000";"472416";"V.3355";"LINE";;;;;
657
;"128481";"472438";"0";"2005-04-27 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"6";"0";"3.04";"486409";"1412";"485372";;;"2025-04-27 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-04-27 00:00:00.000000";"472417";;"LINE";;;;;
658
;"125534";"472438";"0";"2007-10-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"56";"0";"5.07";"486409";"460";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-09 00:00:00.000000";"472416";"V.3341";"LINE";;;;;
659
;"128492";"472438";"0";"2004-03-19 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"6.07";"486409";"3192";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-03-19 00:00:00.000000";"472417";;"LINE";;;;;
660
;"128493";"472438";"0";"2005-01-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.23";"486409";"1023";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-01-20 00:00:00.000000";"472416";;"LINE";;;;;
661
;"128494";"472438";"0";"2006-03-06 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.24";"486409";"1023";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-03-06 00:00:00.000000";"472416";"V. 2788";"LINE";;;;;
662
;"128503";"472438";"0";"2005-05-17 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"46";"0";"3";"486406";"325";"485372";;;"2025-05-17 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-17 00:00:00.000000";"472417";;"LINE";;;;;
663
;"128504";"472438";"0";"2007-01-11 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"42";"0";"3";"486406";"325";"485372";;;"2027-01-11 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-01-11 00:00:00.000000";"472417";;"LINE";;;;;
664
;"128505";"472438";"0";"2007-01-11 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"29";"0";"5.44";"486406";"325";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-01-11 00:00:00.000000";"472416";"V. 2856";"LINE";;;;;
665
;"125535";"472438";"0";"2007-10-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"52";"0";"4";"486409";"460";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-09 00:00:00.000000";"472416";"V.0392";"LINE";;;;;
666
;"128507";"472438";"0";"2005-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"16";"0";"3.24";"486406";"6040";"485372";;;"2025-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-23 00:00:00.000000";"472417";;"LINE";;;;;
667
;"128508";"472438";"0";"2005-05-23 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"18";"0";"4.64";"486406";"6040";"485372";;;"2025-05-23 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-05-23 00:00:00.000000";"472417";;"LINE";;;;;
668
;"128520";"472438";"0";"2006-04-25 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"2";"0";"3.29";"486406";"2115";"485372";;;"2026-04-25 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-25 00:00:00.000000";"472417";;"LINE";;;;;
669
;"125536";"472438";"0";"2007-10-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"44";"0";"5.02";"486409";"460";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-09 00:00:00.000000";"472416";"V.2956";"LINE";;;;;
670
;"125537";"472438";"0";"2007-10-09 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"51";"0";"4.16";"486409";"460";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-09 00:00:00.000000";"472416";"V.3099";"LINE";;;;;
671
;"128535";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"17";"0";"3";"486409";"472";"485372";;;"2026-04-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";"V.2372";"LINE";;;;;
672
;"128536";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"17";"0";"4.94";"486409";"472";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";;"LINE";;;;;
673
;"125539";"472438";"0";"2007-10-02 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"45-1";"0";"4.84";"486409";"2000";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-02 00:00:00.000000";"472416";"V.2932";"LINE";;;;;
674
;"128537";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"3.98";"486409";"472";"485372";;;"2026-04-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";"V.1736";"LINE";;;;;
675
;"128538";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"3.66";"486409";"472";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";;"LINE";;;;;
676
;"128539";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"5.48";"486409";"472";"485372";;;"2026-04-26 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";"V.A.198";"LINE";;;;;
677
;"128540";"472438";"0";"2006-04-26 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"3.03";"486409";"472";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2006-04-26 00:00:00.000000";"472416";;"LINE";;;;;
678
;"128544";"472438";"0";"2003-04-30 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"1";"0";"2.71";"486406";"2261";"485372";;;"2023-04-30 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2003-04-30 00:00:00.000000";"472417";;"LINE";;;;;
679
;"125542";"472438";"0";"2007-10-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"15";"0";"4.89";"486409";"6025";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-07 00:00:00.000000";"472416";"V.358";"LINE";;;;;
680
;"128561";"472438";"0";"2005-07-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"S/N";"0";"4";"486409";"6188";"485372";;;"2025-07-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-07-05 00:00:00.000000";"472416";"V.2707";"LINE";;;;;
681
;"128562";"472438";"0";"2005-07-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"S/N";"0";"5.52";"486409";"6188";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-07-05 00:00:00.000000";"472416";;"LINE";;;;;
682
;"125543";"472438";"0";"2007-10-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"18B";"0";"4.28";"486409";"6025";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-07 00:00:00.000000";"472416";"V.3334";"LINE";;;;;
683
;"128567";"472438";"0";"2005-07-05 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"3";"0";"4.97";"486409";"6188";"485372";;;"2025-07-05 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-07-05 00:00:00.000000";"472416";"V.720";"LINE";;;;;
684
;"128568";"472438";"0";"2005-07-05 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"3";"0";"5.14";"486409";"6188";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-07-05 00:00:00.000000";"472416";;"LINE";;;;;
685
;"128569";"472438";"0";"2005-10-20 00:00:00.000000";"STABLE";"0";"1";"RESERVE";"0";"0";"8";"0";"3.48";"486409";"6188";"485372";;;"2025-10-20 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-10-20 00:00:00.000000";"472416";"V.2388";"LINE";;;;;
686
;"128570";"472438";"0";"2005-10-20 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"8";"0";"6.13";"486409";"6188";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2005-10-20 00:00:00.000000";"472416";;"LINE";;;;;
687
;"128575";"472438";"0";"2004-07-28 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"3.15";"486409";"4417";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-07-28 00:00:00.000000";"472417";;"LINE";;;;;
688
;"128576";"472438";"0";"2004-05-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"3.01";"486409";"4417";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-05-07 00:00:00.000000";"472417";;"LINE";;;;;
689
;"128577";"472438";"0";"2004-05-07 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"1";"0";"11.15";"486419";"2367";"485372";;;"2012-01-01 00:00:00.000000";"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2004-05-07 00:00:00.000000";"472417";;"LINE";;;;;
690
;"125544";"472438";"0";"2007-10-25 00:00:00.000000";"STABLE";"0";"0";"RESERVE";"0";"0";"7";"0";"3.49";"486409";"550";"485372";;;;"1988-12-31 00:00:00.000000";"1988-12-31 00:00:00.000000";"2007-10-25 00:00:00.000000";"472416";"V.2735";"LINE";;;;;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff