Remove Example (moved to dedicated project)
authorMathieu Baudier <mbaudier@argeo.org>
Sat, 1 Dec 2007 23:42:10 +0000 (23:42 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Sat, 1 Dec 2007 23:42:10 +0000 (23:42 +0000)
Introduce assembly

git-svn-id: https://svn.argeo.org/slc/trunk@805 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

24 files changed:
org.argeo.slc/pom.xml
org.argeo.slc/src/assembly/with-dependencies.xml [new file with mode: 0644]
org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleDeployedSystem.java [deleted file]
org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTask.java [deleted file]
org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTestData.java [deleted file]
org.argeo.slc/src/test/java/org/argeo/slc/example/SimpleExampleTestDef.java [deleted file]
org.argeo.slc/src/test/java/org/argeo/slc/example/appli/ExampleAppli.java [deleted file]
org.argeo.slc/src/test/java/org/argeo/slc/example/junit/TestAntBuild.java [deleted file]
org.argeo.slc/src/test/slc/conf/applicationContext.xml [deleted file]
org.argeo.slc/src/test/slc/conf/data.xml [deleted file]
org.argeo.slc/src/test/slc/conf/log4j.properties [deleted file]
org.argeo.slc/src/test/slc/conf/slc.properties [deleted file]
org.argeo.slc/src/test/slc/conf/slc.xml [deleted file]
org.argeo.slc/src/test/slc/conf/testDatas.xml [deleted file]
org.argeo.slc/src/test/slc/conf/testDefinitions.xml [deleted file]
org.argeo.slc/src/test/slc/root/Category1/SubCategory2/build.xml [deleted file]
org.argeo.slc/src/test/slc/root/Category1/slcLocal.properties [deleted file]
org.argeo.slc/src/test/slc/root/slcRoot.properties [deleted file]
org.argeo.slc/src/test/slc/work/data/expected/eu-reform-expected.txt [deleted file]
org.argeo.slc/src/test/slc/work/data/expected/nato-expected.txt [deleted file]
org.argeo.slc/src/test/slc/work/data/expected/un-expected.txt [deleted file]
org.argeo.slc/src/test/slc/work/data/input/eu-reform-in.txt [deleted file]
org.argeo.slc/src/test/slc/work/data/input/nato-in.txt [deleted file]
org.argeo.slc/src/test/slc/work/data/input/un-in.txt [deleted file]

index 847d2a6fe58bbf77f85251ff77a8696f861a0ca7..aab363019f66ffd3a6a93bea8d019cc71d2a9250 100644 (file)
                        </plugin>\r
                        <plugin>\r
                                <groupId>org.apache.maven.plugins</groupId>\r
-                               <artifactId>maven-surefire-plugin</artifactId>\r
+                               <artifactId>maven-assembly-plugin</artifactId>\r
                                <configuration>\r
-                                       <skip>true</skip>\r
+                                       <descriptors>\r
+                                               <descriptor>\r
+                                                       src/assembly/with-dependencies.xml\r
+                                               </descriptor>\r
+                                       </descriptors>\r
                                </configuration>\r
                                <executions>\r
                                        <execution>\r
-                                               <id>surefire-it</id>\r
-                                               <phase>integration-test</phase>\r
+                                               <id>make-assembly</id>\r
+                                               <phase>site</phase>\r
                                                <goals>\r
-                                                       <goal>test</goal>\r
+                                                       <goal>attached</goal>\r
                                                </goals>\r
-                                               <configuration>\r
-                                                       <skip>false</skip>\r
-                                                       <systemProperties>\r
-                                                               <property>\r
-                                                                       <name>it.slc.base</name>\r
-                                                                       <value>\r
-                                                                               ${basedir}/src/test/slc\r
-                                                                       </value>\r
-                                                               </property>\r
-                                                       </systemProperties>\r
-                                               </configuration>\r
                                        </execution>\r
                                </executions>\r
                        </plugin>\r
                                <groupId>org.apache.maven.plugins</groupId>\r
                                <artifactId>maven-changelog-plugin</artifactId>\r
                        </plugin>\r
-                       <!-- \r
-                               <plugin>\r
+                       <plugin>\r
                                <groupId>org.codehaus.mojo</groupId>\r
                                <artifactId>cobertura-maven-plugin</artifactId>\r
-                               </plugin>\r
-                       -->\r
+                       </plugin>\r
                </plugins>\r
        </reporting>\r
        <dependencies>\r
+               <dependency>\r
+                       <groupId>javax.transaction</groupId>\r
+                       <artifactId>jta</artifactId>\r
+                       <version>1.0.1</version>\r
+               </dependency>\r
                <dependency>\r
                        <groupId>log4j</groupId>\r
                        <artifactId>log4j</artifactId>\r
                        </dependency>\r
                </dependencies>\r
        </dependencyManagement>\r
+       <repositories>\r
+               <repository>\r
+                       <id>central</id>\r
+                       <url>http://www.argeo.org/maven/repository</url>\r
+               </repository>\r
+       </repositories>\r
 </project>
\ No newline at end of file
diff --git a/org.argeo.slc/src/assembly/with-dependencies.xml b/org.argeo.slc/src/assembly/with-dependencies.xml
new file mode 100644 (file)
index 0000000..821bbce
--- /dev/null
@@ -0,0 +1,37 @@
+<assembly>\r
+       <id>with-dependencies</id>\r
+       <formats>\r
+               <format>zip</format>\r
+       </formats>\r
+       <fileSets>\r
+               <fileSet>\r
+                       <directory>src/main/config</directory>\r
+                       <outputDirectory></outputDirectory>\r
+                       <includes>\r
+                               <include>**/*</include>\r
+                       </includes>\r
+               </fileSet>\r
+               <fileSet>\r
+                       <directory>target</directory>\r
+                       <outputDirectory>lib</outputDirectory>\r
+                       <includes>\r
+                               <include>*.jar</include>\r
+                       </includes>\r
+               </fileSet>\r
+               <fileSet>\r
+                       <directory>target/site</directory>\r
+                       <outputDirectory>doc</outputDirectory>\r
+                       <includes>\r
+                               <include>**/*</include>\r
+                       </includes>\r
+               </fileSet>\r
+               <fileSet>\r
+                       <directory>src</directory>\r
+               </fileSet>\r
+       </fileSets>\r
+       <dependencySets>\r
+               <dependencySet>\r
+                       <outputDirectory>lib</outputDirectory>\r
+               </dependencySet>\r
+       </dependencySets>\r
+</assembly>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleDeployedSystem.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleDeployedSystem.java
deleted file mode 100644 (file)
index 24ba414..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-package org.argeo.slc.example;\r
-\r
-import org.argeo.slc.core.deploy.DeployedSystem;\r
-import org.argeo.slc.core.deploy.DeployedSystemId;\r
-import org.argeo.slc.example.appli.ExampleAppli;\r
-\r
-/** Example deployed sytem. */\r
-public class ExampleDeployedSystem implements DeployedSystem {\r
-       private DeployedSystemId deployedSystemId;\r
-       private int skipFreq = 2;\r
-\r
-       public DeployedSystemId getDeployedSystemId() {\r
-               return deployedSystemId;\r
-       }\r
-\r
-       /** Sets deployed system id. */\r
-       public void setDeployedSystemId(DeployedSystemId deployedSystemId) {\r
-               this.deployedSystemId = deployedSystemId;\r
-       }\r
-\r
-       /** Creates an instance of the example appli. */\r
-       public ExampleAppli getExampleAppliInstance() {\r
-               ExampleAppli appli = new ExampleAppli();\r
-               appli.setSkipFreq(skipFreq);\r
-               return appli;\r
-       }\r
-\r
-       /** Sets the frequency used to skip lines. */\r
-       public void setSkipFreq(int skipFreq) {\r
-               this.skipFreq = skipFreq;\r
-       }\r
-\r
-}\r
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTask.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTask.java
deleted file mode 100644 (file)
index c77e451..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-package org.argeo.slc.example;\r
-\r
-import org.argeo.slc.core.structure.StructureAware;\r
-import org.argeo.slc.core.structure.StructureElement;\r
-import org.argeo.slc.core.structure.StructurePath;\r
-import org.argeo.slc.core.structure.StructureRegistry;\r
-import org.argeo.slc.core.structure.tree.TreeSPath;\r
-import org.argeo.slc.core.test.SimpleResultPart;\r
-import org.argeo.slc.core.test.TestDefinition;\r
-import org.argeo.slc.core.test.TestResult;\r
-import org.argeo.slc.core.test.TestRun;\r
-\r
-/** Example task. */\r
-public class ExampleTask implements StructureAware, TestDefinition,\r
-               StructureElement {\r
-       private TreeSPath path;\r
-       private String description;\r
-\r
-       public void execute(TestRun testRun) {\r
-               SimpleResultPart part = new SimpleResultPart(PASSED,\r
-                               "Sub task with path " + path + " executed", null);\r
-\r
-               TestResult result = testRun.getTestResult();\r
-               result.addResultPart(part);\r
-       }\r
-\r
-       public void notifyCurrentPath(StructureRegistry registry, StructurePath path) {\r
-               this.path = (TreeSPath) path;\r
-       }\r
-\r
-       public String getDescription() {\r
-               return description;\r
-       }\r
-\r
-       /** Sets the description. */\r
-       public void setDescription(String description) {\r
-               this.description = description;\r
-       }\r
-\r
-}\r
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTestData.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/ExampleTestData.java
deleted file mode 100644 (file)
index 628df1a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.argeo.slc.example;\r
-\r
-import java.io.File;\r
-\r
-import org.argeo.slc.core.test.TestData;\r
-\r
-public class ExampleTestData implements TestData {\r
-       private File inputFile;\r
-       private File reachedFile;\r
-       private File expectedFile;\r
-\r
-       public File getInputFile() {\r
-               return inputFile;\r
-       }\r
-\r
-       public void setInputFile(File inputFile) {\r
-               this.inputFile = inputFile;\r
-       }\r
-\r
-       public File getReachedFile() {\r
-               return reachedFile;\r
-       }\r
-\r
-       public void setReachedFile(File reachedFile) {\r
-               this.reachedFile = reachedFile;\r
-       }\r
-\r
-       public File getExpectedFile() {\r
-               return expectedFile;\r
-       }\r
-\r
-       public void setExpectedFile(File expectedFile) {\r
-               this.expectedFile = expectedFile;\r
-       }\r
-\r
-}\r
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/SimpleExampleTestDef.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/SimpleExampleTestDef.java
deleted file mode 100644 (file)
index 505623c..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-package org.argeo.slc.example;\r
-\r
-import java.io.BufferedReader;\r
-import java.io.File;\r
-import java.io.FileReader;\r
-import java.io.IOException;\r
-\r
-import org.apache.commons.logging.Log;\r
-import org.apache.commons.logging.LogFactory;\r
-\r
-import org.argeo.slc.core.test.SimpleResultPart;\r
-import org.argeo.slc.core.test.TestStatus;\r
-import org.argeo.slc.core.test.TestDefinition;\r
-import org.argeo.slc.core.test.TestResult;\r
-import org.argeo.slc.core.test.TestResultPart;\r
-import org.argeo.slc.core.test.TestRun;\r
-import org.argeo.slc.example.appli.ExampleAppli;\r
-\r
-public class SimpleExampleTestDef implements TestDefinition {\r
-       private Log log = LogFactory.getLog(SimpleExampleTestDef.class);\r
-\r
-       public void execute(TestRun testRun) {\r
-               ExampleDeployedSystem system = (ExampleDeployedSystem) testRun\r
-                               .getDeployedSystem();\r
-\r
-               ExampleTestData data = (ExampleTestData) testRun.getTestData();\r
-\r
-               ExampleAppli appli = system.getExampleAppliInstance();\r
-               String[] args = { data.getInputFile().getAbsolutePath(),\r
-                               data.getReachedFile().getAbsolutePath() };\r
-\r
-               TestResult result = testRun.getTestResult();\r
-\r
-               SimpleResultPart executePart = new SimpleResultPart();\r
-               executePart.setMessage("Execute example appli");\r
-               try {\r
-                       // execute\r
-                       appli.filter(args);\r
-\r
-                       executePart.setStatus(TestStatus.PASSED);\r
-               } catch (Exception e) {\r
-                       executePart.setStatus(TestStatus.ERROR);\r
-                       executePart.setException(e);\r
-               }\r
-               result.addResultPart(executePart);\r
-               if (executePart.getStatus() == TestStatus.ERROR) {\r
-                       return;\r
-               }\r
-\r
-               result.addResultPart(assertFiles(data));\r
-       }\r
-\r
-       private TestResultPart assertFiles(ExampleTestData data) {\r
-               SimpleResultPart part = new SimpleResultPart();\r
-               part.setMessage("Compare " + data.getExpectedFile().getName()\r
-                               + " with " + data.getReachedFile().getName());\r
-               try {\r
-                       String expected = loadFile(data.getExpectedFile());\r
-                       String reached = loadFile(data.getReachedFile());\r
-                       part.setStatus(expected.equals(reached) ? TestStatus.PASSED\r
-                                       : TestStatus.FAILED);\r
-               } catch (Exception e) {\r
-                       part.setStatus(TestStatus.ERROR);\r
-                       part.setException(e);\r
-                       log.error("Error while asserting files", e);\r
-               }\r
-               return part;\r
-       }\r
-\r
-       public String loadFile(File file) throws IOException {\r
-               StringBuffer buf = new StringBuffer("");\r
-               BufferedReader in = new BufferedReader(new FileReader(file));\r
-               String line;\r
-               while ((line = in.readLine()) != null) {\r
-                       buf.append(line).append('\n');\r
-               }\r
-               in.close();\r
-               return buf.toString();\r
-       }\r
-}\r
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/appli/ExampleAppli.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/appli/ExampleAppli.java
deleted file mode 100644 (file)
index 7644c57..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-package org.argeo.slc.example.appli;\r
-\r
-import java.io.BufferedReader;\r
-import java.io.FileReader;\r
-import java.io.FileWriter;\r
-import java.io.IOException;\r
-\r
-/** Example appli. */\r
-public class ExampleAppli {\r
-       private int skipFreq = 2;\r
-\r
-       /** Filters. */\r
-       public void filter(String[] args) {\r
-               if (args.length < 2) {\r
-                       throw new RuntimeException(\r
-                                       "Not enough arguments. Usage: <inpuit file> <output file>");\r
-               }\r
-               String input = args[0];\r
-               String output = args[1];\r
-               if (args.length > 2) {\r
-                       skipFreq = Integer.parseInt(args[2]);\r
-               }\r
-\r
-               try {\r
-                       BufferedReader in = new BufferedReader(new FileReader(input));\r
-                       FileWriter out = new FileWriter(output);\r
-                       int count = 0;\r
-                       String line;\r
-                       while ((line = in.readLine()) != null) {\r
-                               if (count % skipFreq != 0) {\r
-                                       out.write(line);\r
-                                       out.write("\n");\r
-                               }\r
-                               count++;\r
-                       }\r
-                       out.close();\r
-                       in.close();\r
-               } catch (IOException e) {\r
-                       throw new RuntimeException("Appli failed", e);\r
-               }\r
-       }\r
-\r
-       /** Sets the frequency of the lines to skip. */\r
-       public void setSkipFreq(int skipFreq) {\r
-               this.skipFreq = skipFreq;\r
-       }\r
-\r
-}\r
diff --git a/org.argeo.slc/src/test/java/org/argeo/slc/example/junit/TestAntBuild.java b/org.argeo.slc/src/test/java/org/argeo/slc/example/junit/TestAntBuild.java
deleted file mode 100644 (file)
index 0d56f7f..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-package org.argeo.slc.example.junit;\r
-\r
-import java.io.File;\r
-\r
-import org.springframework.context.ApplicationContext;\r
-\r
-import org.apache.commons.logging.Log;\r
-import org.apache.commons.logging.LogFactory;\r
-import org.apache.tools.ant.Project;\r
-\r
-import junit.framework.TestCase;\r
-\r
-import org.argeo.slc.ant.AntRegistryUtil;\r
-import org.argeo.slc.ant.SlcProjectHelper;\r
-import org.argeo.slc.core.structure.tree.TreeSPath;\r
-import org.argeo.slc.core.test.NumericTRId;\r
-import org.argeo.slc.core.test.SimpleResultPart;\r
-import org.argeo.slc.core.test.TestStatus;\r
-import org.argeo.slc.core.test.tree.PartSubList;\r
-import org.argeo.slc.core.test.tree.TreeTestResult;\r
-import org.argeo.slc.dao.test.TestResultDao;\r
-\r
-/** High level tests for SLC Ant. */\r
-public class TestAntBuild extends TestCase {\r
-       private static Log log = LogFactory.getLog(TestAntBuild.class);\r
-\r
-       /** Tests an end-to-end Ant run. */\r
-       public void testAllRunSimple() {\r
-               String slcBase = System.getProperty("it.slc.base");\r
-               File slcBaseDir = new File(slcBase).getAbsoluteFile();\r
-               log.info("SLC base: " + slcBaseDir);\r
-\r
-               String reportDirPath = slcBaseDir.getPath() + "/work/results/report/";\r
-               File[] reportFiles = new File(reportDirPath).listFiles();\r
-               for (File file : reportFiles) {\r
-                       file.delete();\r
-               }\r
-\r
-               File antFile = new File(slcBaseDir.getPath()\r
-                               + "/root/Category1/SubCategory2/build.xml");\r
-               Project p = AntRegistryUtil.runAll(antFile);\r
-\r
-               ApplicationContext context = (ApplicationContext) p\r
-                               .getReference(SlcProjectHelper.REF_ROOT_CONTEXT);\r
-\r
-               TestResultDao testResultDao = (TestResultDao) context\r
-                               .getBean("testResultDao");\r
-\r
-               NumericTRId numericTRId = new NumericTRId();\r
-               numericTRId.setValue(1l);\r
-               TreeTestResult testResult1 = (TreeTestResult) testResultDao\r
-                               .getTestResult(numericTRId);\r
-               // assertPart(testResult1, "", 0, TestStatus.PASSED, "");\r
-               assertPart(\r
-                               testResult1,\r
-                               "/root/Category1/SubCategory2/testComplex/slc.test0/0",\r
-                               0,\r
-                               TestStatus.PASSED,\r
-                               "Sub task with path /root/Category1/SubCategory2/testComplex/slc.test0/0 executed");\r
-               assertPart(testResult1,\r
-                               "/root/Category1/SubCategory2/testSimple/slc.test0", 1,\r
-                               TestStatus.FAILED,\r
-                               "Compare nato-expected.txt with nato-reached.txt");\r
-               assertPart(testResult1,\r
-                               "/root/Category1/SubCategory2/testError/slc.test0", 0,\r
-                               TestStatus.ERROR, "Execute example appli");\r
-\r
-               numericTRId.setValue(2l);\r
-               TreeTestResult testResult2 = (TreeTestResult) testResultDao\r
-                               .getTestResult(numericTRId);\r
-               assertPart(testResult2,\r
-                               "/root/Category1/SubCategory2/testSimple/slc.test2", 1,\r
-                               TestStatus.PASSED,\r
-                               "Compare eu-reform-expected.txt with eu-reform-reached.txt");\r
-               assertPart(testResult2,\r
-                               "/root/Category1/SubCategory2/testSimple/slc.test3", 1,\r
-                               TestStatus.FAILED,\r
-                               "Compare eu-reform-expected.txt with eu-reform-reached.txt");\r
-\r
-               assertTrue(new File(reportDirPath + "index.html").exists());\r
-               assertTrue(new File(reportDirPath + "slc-resultsList.html").exists());\r
-               assertTrue(new File(reportDirPath + "slc-result-1.html").exists());\r
-               assertTrue(new File(reportDirPath + "slc-result-2.html").exists());\r
-       }\r
-\r
-       private void assertPart(TreeTestResult testResult, String pathStr,\r
-                       int index, Integer status, String message) {\r
-               TreeSPath path = TreeSPath.parseToCreatePath(pathStr);\r
-               PartSubList list = testResult.getResultParts().get(path);\r
-               SimpleResultPart part = (SimpleResultPart) list.getParts().get(index);\r
-               assertEquals(status, part.getStatus());\r
-               assertEquals(message, part.getMessage());\r
-       }\r
-}\r
diff --git a/org.argeo.slc/src/test/slc/conf/applicationContext.xml b/org.argeo.slc/src/test/slc/conf/applicationContext.xml
deleted file mode 100644 (file)
index f8a2409..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">\r
-\r
-       <import resource="data.xml" />\r
-       <import resource="slc.xml" />\r
-       <import resource="testDatas.xml" />\r
-       <import resource="testDefinitions.xml" />\r
-</beans>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/conf/data.xml b/org.argeo.slc/src/test/slc/conf/data.xml
deleted file mode 100644 (file)
index 4ab0629..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">\r
-\r
-       <!-- Results -->\r
-       <bean id="dataSourceResults"\r
-               class="org.springframework.jdbc.datasource.SingleConnectionDataSource"\r
-               destroy-method="destroy">\r
-               <property name="driverClassName" value="org.hsqldb.jdbcDriver" />\r
-               <!-- <property name="url"\r
-                       value="jdbc:hsqldb:file:${slc.workDir}/results/hsqldb/db;shutdown=true" />-->\r
-               <property name="url"\r
-                       value="jdbc:hsqldb:mem:results" />\r
-               <property name="username" value="sa" />\r
-               <property name="password" value="" />\r
-               <property name="suppressClose" value="true" />\r
-       </bean>\r
-\r
-       <bean id="sessionFactoryResults"\r
-               class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">\r
-               <property name="dataSource" ref="dataSourceResults" />\r
-               <property name="mappingResources">\r
-                       <list>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/structure/SimpleSElement.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/structure/tree/TreeSPath.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/structure/tree/TreeSRegistry.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/test/NumericTRId.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/test/SimpleResultPart.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/test/tree/TreeTestResult.hbm.xml\r
-                               </value>\r
-                               <value>\r
-                                       org/argeo/slc/hibernate/test/tree/PartSubList.hbm.xml\r
-                               </value>\r
-                       </list>\r
-               </property>\r
-               <property name="hibernateProperties">\r
-                       <value>\r
-                               hibernate.dialect=org.hibernate.dialect.HSQLDialect\r
-                               cache.provider_class=org.hibernate.cache.NoCacheProvider\r
-                               cache.use_query_cache=false\r
-                               cache.use_minimal_puts=false\r
-                               max_fetch_depth=3\r
-                               current_session_context_class=thread\r
-                               hibernate.hbm2ddl.auto=create\r
-                       </value>\r
-               </property>\r
-       </bean>\r
-\r
-       <bean id="testResultDao"\r
-               class="org.argeo.slc.hibernate.test.tree.TestResultDaoHibernate">\r
-               <property name="sessionFactory" ref="sessionFactoryResults" />\r
-       </bean>\r
-\r
-       <bean id="treeSPathDao"\r
-               class="org.argeo.slc.hibernate.structure.tree.TreeSPathDaoHibernate">\r
-               <property name="sessionFactory" ref="sessionFactoryResults" />\r
-       </bean>\r
-\r
-       <bean id="treeSRegistryDao"\r
-               class="org.argeo.slc.hibernate.structure.tree.TreeSRegistryDaoHibernate">\r
-               <property name="sessionFactory" ref="sessionFactoryResults" />\r
-       </bean>\r
-\r
-\r
-</beans>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/conf/log4j.properties b/org.argeo.slc/src/test/slc/conf/log4j.properties
deleted file mode 100644 (file)
index 63db047..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# Set root logger level to DEBUG and its only appender to A1.\r
-log4j.rootLogger=INFO, console\r
-\r
-## Levels\r
-# Slc\r
-log4j.logger.org.argeo.slc=DEBUG\r
-# Spring\r
-log4j.logger.org.springframework=INFO\r
-# Hibernate\r
-log4j.logger.org.hibernate=WARN\r
-#log4j.logger.org.hibernate.SQL=TRACE\r
-#log4j.logger.org.hibernate.tool.hbm2ddl=TRACE\r
-#log4j.logger.org.hibernate.type=TRACE\r
-\r
-\r
-## Appenders\r
-# A1 is set to be a ConsoleAppender.\r
-log4j.appender.console=org.apache.log4j.ConsoleAppender\r
-\r
-# A1 uses PatternLayout.\r
-log4j.appender.console.layout=org.apache.log4j.PatternLayout\r
-log4j.appender.console.layout.ConversionPattern= %-5p %d{ISO8601} %m - %c %F:%L%n\r
-\r
diff --git a/org.argeo.slc/src/test/slc/conf/slc.properties b/org.argeo.slc/src/test/slc/conf/slc.properties
deleted file mode 100644 (file)
index d5378cb..0000000
+++ /dev/null
@@ -1 +0,0 @@
-rootTest=TEST
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/conf/slc.xml b/org.argeo.slc/src/test/slc/conf/slc.xml
deleted file mode 100644 (file)
index 4e1a7a5..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">\r
-\r
-       <bean id="defaultTestRun"\r
-               class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">\r
-               <property name="testResult" ref="testResult" />\r
-               <property name="deployedSystem" ref="exampleDeployedSystem" />\r
-       </bean>\r
-\r
-       <bean id="otherTestRun"\r
-               class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">\r
-               <property name="testResult" ref="testResult2" />\r
-               <property name="deployedSystem" ref="exampleDeployedSystem" />\r
-       </bean>\r
-\r
-       <bean id="testResult"\r
-               class="org.argeo.slc.core.test.tree.TreeTestResult">\r
-               <property name="numericResultId">\r
-                       <bean class="org.argeo.slc.core.test.NumericTRId">\r
-                               <property name="value" value="1" />\r
-                       </bean>\r
-               </property>\r
-               <property name="listeners">\r
-                       <list>\r
-                               <ref bean="resultLogger" />\r
-                               <ref bean="resultPersister" />\r
-                       </list>\r
-               </property>\r
-       </bean>\r
-\r
-       <bean id="testResult2"\r
-               class="org.argeo.slc.core.test.tree.TreeTestResult">\r
-               <property name="numericResultId">\r
-                       <bean class="org.argeo.slc.core.test.NumericTRId">\r
-                               <property name="value" value="2" />\r
-                       </bean>\r
-               </property>\r
-               <property name="listeners">\r
-                       <list>\r
-                               <ref bean="resultLogger" />\r
-                               <ref bean="resultPersister" />\r
-                       </list>\r
-               </property>\r
-       </bean>\r
-\r
-       <bean\r
-               class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />\r
-\r
-       <bean id="resultLogger"\r
-               class="org.argeo.slc.core.test.tree.TreeTestResultLogger"\r
-               init-method="init">\r
-       </bean>\r
-\r
-       <bean id="resultPersister"\r
-               class="org.argeo.slc.core.test.tree.TreeTestResultPersister"\r
-               init-method="init">\r
-               <property name="testResultDao" ref="testResultDao" />\r
-               <property name="treeSPathDao" ref="treeSPathDao" />\r
-               <property name="treeSRegistryDao" ref="treeSRegistryDao" />\r
-       </bean>\r
-\r
-       <bean id="report"\r
-               class="org.argeo.slc.core.test.tree.htmlreport.FullHtmlTreeReport">\r
-               <property name="testResultDao" ref="testResultDao" />\r
-               <property name="treeSRegistryDao" ref="treeSRegistryDao" />\r
-               <property name="reportDir"\r
-                       value="${slc.workDir}/results/report" />\r
-       </bean>\r
-\r
-       <bean id="exampleDeployedSystem"\r
-               class="org.argeo.slc.example.ExampleDeployedSystem">\r
-               <property name="skipFreq" value="2" />\r
-               <property name="deployedSystemId">\r
-                       <bean class="org.argeo.slc.core.deploy.NumericDSId">\r
-                               <property name="value" value="123456" />\r
-                               <property name="distributionId">\r
-                                       <bean\r
-                                               class="org.argeo.slc.core.build.VersionDistributionId">\r
-                                               <property name="versionString" value="0.3.1" />\r
-                                       </bean>\r
-                               </property>\r
-                       </bean>\r
-               </property>\r
-       </bean>\r
-\r
-       <bean id="exampleDeployedSystem2"\r
-               class="org.argeo.slc.example.ExampleDeployedSystem">\r
-               <property name="skipFreq" value="3" />\r
-               <property name="deployedSystemId">\r
-                       <bean class="org.argeo.slc.core.deploy.NumericDSId">\r
-                               <property name="value" value="654321" />\r
-                               <property name="distributionId">\r
-                                       <bean\r
-                                               class="org.argeo.slc.core.build.VersionDistributionId">\r
-                                               <property name="versionString" value="0.3.1" />\r
-                                       </bean>\r
-                               </property>\r
-                       </bean>\r
-               </property>\r
-       </bean>\r
-\r
-</beans>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/conf/testDatas.xml b/org.argeo.slc/src/test/slc/conf/testDatas.xml
deleted file mode 100644 (file)
index b0e7eee..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">\r
-\r
-       <bean id="testData.nato"\r
-               class="org.argeo.slc.example.ExampleTestData" scope="prototype">\r
-               <property name="inputFile"\r
-                       value="${slc.workDir}/data/input/nato-in.txt" />\r
-               <property name="reachedFile"\r
-                       value="${slc.workDir}/data/reached/nato-reached.txt" />\r
-               <property name="expectedFile"\r
-                       value="${slc.workDir}/data/expected/nato-expected.txt" />\r
-       </bean>\r
-       \r
-       <bean id="testData.un"\r
-               class="org.argeo.slc.example.ExampleTestData" scope="prototype">\r
-               <property name="inputFile"\r
-                       value="${slc.workDir}/data/input/un-in.txt" />\r
-               <property name="reachedFile"\r
-                       value="${slc.workDir}/data/reached/un-reached.txt" />\r
-               <property name="expectedFile"\r
-                       value="${slc.workDir}/data/expected/un-expected.txt" />\r
-       </bean>\r
-       \r
-       <bean id="testData.un.bad"\r
-               class="org.argeo.slc.example.ExampleTestData" scope="prototype">\r
-               <property name="inputFile"\r
-                       value="${slc.workDir}/data/input/un-inXXX.txt" />\r
-               <property name="reachedFile"\r
-                       value="${slc.workDir}/data/reached/un-reachedXXX.txt" />\r
-               <property name="expectedFile"\r
-                       value="${slc.workDir}/data/expected/un-expectedXXX.txt" />\r
-       </bean>\r
-       \r
-       <bean id="testData.eu-reform"\r
-               class="org.argeo.slc.example.ExampleTestData" scope="prototype">\r
-               <property name="inputFile"\r
-                       value="${slc.workDir}/data/input/eu-reform-in.txt" />\r
-               <property name="reachedFile"\r
-                       value="${slc.workDir}/data/reached/eu-reform-reached.txt" />\r
-               <property name="expectedFile"\r
-                       value="${slc.workDir}/data/expected/eu-reform-expected.txt" />\r
-       </bean>\r
-</beans>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/conf/testDefinitions.xml b/org.argeo.slc/src/test/slc/conf/testDefinitions.xml
deleted file mode 100644 (file)
index 2522d28..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<beans xmlns="http://www.springframework.org/schema/beans"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">\r
-\r
-       <bean id="simpleExampleTestDef"\r
-               class="org.argeo.slc.example.SimpleExampleTestDef"\r
-               scope="prototype">\r
-       </bean>\r
-\r
-       <bean id="complexExampleTestDef"\r
-               class="org.argeo.slc.core.test.tree.CompositeTreeTestDefinition "\r
-               scope="prototype">\r
-               <property name="tasks">\r
-                       <list>\r
-                               <ref bean="dummyTask" />\r
-                               <bean class="org.argeo.slc.example.ExampleTask">\r
-                                       <property name="description"\r
-                                               value="Another task (nested)" />\r
-                               </bean>\r
-                               <bean\r
-                                       class="org.argeo.slc.example.SimpleExampleTestDef" />\r
-                       </list>\r
-               </property>\r
-       </bean>\r
-\r
-       <bean id="dummyTask" class="org.argeo.slc.example.ExampleTask">\r
-               <property name="description" value="A dummy task" />\r
-       </bean>\r
-\r
-</beans>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/root/Category1/SubCategory2/build.xml b/org.argeo.slc/src/test/slc/root/Category1/SubCategory2/build.xml
deleted file mode 100644 (file)
index b773212..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-<project default="test" name="testProject">\r
-       <description>A Test project</description>\r
-\r
-       <target name="test" depends="testSimple,testComplex,testError">\r
-               <slc.closeResult result="testResult" />\r
-               <slc.closeResult result="testResult2" />\r
-               <slc.report report="report" />\r
-       </target>\r
-\r
-       <target name="testSimple" description="Simple tests">\r
-               <slc.test description="NATO">\r
-                       <testDefinition bean="simpleExampleTestDef" />\r
-                       <testData bean="testData.nato" />\r
-               </slc.test>\r
-\r
-               <slc.test description="UN">\r
-                       <testDefinition bean="simpleExampleTestDef" />\r
-                       <testData bean="testData.un" />\r
-               </slc.test>\r
-\r
-               <slc.test description="EU-reform" testRun="otherTestRun">\r
-                       <testDefinition bean="simpleExampleTestDef" />\r
-                       <testData bean="testData.eu-reform" />\r
-               </slc.test>\r
-\r
-               <slc.test description="Distinct test">\r
-                       <testDefinition bean="simpleExampleTestDef" />\r
-                       <testData bean="testData.eu-reform" />\r
-                       <deployedSystem bean="exampleDeployedSystem2" />\r
-                       <testResult bean="testResult2" />\r
-               </slc.test>\r
-\r
-       </target>\r
-\r
-       <target name="testComplex" description="A complex test">\r
-               <slc.test description="Complex test">\r
-                       <testDefinition bean="complexExampleTestDef" />\r
-                       <testData bean="testData.un" />\r
-               </slc.test>\r
-               <slc.test description="Complex overridden">\r
-                       <testDefinition bean="complexExampleTestDef">\r
-                               <override name="tasks">\r
-                                       <list>\r
-                                               <override bean="dummyTask" />\r
-                                       </list>\r
-                               </override>\r
-                       </testDefinition>\r
-                       <testData bean="testData.un" />\r
-               </slc.test>\r
-       </target>\r
-\r
-       <target name="testError" description="A crashing test">\r
-               <slc.test description="UN crashing">\r
-                       <testDefinition bean="simpleExampleTestDef" />\r
-                       <testData bean="testData.un.bad" />\r
-               </slc.test>\r
-       </target>\r
-\r
-</project>
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/root/Category1/slcLocal.properties b/org.argeo.slc/src/test/slc/root/Category1/slcLocal.properties
deleted file mode 100644 (file)
index 2a5822f..0000000
+++ /dev/null
@@ -1 +0,0 @@
-slc.dirDescription=First Category
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/root/slcRoot.properties b/org.argeo.slc/src/test/slc/root/slcRoot.properties
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/org.argeo.slc/src/test/slc/work/data/expected/eu-reform-expected.txt b/org.argeo.slc/src/test/slc/work/data/expected/eu-reform-expected.txt
deleted file mode 100644 (file)
index 31df5ad..0000000
+++ /dev/null
@@ -1,1053 +0,0 @@
-OF THE REPRESENTATIVES OF THE GOVERNMENTS
-Brussels, 5 October 2007
-CIG 1/1/07
-NOTE
-Presidency of the IGC
-5 October 2007
-Intergovernmental Conference (IGC)
-IGC 2007
-DRAFT
-Articles 1 to 7 of the Reform Treaty
-The Presidency will submit this text to the Intergovernmental Conference (Foreign Ministers) meeting in Luxembourg on 15 October 2007, with a view to its final adoption at the Intergovernmental Conference (Heads of State or of Government) meeting in Lisbon on 18 October 2007.
-CIG 1/1/07 REV 1 1
-
-The Treaty on European Union shall be amended in accordance with the provisions of this Article.
-1) The preamble shall be amended as follows:
-"DRAWING INSPIRATION from the cultural, religious and humanist inheritance of Europe, from which have developed the universal values of the inviolable and inalienable rights of the human person, freedom, democracy, equality and the rule of law,";
-(c) In the twelfth recital, the words "of this Treaty" shall be replaced by "of this Treaty and of the Treaty on the Functioning of the European Union,".
-2) Article 1 shall be amended as follows:
-"on which the Member States confer competences to attain objectives they have in common.";
-"The Union shall be founded on the present Treaty and on the Treaty on the Functioning of the European Union (hereinafter referred to as "the Treaties"). Those two Treaties shall have the same legal value. The Union shall replace and succeed the European Community.".
-EN
-"Article 2
-4) Article 2, renumbered 3, shall be replaced by the following:
-1. The Union's aim is to promote peace, its values and the well-being of its peoples.
-3. The Union shall establish an internal market. It shall work for the sustainable development of Europe based on balanced economic growth and price stability, a highly competitive social market economy, aiming at full employment and social progress, and a high level of protection and improvement of the quality of the environment. It shall promote scientific and technological advance.
-It shall promote economic, social and territorial cohesion, and solidarity among Member States.
-4. The Union shall establish an economic and monetary union whose currency is the euro.
-EN
-6. The Union shall pursue its objectives by appropriate means commensurate with the competences which are conferred upon it in the Treaties.".
-"Article 4
-2. The Union shall respect the equality of Member States before the Treaties as well as their national identities, inherent in their fundamental structures, political and constitutional, inclusive of regional and local self-government. It shall respect their essential State functions, including ensuring the territorial integrity of the State, maintaining law and order and safeguarding national security. In particular, national security remains the sole responsibility of each Member State.
-The Member States shall take any appropriate measure, general or particular, to ensure fulfilment of the obligations arising out of the Treaties or resulting from the acts of the institutions of the Union.
-CIG 1/1/07 REV 1 5
-6) Article 4, renumbered 5, shall be replaced by the following:
-1. The limits of Union competences are governed by the principle of conferral. The use of Union competences is governed by the principles of subsidiarity and proportionality.
-3. Under the principle of subsidiarity, in areas which do not fall within its exclusive competence, the Union shall act only if and insofar as the objectives of the proposed action cannot be sufficiently achieved by the Member States, either at central level or at regional and local level, but can rather, by reason of the scale or effects of the proposed action, be better achieved at Union level.
-4. Under the principle of proportionality, the content and form of Union action shall not exceed what is necessary to achieve the objectives of the Treaties.
-7) Article 5 shall be repealed.
-"Article 6
-The provisions of the Charter shall not extend in any way the competences of the Union as defined in the Treaties.
-EN
-2. The Union shall accede to the European Convention for the Protection of Human Rights and Fundamental Freedoms. Such accession shall not affect the Union's competences as defined in the Treaties.
-9) Article 7 shall be amended as follows:
-(b) at the end of the first sentence of the first subparagraph of paragraph 1, the words "and address appropriate recommendations to that State" shall be deleted; at the end of the last sentence, the words "and, acting in accordance with the same procedure, may call on independent persons to submit within a reasonable time limit a report on the situation in the Member State in question" shall be replaced by "and may address recommendations to it, acting in accordance with the same procedure.";
-(d) paragraphs 5 and 6 shall be replaced by the following:
-CIG 1/1/07 REV 1 7
-10) The following new Article 7a shall be inserted:
-1. The Union shall develop a special relationship with neighbouring countries, aiming to establish an area of prosperity and good neighbourliness, founded on the values of the Union and characterised by close and peaceful relations based on cooperation.
-11) The provisions of Title II of the EU Treaty shall be incorporated into the Treaty establishing the European Community, as amended elsewhere, which shall become the Treaty on the Functioning of the European Union.
-12) Title II and Article 8 shall be replaced by the following new heading and new articles:
-Article 8
-Article 8a
-2. Citizens are directly represented at Union level in the European Parliament.
-EN
-3. Every citizen shall have the right to participate in the democratic life of the Union. Decisions shall be taken as openly and as closely as possible to the citizen.
-Article 8b
-2. The institutions shall maintain an open, transparent and regular dialogue with representative associations and civil society.
-4. Not less than one million citizens who are nationals of a significant number of Member States may take the initiative of inviting the Commission, within the framework of its powers, to submit any appropriate proposal on matters where citizens consider that a legal act of the Union is required for the purpose of implementing the Treaties.
-Article 8c
-(a) through being informed by the institutions of the Union and having draft European legislative acts forwarded to them in accordance with the Protocol on the role of national Parliaments in the European Union;
-CIG 1/1/07 REV 1 9
-(c) by taking part, within the framework of the area of freedom, security and justice, in the evaluation mechanisms for the implementation of the Union policies in that area, in accordance with Article 64 of the Treaty on the Functioning of the European Union, and through being involved in the political monitoring of Europol and the evaluation of Eurojust's activities in accordance with Articles 69k and 69h of that Treaty;
-(e) by being notified of applications for accession to the Union, in accordance with Article 34 of this Treaty;
-Institutions
-"TITLE III PROVISIONS ON THE INSTITUTIONS".
-"Article 9
-The Union's institutions shall be:
-- the European Council,
-- the European Commission (hereinafter referred to as the "Commission"),
-- the European Central Bank,
-CIG 1/1/07 REV 1 10
-2. Each institution shall act within the limits of the powers conferred on it in the Treaties, and in conformity with the procedures, conditions and objectives set out in them. The institutions shall practice mutual sincere cooperation.
-4. The European Parliament, the Council and the Commission shall be assisted by an Economic and Social Committee and a Committee of the Regions acting in an advisory capacity.".
-"Article 9a
-2. The European Parliament shall be composed of representatives of the Union's citizens. They shall not exceed seven hundred and fifty in number. Representation of citizens shall be degressively proportional, with a minimum threshold of six members per Member State. No Member State shall be allocated more than ninety-six seats.
-3. The members of the European Parliament shall be elected for a term of five years by direct universal suffrage in a free and secret ballot.
-16) An Article 9b shall be inserted:
-1. The European Council shall provide the Union with the necessary impetus for its development and shall define the general political directions and priorities thereof. It shall not exercise legislative functions.
-EN
-3. The European Council shall meet twice every six months, convened by its President. When the agenda so requires, the members of the European Council may decide each to be assisted by a minister and, in the case of the President of the Commission, by a member of the Commission. When the situation so requires, the President shall convene a special meeting of the European Council.
-5. The European Council shall elect its President, by a qualified majority, for a term of two and a half years, renewable once. In the event of an impediment or serious misconduct, the European Council can end his or her term of office in accordance with the same procedure.
-(a) shall chair it and drive forward its work;
-(c) shall endeavour to facilitate cohesion and consensus within the European Council;
-The President of the European Council shall, at his or her level and in that capacity, ensure the external representation of the Union on issues concerning its common foreign and security policy, without prejudice to the powers of the High Representative of the Union for Foreign Affairs and Security Policy.
-17) An Article 9c shall be inserted:
-1. The Council shall, jointly with the European Parliament, exercise legislative and budgetary functions. It shall carry out policy-making and coordinating functions as laid down in the Treaties.
-EN
-3. The Council shall act by a qualified majority except where the Treaties provide otherwise.
-A blocking minority must include at least four Council members, failing which the qualified majority shall be deemed attained.
-5. The transitional provisions relating to the definition of the qualified majority which shall be applicable until 31 October 2014 and those which shall be applicable from 1 November 2014 to 31 March 2017 are laid down in the Protocol on transitional provisions.
-The General Affairs Council shall ensure consistency in the work of the different Council configurations. It shall prepare and ensure the follow-up to meetings of the European Council, in liaison with the President of the European Council and the Commission.
-7. A Committee of Permanent Representatives of the Governments of the Member States shall be responsible for preparing the work of the Council.
-9. The Presidency of Council configurations, other than that of Foreign Affairs, shall be held by Member State representatives in the Council on the basis of equal rotation, in accordance with the conditions established in accordance with Article 201b(b), of the Treaty on the Functioning of the European Union."
-EN
-"Article 9d
-2. Union legislative acts may be adopted only on the basis of a Commission proposal, except where the Treaties provide otherwise. Other acts shall be adopted on the basis of a Commission proposal where the Treaties so provide.
-The members of the Commission shall be chosen on the ground of their general competence and European commitment from persons whose independence is beyond doubt.
-4. The Commission appointed between the date of entry into force of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community and 31 October 2014 shall consist of one national of each Member State, including its President and the High Representative of the Union for Foreign Affairs and Security Policy who shall be one of its Vice-Presidents.
-The members of the Commission shall be chosen from among the nationals of the Member States on the basis of a system of strictly equal rotation between the Member States, reflecting the demographic and geographical range of all the Member States. This system shall be established unanimously by the European Council in accordance with Article 211 of the Treaty on the Functioning of the European Union.
-EN
-(a) lay down guidelines within which the Commission is to work;
-(c) appoint Vice-Presidents, other than the High Representative of the Union for Foreign Affairs and Security Policy, from among the members of the Commission.
-7. Taking into account the elections to the European Parliament and after having held the appropriate consultations, the European Council, acting by a qualified majority, shall propose to the European Parliament a candidate for President of the Commission. This candidate shall be elected by the European Parliament by a majority of its component members. If he or she does not obtain the required majority, the European Council, acting by a qualified majority, shall within one month propose a new candidate who shall be elected by the European Parliament following the same procedure.
-The President, the High Representative of the Union for Foreign Affairs and Security Policy and the other members of the Commission shall be subject as a body to a vote of consent by the European Parliament. On the basis of this consent the Commission shall be appointed by the European Council, acting by a qualified majority.
-CIG 1/1/07 REV 1 15
-19) The following new Article 9e shall be inserted:
-1. The European Council, acting by a qualified majority, with the agreement of the President of the Commission, shall appoint the High Representative of the Union for Foreign Affairs and Security Policy. The European Council may end his or her term of office by the same procedure.
-3. The High Representative shall preside over the Foreign Affairs Council.
-20) An Article 9f shall be inserted:
-1. The Court of Justice of the European Union shall include the Court of Justice, the General Court and specialised courts. It shall ensure that in the interpretation and application of the Treaties the law is observed.
-2. The Court of Justice shall consist of one judge from each Member State. It shall be assisted by Advocates-General.
-CIG 1/1/07 REV 1 16
-The judges and the Advocates-General of the Court of Justice and the judges of the General Court shall be chosen from persons whose independence is beyond doubt and who satisfy the conditions set out in Articles 223 and 224 of the Treaty on the Functioning of the European Union. They shall be appointed by common accord of the governments of the Member States for six years. Retiring judges and Advocates-General may be reappointed.
-(a) rule on actions brought by a Member State, an institution or a natural or legal person;
-(c) rule in other cases provided for in the Treaties.".
-Enhanced cooperation
-"Article 10
-Enhanced cooperation shall aim to further the objectives of the Union, protect its interests and reinforce its integration process. Such cooperation shall be open at any time to all Member States, in accordance with Article 280c of the Treaty on the Functioning of the European Union.
-EN
-3. All members of the Council may participate in its deliberations, but only members of the Council representing the Member States participating in enhanced cooperation shall take part in the vote. The voting rules are set out in Article 280e of the Treaty on the Functioning of the European Union.
-23) Title V of the EU Treaty shall be renamed as follows: "GENERAL PROVISIONS ON THE UNION'S EXTERNAL ACTION AND SPECIFIC PROVISIONS ON THE COMMON FOREIGN AND SECURITY POLICY".
-24) The following new chapter shall be inserted:
-Article 10a
-The Union shall seek to develop relations and build partnerships with third countries, and international, regional or global organisations which share the principles referred to in the first subparagraph. It shall promote multilateral solutions to common problems, in particular in the framework of the United Nations.
-EN
-(a) safeguard its values, fundamental interests, security, independence and integrity;
-(c) preserve peace, prevent conflicts and strengthen international security, in accordance with the purposes and principles of the United Nations Charter, with the principles of the Helsinki Final Act and with the aims of the Charter of Paris, including those relating to external borders;
-(e) encourage the integration of all countries into the world economy, including through the progressive abolition of restrictions on international trade;
-(g) assist populations, countries and regions confronting natural or man-made disasters; and
-3. The Union shall respect the principles and pursue the objectives set out in paragraphs 1 and 2 in the development and implementation of the different areas of the Union's external action covered by this Title and Part Five of the Treaty on the Functioning of the European Union, and of the external aspects of its other policies.
-CIG 1/1/07 REV 1 19
-Article 10b
-Decisions of the European Council on the strategic interests and objectives of the Union shall relate to the common foreign and security policy and to other areas of the external action of the Union. Such decisions may concern the relations of the Union with a specific country or region or may be thematic in approach. They shall define their duration, and the means to be made available by the Union and the Member States.
-2. The High Representative of the Union for Foreign Affairs and Security Policy, for the area of common foreign and security policy, and the Commission, for other areas of external action, may submit joint proposals to the Council.".
-25) The following headings shall be inserted:
-SECTION 1 COMMON PROVISIONS".
-"Article 10c
-CIG 1/1/07 REV 1 20
-27) Article 11 shall be amended as follows:
-"1. The Union's competence in matters of common foreign and security policy shall cover all areas of foreign policy and all questions relating to the Union's security, including the progressive framing of a common defence policy that might lead to a common defence.
-2. Within the framework of the principles and objectives of its external action, the Union shall conduct, define and implement a common foreign and security policy, based on the development of mutual political solidarity among Member States, the identification of questions of general interest and the achievement of an ever-increasing degree of convergence of Member States' actions.";
-(i) The following words shall be added at the end of the first subparagraph:
-(ii) the third subparagraph shall be replaced by "The Council and the High Representative shall ensure that these principles are complied with.".
-"The Union shall conduct the common foreign and security policy by:
-CIG 1/1/07 REV 1 21
-(b) adopting decisions defining:
-(ii) positions to be taken by the Union;
-(c) strengthening systematic cooperation between Member States in the conduct of policy.".
-(a) in paragraph 1, the words "define the principles of and general guidelines for" shall be replaced by "shall identify the Union's strategic interests, determine the objectives of and define general guidelines for" and the following sentence shall be added: "It shall adopt the necessary decisions.". The following subparagraph shall be inserted:
-(b) paragraph 2 shall be deleted and paragraph 3 shall be renumbered 2. The first subparagraph shall be replaced by the following: "The Council shall frame the common foreign and security policy and take the decisions necessary for defining and implementing it on the basis of the general guidelines and strategic lines defined by the European Council." The second subparagraph shall be deleted. In the third subparagraph, which shall become the second, the words "shall ensure" shall be replaced by "and the High Representative of the Union for Foreign Affairs and Security Policy shall ensure";
-"3. The common foreign and security policy shall be put into effect by the High Representative and by the Member States, using national and Union resources.
-"Article 13a
-CIG 1/1/07 REV 1 22
-2. The High Representative shall represent the Union for matters relating to the common foreign and security policy. He or she shall conduct political dialogue with third parties on the Union's behalf and shall express the Union's position in international organisations and at international conferences.
-31) Article 14 shall be amended as follows:
-(b) in paragraph 2, first sentence, the words "to joint action," shall be replaced by "to a decision as referred to in paragraph 1," and the words "that action" shall be replaced by "that decision". The last sentence shall be deleted;
-(d) paragraph 4 shall be deleted and the remaining paragraphs shall be renumbered accordingly;
-(f) in the first sentence of paragraph 6, renumbered 5, the words "failing a Council decision," shall be replaced by "failing a review of the Council decision as referred to in paragraph 1," and the words "of the joint action" shall be replaced by "of that decision";
-CIG 1/1/07 REV 1 23
-32) At the beginning of Article 15, the words "The Council shall adopt common positions. Common positions shall define" shall be replaced by "The Council shall adopt decisions which shall define" and at the end of the Article the words "common positions" shall be replaced by "Union positions".
-(a) in paragraph 1, the words "Any Member State or the Commission may refer to the Council any question relating to the common foreign and security policy" shall be replaced by "Any Member State, the High Representative of the Union for Foreign Affairs and Security Policy, or the High Representative with the Commission's support, may refer any question relating to the common foreign and security policy to the Council" and the words "submit proposals to the Council" shall be replaced by "submit to it initiatives or proposals as appropriate";
-34) The text of Article 17 shall become Article 27, with the amendments set out in point 48 below. The text of Article 23, with the following amendments, shall become Article 17:
-(b) paragraph 2 shall be amended as follows:
-"- when adopting a decision defining a Union action or position on the basis of a decision of the European Council relating to the Union's strategic interests and objectives, as referred to in Article 10b(1),
-CIG 1/1/07 REV 1 24
-(ii) in the second indent, which shall become the third indent, the words "a joint action or a common position," shall be replaced by "a decision defining a Union action or position,";
-(iv) the third subparagraph shall be replaced by the following new paragraph 3, the last subparagraph shall become paragraph 4 and paragraph 3 shall be renumbered 5:
-(c) in the paragraph now numbered 4, the words "This paragraph shall not apply" shall be replaced by "Paragraphs 2 and 3 shall not apply".
-(a) the words "inform and" shall be deleted, the words "within the Council" shall be replaced by "within the European Council and the Council" and the words "in order to ensure that the Union's influence is exerted as effectively as possible by means of concerted and convergent action" shall be replaced by "in order to determine a common approach";
-(c) the following two paragraphs shall be inserted:
-The diplomatic missions of the Member States and the Union delegations in third countries and at international organisations shall cooperate and shall contribute to formulating and implementing the common approach.".
-EN
-(a) paragraphs 1 to 4 shall be deleted;
-37) Article 19 shall be amended as follows:
-(b) paragraph 2 shall be amended as follows:
-(ii) in the second subparagraph, first sentence, the words "and the High Representative" shall be inserted after "the other Member States"; in the second sentence, the word "permanent" shall be deleted and the words "ensure the defence of the positions" shall be replaced by "defend the positions";
-"When the Union has defined a position on a subject which is on the United Nations Security Council agenda, those Member States which sit on the Security Council shall request that the High Representative be asked to present the Union's position.".
-(a) in the first paragraph, the words "Commission delegations" shall be replaced by "Union delegations" and the words "the common positions and joint actions adopted by the Council" shall be replaced by "decisions defining Union positions and actions adopted pursuant to this Chapter";
-EN
-(c) the following new paragraph shall be inserted:
-39) Article 21 shall be amended as follows:
-"The High Representative of the Union for Foreign Affairs and Security Policy shall regularly consult the European Parliament on the main aspects and the basic choices of the common foreign and security policy and the common security and defence policy and inform it of how those policies evolve. He or she shall ensure that the views of the European Parliament are duly taken into consideration. Special representatives may be involved in briefing the European Parliament.";
-40) The text of Article 22 shall become Article 16; it shall be amended as set out above in point 33.
-42) Article 24, renumbered 22, shall be replaced by the following:
-CIG 1/1/07 REV 1 27
-43) Article 25, renumbered 23, shall be amended as follows:
-(b) the text of the second paragraph shall be replaced by the following: "Within the scope of this Chapter, the Political and Security Committee shall exercise, under the responsibility of the Council and of the High Representative, the political control and strategic direction of the crisis management operations referred to in Article 28.";
-44) Articles 26 and 27, renumbered 24 and 25, shall be replaced by the following two articles, with Article 25 replacing Article 47:
-In accordance with Article 15a of the Treaty on the Functioning of the European Union and by way of derogation from paragraph 2 thereof, the Council shall adopt a decision laying down the rules relating to the protection of individuals with regard to the processing of personal data by the Member States when carrying out activities which fall within the scope of this Chapter, and the rules relating to the free movement of such data. Compliance with these rules shall be subject to the control of independent authorities.
-The implementation of the common foreign and security policy shall not affect the application of the procedures and the extent of the powers of the institutions laid down by the Treaties for the exercise of the Union competences referred to in Articles 3 to 6 of the Treaty on the Functioning of the European Union.
-45) Articles 27a to 27e, on enhanced cooperation, shall be replaced by Article 10 in accordance with point 22 above.
-EN
-(a) paragraph 1 shall be deleted and the remaining paragraphs shall be renumbered accordingly; throughout the Article the words "budget of the European Communities" shall be replaced by "Union budget";
-(c) in paragraph 3, renumbered 2, the words "the implementation of those provisions" in the first subparagraph shall be replaced by "the implementation of this Chapter" and in the second subparagraph the reference to Article 23 shall be replaced by a reference to Article 17;
-"3. The Council shall adopt a decision establishing the specific procedures for guaranteeing rapid access to appropriations in the Union budget for urgent financing of initiatives in the framework of the common foreign and security policy, and in particular for preparatory activities for the tasks referred to in Article 27(1) and Article 28. It shall act after consulting the European Parliament.
-The Council shall adopt by a qualified majority, on a proposal from the High Representative of the Union for Foreign Affairs and Security Policy, decisions establishing:
-(b) the procedures for administering the start-up fund;
-When the task planned in accordance with Article 27(1) and Article 28 cannot be charged to the Union budget, the Council shall authorise the High Representative to use the fund. The High Representative shall report to the Council on the implementation of this remit.".
-EN
-47) The following new section shall be inserted:
-48) Article 27 shall take over the wording of Article 17, with the following amendments:
-"1. The common security and defence policy shall be an integral part of the common foreign and security policy. It shall provide the Union with an operational capacity drawing on civil and military assets. The Union may use them on missions outside the Union for peace-keeping, conflict prevention and strengthening international security in accordance with the principles of the United Nations Charter. The performance of these tasks shall be undertaken using capabilities provided by the Member States.";
-(i) the first subparagraph shall be replaced by the following:
-(ii) in the second subparagraph, the words "in accordance with this Article" shall be replaced by "in accordance with this Section";
-(c) paragraph 2, renumbered 3, to paragraph 5 shall be replaced by the following paragraphs:
-CIG 1/1/07 REV 1 30
-Member States shall undertake progressively to improve their military capabilities. The Agency in the field of defence capabilities development, research, acquisition and armaments (European Defence Agency) shall identify operational requirements, shall promote measures to satisfy those requirements, shall contribute to identifying and, where appropriate, implementing any measure needed to strengthen the industrial and technological base of the defence sector, shall participate in defining a European capabilities and armaments policy, and shall assist the Council in evaluating the improvement of military capabilities.
-5. The Council may entrust the execution of a task, within the Union framework, to a group of Member States in order to protect the Union's values and serve its interests. The execution of such a task shall be governed by Article 29.
-7. If a Member State is the victim of armed aggression on its territory, the other Member States shall have towards it an obligation of aid and assistance by all the means in their power, in accordance with Article 51 of the United Nations Charter. This shall not prejudice the specific character of the security and defence policy of certain Member States.
-CIG 1/1/07 REV 1 31
-49) The following new Articles 28 to 31 shall be inserted:
-1. The tasks referred to in Article 27(1), in the course of which the Union may use civilian and military means, shall include joint disarmament operations, humanitarian and rescue tasks, military advice and assistance tasks, conflict prevention and peace-keeping tasks, tasks of combat forces in crisis management, including peace-making and post-conflict stabilisation. All these tasks may contribute to the fight against terrorism, including by supporting third countries in combating terrorism in their territories.
-Article 29
-2. Member States participating in the task shall keep the Council regularly informed of its progress on their own initiative or at the request of another Member State. Those States shall inform the Council immediately should the completion of the task entail major consequences or require amendment of the objective, scope and conditions determined for the task in the decisions referred to in paragraph 1. In such cases, the Council shall adopt the necessary decisions.
-1. The European Defence Agency referred to in Article 27(3), subject to the authority of the Council, shall have as its task to:
-CIG 1/1/07 REV 1 32
-(b) promote harmonisation of operational needs and adoption of effective, compatible procurement methods;
-(d) support defence technology research, and coordinate and plan joint research activities and the study of technical solutions meeting future operational needs;
-2. The European Defence Agency shall be open to all Member States wishing to be part of it. The Council, acting by a qualified majority, shall adopt a decision defining the Agency's statute, seat and operational rules. That decision should take account of the level of effective participation in the Agency's activities. Specific groups shall be set up within the Agency bringing together Member States engaged in joint projects. The Agency shall carry out its tasks in liaison with the Commission where necessary.
-1. Those Member States which wish to participate in the permanent structured cooperation referred to in Article 27(6), which fulfil the criteria and have made the commitments on military capabilities set out in the Protocol on permanent structured cooperation, shall notify their intention to the Council and to the High Representative of the Union for Foreign Affairs and Security Policy.
-3. Any Member State which, at a later stage, wishes to participate in the permanent structured cooperation shall notify its intention to the Council and to the High Representative.
-EN
-A qualified majority shall be defined in accordance with Article 205(3)(a) of the Treaty on the Functioning of the European Union.
-The Council shall act by a qualified majority. Only members of the Council representing the participating Member States, with the exception of the Member State in question, shall take part in the vote.
-5. Any participating Member State which wishes to withdraw from permanent structured cooperation shall notify its intention to the Council, which shall take note that the Member State in question has ceased to participate.
-50) Articles 29 to 39 of Title VI of the EU Treaty, which relate to judicial cooperation in criminal matters and to police cooperation, shall be replaced by Articles 61 to 68 and 69e to 69l of the Treaty on the Functioning of the European Union; they shall be amended as set out in Article 2, points 64, 67 and 68, of this Treaty. The heading of the Title shall be deleted and its number shall become the number of the Title on final provisions.
-52) Articles 41 and 42 of the EU Treaty shall be repealed.
-EN
-53) Title VIII, on final provisions, shall be renumbered VI; this Title and Articles 48, 49, 51, 52 and 53 shall be amended as set out respectively in points 55, 56, 60, 61 and 62 below. Article 47 shall be replaced by Article 25, as indicated above in point 44, and Articles 46 and 50 shall be repealed.
-"Article 32
-55) An Article 33 shall be inserted to replace Article 48:
-1. The Treaties may be amended in accordance with an ordinary revision procedure. They may also be amended in accordance with simplified revision procedures.
-2. The government of any Member State, the European Parliament or the Commission may submit to the Council proposals for the amendment of the Treaties. These proposals may, inter alia, serve either to increase or to reduce the competences conferred on the Union in the Treaties. These proposals shall be submitted to the European Council by the Council and the national Parliaments shall be notified.
-CIG 1/1/07 REV 1 35
-The European Council may decide by a simple majority, after obtaining the consent of the European Parliament, not to convene a Convention should this not be justified by the extent of the proposed amendments. In the latter case, the European Council shall define the terms of reference for a conference of representatives of the governments of the Member States.
-The amendments shall enter into force after being ratified by all the Member States in accordance with their respective constitutional requirements.
-Simplified revision procedures
-The European Council may adopt a decision amending all or part of the provisions of Part Three of the Treaty on the Functioning of the European Union. The European Council shall act by unanimity after consulting the European Parliament and the Commission, and the European Central Bank in the case of institutional changes in the monetary area. That decision shall not enter into force until it is approved by the Member States in accordance with their respective constitutional requirements.
-7. Where the Treaty on the Functioning of the European Union or Title V of this Treaty provides for the Council to act by unanimity in a given area or case, the European Council may adopt a decision authorising the Council to act by a qualified majority in that area or in that case. This subparagraph shall not apply to decisions with military implications or those in the area of defence.
-CIG 1/1/07 REV 1 36
-Any initiative taken by the European Council on the basis of the first or the second subparagraph shall be notified to the national Parliaments. If a national Parliament makes known its opposition within six months of the date of such notification, the decision referred to in the first or the second subparagraph shall not be adopted. In the absence of opposition, the European Council may adopt the decision.
-56) An Article 34 shall be inserted, with the wording of Article 49; the first paragraph shall be amended as follows:
-(b) in the second sentence, the words "It shall address its application to the Council, which shall act unanimously" shall be replaced by "The European Parliament and national Parliaments shall be notified of this application. The applicant State shall address its application to the Council, which shall act unanimously"; the word "assent" shall be replaced by "consent" and the words "an absolute majority" shall be replaced by "a majority";
-57) The following new Article 35 shall be inserted:
-1. Any Member State may decide to withdraw from the Union in accordance with its own constitutional requirements.
-CIG 1/1/07 REV 1 37
-3. The Treaties shall cease to apply to the State in question from the date of entry into force of the withdrawal agreement or, failing that, two years after the notification referred to in paragraph 2, unless the European Council, in agreement with the Member State concerned, unanimously decides to extend this period.
-A qualified majority shall be defined in accordance with Article 205(3)(b) of the Treaty on the Functioning of the European Union.
-58) An Article 36 shall be inserted:
-The Protocols and Annexes to the Treaties shall form an integral part thereof.".
-"Article 37
-2. The territorial scope of the Treaties is specified in Article 311 of the Treaty on the Functioning of the European Union.".
-EN
-61) An Article 39 shall be inserted, with the wording of Article 52.
-(a) the first paragraph shall be numbered 1, the languages listed in the second paragraph of the current Article 53 of the Treaty on European Union shall be added to the list in this paragraph and the second paragraph shall be deleted;
-"2. This Treaty may also be translated into any other languages as determined by Member States among those which, in accordance with their constitutional order, enjoy official status in all or part of their territory. A certified copy of such translations shall be provided by the Member States concerned to be deposited in the archives of the Council.".
-EN
-Article 2
-2) The title of the Treaty shall be replaced by "Treaty on the Functioning of the European Union".
-3) Throughout the Treaty:
-(b) the words "this Treaty" and "the present Treaty" shall be replaced by "the Treaties" and the verb, where applicable, shall be put in the plural; this point shall not apply to Articles 312 and 313;
-(d) the words "acting by a qualified majority" and "by a qualified majority" shall be deleted;
-(f) the words "institutions or bodies" and "institutions and bodies" shall be replaced by "institutions, bodies, offices or agencies", except in the first paragraph of Article 193;
-(h) the word "ecu" shall be replaced by "euro";
-CIG 1/1/07 REV 1 41
-(j) the abbreviation "ECB" shall be replaced by "European Central Bank";
-(l) The words "Committee provided for in Article 114" and "Committee referred to in Article 114" shall be replaced by "Economic and Financial Committee";
-(n) the words " Court of First Instance" shall be replaced by "General Court";
-4) In the following Articles, the words "on a proposal from the Commission" shall be replaced by "in accordance with a special legislative procedure":
-- Article 19(1)
-- Article 22, second paragraph
-- Article 95
-- Article 166(4)
-5) In the following Articles, the words "acting by a simple majority" shall be inserted after "the Council":
-- Article 144, first paragraph
-- Article 209
-- Article 216
-6) In the following Articles, the words "consulting the European Parliament" shall be replaced by "obtaining the consent of the European Parliament":
-- Article 22, second paragraph.
-EN
-- Article 195(1), second subparagraph
-- Article 233, first paragraph:
-- Article 255(3) which shall become Article 15(3), third subparagraph.
-- Article 83(2)(d)
-- Article 94(9)
-- Article 225a, sixth paragraph
-- Article 227, first paragraph
-- Article 229
-- Article 230, first, second and third paragraphs
-- Article 232, first paragraph
-- Article 234, first, second and third paragraphs
-- Article 236
-- Article 238
-- Article 242
-- Article 244
-- Article 256, second paragraph and fourth paragraph.
-- Article 21, fourth paragraph reference to Article 9 (first reference) and Article 40(1) (second reference)
-- Article 98 reference to Article 3 (first reference)
-- Article 125 reference to Article 3
-CIG 1/1/07 REV 1 43
-B. SPECIFIC AMENDMENTS
-10) In the second recital, the word "countries" shall be replaced by "States" and in the last recital, the words "HAVE DECIDED to create a EUROPEAN COMMUNITY and to this end have designated \85" shall be replaced by "and to this end HAVE DESIGNATED \85".
-11) Article 1 shall be replaced by the following:
-1. This Treaty organises the functioning of the Union and determines the areas, delimitation of, and arrangements for exercising its competences.
-12) Article 3(1) shall be repealed. Paragraph 2 thereof shall become Article 8; it shall be amended as set out below in point 21.
-14) The text of Article 12 shall become Article 17.
-CIG 1/1/07 REV 1 44
-16) The text of Article 14 shall become Article 22a. It shall be amended as set out below in point 41.
-18) The text of Article 16 shall become Article 14. It shall be amended as set out in point 27.
-19) Articles 2 to 6 shall be replaced by the following new Title and new Articles:
-Article 2
-2. When the Treaties confer on the Union a competence shared with the Member States in a specific area, the Union and the Member States may legislate and adopt legally binding acts in that area. The Member States shall exercise their competence to the extent that the Union has not exercised its competence. The Member States shall again exercise their competence to the extent that the Union has decided to cease exercising its competence.
-4. The Union shall have competence, in accordance with the provisions of the Treaty on European Union, to define and implement a common foreign and security policy, including the progressive framing of a common defence policy.
-CIG 1/1/07 REV 1 45
-Legally binding acts of the Union adopted on the basis of the provisions of the Treaties relating to these areas shall not entail harmonisation of Member States' laws or regulations.
-Article 3
-(a) customs union;
-(c) monetary policy for the Member States whose currency is the euro;
-(e) common commercial policy.
-Article 4
-2. Shared competence between the Union and the Member States applies in the following principal areas:
-(b) social policy, for the aspects defined in this Treaty;
-(d) agriculture and fisheries, excluding the conservation of marine biological resources;
-(f) consumer protection;
-CIG 1/1/07 REV 1 46
-(h) trans-European networks;
-(j) area of freedom, security and justice;
-3. In the areas of research, technological development and space, the Union shall have competence to carry out activities, in particular to define and implement programmes; however, the exercise of that competence shall not result in Member States being prevented from exercising theirs.
-Article 5
-Specific provisions shall apply to those Member States whose currency is the euro.
-3. The Union may take initiatives to ensure coordination of Member States' social policies.
-The Union shall have competence to carry out actions to support, coordinate or supplement the actions of the Member States. The areas of such action shall, at European level, be:
-(b) industry;
-(d) tourism; CIG 1/1/07 REV 1 47
-(e) education, vocational training, youth and sport;
-(g) administrative cooperation.".
-20) Article 7 shall be replaced by the following title and article:
-Article 7
-21) Article 8 shall be replaced by the wording of Article 3(2). The words "the activities referred to in this Article," shall be replaced by "its activities, ".
-"In defining and implementing its policies and actions, the Union shall take into account requirements linked to the promotion of a high level of employment, the guarantee of adequate social protection, the fight against social exclusion, and a high level of education, training and protection of human health.".
-"In defining and implementing its policies and activities, the Union shall aim to combat discrimination based on sex, racial or ethnic origin, religion or belief, disability, age or sexual orientation.".
-CIG 1/1/07 REV 1 48
-25) Article 12 shall be replaced by the wording of Article 153(2).
-27) Article 14 shall be replaced by the wording of Article 16; it shall be amended as follows:
-(b) at the end of the first sentence, the words "and conditions which enable them to fulfil their missions" shall be replaced by "and conditions, particularly economic and financial conditions, which enable them to fulfil their missions.";
-"The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish these principles and set these conditions without prejudice to the competence of Member States, in compliance with the Treaties, to provide, to commission and to fund such services.".
-(a) paragraph 1 shall be preceded by the following text, paragraph 1 being renumbered 3 and paragraphs 2 and 3 becoming subparagraphs:
-2. The European Parliament shall meet in public, as shall the Council when considering and voting on a draft legislative act.";
-CIG 1/1/07 REV 1 49
-(c) in paragraph 2, which shall become the second subparagraph of paragraph 3, the words "by means of regulations" shall be inserted after "shall be determined by the Council" and the words "within two years of the entry into force of the Treaty of Amsterdam" shall be deleted;
-"The Court of Justice of the European Union, the European Central Bank and the European Investment Bank shall be subject to this paragraph only when exercising their administrative tasks.
-29) An Article 15a shall be inserted:
-1. Everyone has the right to the protection of personal data concerning him or her.
-The rules adopted on the basis of this Article shall be without prejudice to the specific rules laid down in Article 24 of the Treaty on European Union.".
-" Article 15b
-EN
-3. Recognising their identity and their specific contribution, the Union shall maintain an open, transparent and regular dialogue with these churches and organisations.".
-31) The heading of Part Two shall be replaced by the following heading: "NON-DISCRIMINATION AND CITIZENSHIP OF THE UNION".
-33) An Article 17a shall be inserted, with the wording of Article 13; in paragraph 2, the words "when the Council adopts" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may adopt the basic principles" and the words at the end of the paragraph "it shall act in accordance with the procedure referred to in Article 251" shall be deleted.
-(a) in paragraph 1, the word "complement" shall be replaced by "be additional to";
-"2. Citizens of the Union shall enjoy the rights and be subject to the duties provided for in the Treaties. They shall have, inter alia:
-(b) the right to vote and to stand as candidates in elections to the European Parliament and in municipal elections in their Member State of residence, under the same conditions as nationals of that State;
-CIG 1/1/07 REV 1 51
-(d) the right to petition the European Parliament, to apply to the European Ombudsman, and to address the institutions and advisory bodies of the Union in any of the Treaty languages and to obtain a reply in the same language.
-35) Article 18 shall be amended as follows:
-(b) paragraph 3 shall be replaced by the following:
-36) In Article 20, the words "establish the necessary rules among themselves and" shall be replaced by "adopt the necessary provisions and". The following new paragraph shall be added:
-37) In Article 21, the following new first paragraph shall be inserted:
-CIG 1/1/07 REV 1 52
-38) In Article 22, second paragraph, the words "the rights laid down in this Part, which it shall recommend to the Member States for adoption in accordance with their respective constitutional requirements" shall be replaced by "the rights listed in Article 17b(2). These provisions shall enter into force after their approval by the Member States in accordance with their respective constitutional requirements.".
-Internal market
-41) An Article 22a shall be inserted, with the wording of Article 14. Paragraph 1 shall be replaced by the following:
-42) An Article 22b shall be inserted, with the wording of Article 15. In the first paragraph, the words "during the period of establishment" shall be replaced by "for the establishment".
-44) In Article 23(1), the words "shall be based upon" shall be replaced by "shall comprise".
-CIG 1/1/07 REV 1 53
-Agriculture and fisheries
-47) Article 32 shall be amended as follows:
-In the second subparagraph, the word ", fisheries" shall be inserted after "agriculture" in the first sentence and the following sentence shall be added as the last sentence of the subparagraph: "References to the common agricultural policy or to agriculture, and the use of the term "agricultural", shall be understood as also referring to fisheries, having regard to the specific characteristics of this sector."
-48) Article 36 shall be amended as follows:
-(b) in the second paragraph, the introductory sentence shall be replaced by the following: "The Council, on a proposal from the Commission, may authorise the granting of aid:".
-(a) paragraph 1 shall be deleted;
-CIG 1/1/07 REV 1 54
-(c) the following paragraphs shall be inserted as new paragraphs 2 and 2a:
-2a. The Council, on a proposal from the Commission, shall adopt measures on fixing prices, levies, aid and quantitative limitations and on the fixing and allocation of fishing opportunities.";
-(e) at the beginning of paragraph 4, a change shall be made to the French which does not concern the English version.
-50) In Article 39(3)(d), the word "implementing" shall be deleted.
-(a) in the first paragraph, the words "migrant workers and their dependants:" shall be replaced by "employed and self-employed migrant workers and their dependants:";
-"Where a member of the Council declares that a draft legislative act referred to in the first subparagraph would affect important aspects of its social security system, including its scope, cost or financial structure, or would affect the financial balance of that system, it may request that the matter be referred to the European Council. In that case, the ordinary legislative procedure shall be suspended. After discussion, the European Council shall, within four months of this suspension, either:
-EN
-(b) take no action or request the Commission to submit a new proposal; in that case, the act originally proposed shall be deemed not to have been adopted.".
-52) In Article 44(2), the words "The European Parliament," shall be inserted at the beginning of the paragraph.
-54) Article 47 shall be amended as follows:
-(b) paragraph 2 shall be deleted and paragraph 3 shall be renumbered 2; a change shall be made to the French which does not concern the English version.
-Services
-(a) in the first paragraph, the words "State of the Community" shall be replaced by "Member State";
-CIG 1/1/07 REV 1 56
-57) In Article 50, third paragraph, the words "the State" shall be replaced by "the Member State".
-59) In Article 53, the words "declare their readiness to" shall be replaced by "shall endeavour to".
-60) In Article 57(2), the words "the Council may, acting by a qualified majority on a proposal from the Commission, adopt measures" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures" and the last sentence of paragraph 2 shall become paragraph 3, reading as follows:
-61) In Article 58, the following new paragraph 4 shall be added:
-62) Article 60 shall become Article 67a. It shall be amended as set out below in point 64.
-EN
-63) A Title IV, with the heading "AREA OF FREEDOM, SECURITY AND JUSTICE", shall replace the Title IV on visas, asylum, immigration, and other policies related to free movement of persons. Title IV shall contain the following Chapters:
-Chapter 2: Policies on border checks, asylum and immigration
-Chapter 4: Judicial cooperation in criminal matters
-General provisions
-"CHAPTER 1
-Article 61
-2. It shall ensure the absence of internal border controls for persons and shall frame a common policy on asylum, immigration and external border control, based on solidarity between Member States, which is fair towards third-country nationals. For the purpose of this Title, stateless persons shall be treated as third-country nationals.
-CIG 1/1/07 REV 1 58
-4. The Union shall facilitate access to justice, in particular through the principle of mutual recognition of judicial and extrajudicial decisions in civil matters.
-The European Council shall define the strategic guidelines for legislative and operational planning within the area of freedom, security and justice.
-National Parliaments shall ensure that the proposals and legislative initiatives submitted under Chapters 4 and 5 comply with the principle of subsidiarity, in accordance with the arrangements laid down by the Protocol on the application of the principles of subsidiarity and proportionality.
-Without prejudice to Articles 226 to 228, the Council may, on a proposal from the Commission, adopt measures laying down the arrangements whereby Member States, in collaboration with the Commission, conduct objective and impartial evaluation of the implementation of the Union policies referred to in this Title by Member States' authorities, in particular in order to facilitate full application of the principle of mutual recognition. The European Parliament and national Parliaments shall be informed of the content and results of the evaluation.
-A standing committee shall be set up within the Council in order to ensure that operational cooperation on internal security is promoted and strengthened within the Union. Without prejudice to Article 207, it shall facilitate coordination of the action of Member States' competent authorities. Representatives of the Union bodies, offices and agencies concerned may be involved in the proceedings of this committee. The European Parliament and national Parliaments shall be kept informed of the proceedings.
-This Title shall not affect the exercise of the responsibilities incumbent upon Member States with regard to the maintenance of law and order and the safeguarding of internal security.
-EN
-It shall be open to Member States to organise between themselves and under their responsibility such forms of cooperation and coordination as they deem appropriate between the competent departments of their administrations responsible for safeguarding national security.
-The Council shall adopt measures to ensure administrative cooperation between the relevant departments of the Member States in the areas covered by this Title, as well as between those departments and the Commission. It shall act on a Commission proposal, subject to Article 68, and after consulting the European Parliament.
-Where necessary to achieve the objectives set out in Article 61, as regards preventing and combating terrorism and related activities, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall define a framework for administrative measures with regard to capital movements and payments, such as the freezing of funds, financial assets or economic gains belonging to, or owned or held by, natural or legal persons, groups or non-State entities.
-The acts referred to in this Article shall include necessary provisions on legal safeguards.
-The acts referred to in Chapters 4 and 5, together with the measures referred to in Article 67 which ensure administrative cooperation in the areas covered by these Chapters, shall be adopted:
-(b) on the initiative of a quarter of the Member States.".
-EN
-65) Articles 62 to 64 shall be replaced by the following chapter and articles:
-POLICIES ON BORDER CHECKS,
-Article 69
-(a) ensuring the absence of any controls on persons, whatever their nationality, when crossing internal borders;
-(c) the gradual introduction of an integrated management system for external borders.
-(a) the common policy on visas and other short-stay residence permits;
-(c) the conditions under which nationals of third countries shall have the freedom to travel within the Union for a short period;
-(e) the absence of any controls on persons, whatever their nationality, when crossing internal borders.
-EN
-4. This Article shall not affect the competence of the Member States concerning the geographical demarcation of their borders, in accordance with international law.
-1. The Union shall develop a common policy on asylum, subsidiary protection and temporary protection with a view to offering appropriate status to any third-country national requiring international protection and ensuring compliance with the principle of non-refoulement. This policy must be in accordance with the Geneva Convention of 28 July 1951 and the Protocol of 31 January 1967 relating to the status of refugees, and other relevant treaties.
-(a) a uniform status of asylum for nationals of third countries, valid throughout the Union;
-(c) a common system of temporary protection for displaced persons in the event of a massive inflow;
-(e) criteria and mechanisms for determining which Member State is responsible for considering an application for asylum or subsidiary protection;
-(g) partnership and cooperation with third countries for the purpose of managing inflows of people applying for asylum or subsidiary or temporary protection.
-EN
-Article 69b
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures in the following areas:
-(b) the definition of the rights of third-country nationals residing legally in a Member State, including the conditions governing freedom of movement and of residence in other Member States;
-(d) combating trafficking in persons, in particular women and children.
-4. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures to provide incentives and support for the action of Member States with a view to promoting the integration of third-country nationals residing legally in their territories, excluding any harmonisation of the laws and regulations of the Member States.
-CIG 1/1/07 REV 1 63
-Article 69c
-Judicial cooperation in civil matters
-"CHAPTER 3
-Article 69d
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures, particularly when necessary for the proper functioning of the internal market, aimed at ensuring:
-(b) the cross-border service of judicial and extrajudicial documents;
-(d) cooperation in the taking of evidence;
-CIG 1/1/07 REV 1 64
-(f) the elimination of obstacles to the proper functioning of civil proceedings, if necessary by promoting the compatibility of the rules on civil procedure applicable in the Member States;
-(h) support for the training of the judiciary and judicial staff.
-The Council, on a proposal from the Commission, may adopt a decision determining those aspects of family law with cross-border implications which may be the subject of acts adopted by the ordinary legislative procedure. The Council shall act unanimously after consulting the European Parliament.
-Judicial cooperation in criminal matters
-"CHAPTER 4
-Article 69e
-The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures to:
-CIG 1/1/07 REV 1 65
-(b) prevent and settle conflicts of jurisdiction between Member States;
-(d) facilitate cooperation between judicial or equivalent authorities of the Member States in relation to proceedings in criminal matters and the enforcement of decisions.
-They shall concern:
-(b) the rights of individuals in criminal procedure;
-(d) any other specific aspects of criminal procedure which the Council has identified in advance by a decision; for the adoption of such a decision, the Council shall act unanimously after obtaining the consent of the European Parliament.
-3. Where a member of the Council considers that a draft directive as referred to in paragraph 2 would affect fundamental aspects of its criminal justice system, it may request that the draft directive be referred to the European Council. In that case, the ordinary legislative procedure shall be suspended. After discussion, and in case of a consensus, the European Council shall, within four months of this suspension, refer the draft back to the Council, which shall terminate the suspension of the ordinary legislative procedure.
-CIG 1/1/07 REV 1 66
-Article 69f
-These areas of crime are the following: terrorism, trafficking in human beings and sexual exploitation of women and children, illicit drug trafficking, illicit arms trafficking, money laundering, corruption, counterfeiting of means of payment, computer crime and organised crime.
-2. If the approximation of criminal laws and regulations of the Member States proves essential to ensure the effective implementation of a Union policy in an area which has been subject to harmonisation measures, directives may establish minimum rules with regard to the definition of criminal offences and sanctions in the area concerned. Such directives shall be adopted by the same ordinary or special legislative procedure as was followed for the adoption of the harmonisation measures in question, without prejudice to Article 68.
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft directive concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Articles 10(2) of the Treaty on European Union and Article 208d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.
-EN
-The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures to promote and support the action of Member States in the field of crime prevention, excluding any harmonisation of the laws and regulations of the Member States.
-1. Eurojust's mission shall be to support and strengthen coordination and cooperation between national investigating and prosecuting authorities in relation to serious crime affecting two or more Member States or requiring a prosecution on common bases, on the basis of operations conducted and information supplied by the Member States' authorities and by Europol.
-(a) the initiation of criminal investigations, as well as proposing the initiation of prosecutions, conducted by competent national authorities, particularly those relating to offences against the financial interests of the Union;
-(c) the strengthening of judicial cooperation, including by resolution of conflicts of jurisdiction and by close cooperation with the European Judicial Network.
-2. In the prosecutions referred to in paragraph 1, and without prejudice to Article 69i, formal acts of judicial procedure shall be carried out by the competent national officials.
-1. In order to combat crimes affecting the financial interests of the Union, the Council, by means of regulations adopted in accordance with a special legislative procedure, may establish a European Public Prosecutor's Office from Eurojust. The Council shall act unanimously after obtaining the consent of the European Parliament.
-EN
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft regulation concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Article 10(2) of the Treaty on European Union and Article 280d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.
-3. The regulation referred to in paragraph 1 shall determine the general rules applicable to the European Public Prosecutor's Office, the conditions governing the performance of its functions, the rules of procedure applicable to its activities, as well as those governing the admissibility of evidence, and the rules applicable to the judicial review of procedural measures taken by it in the performance of its functions.
-CIG 1/1/07 REV 1 69
-Police cooperation
-"CHAPTER 5
-Article 69j
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures concerning:
-(b) support for the training of staff, and cooperation on the exchange of staff, on equipment and on research into crime-detection;
-3. The Council, acting in accordance with a special legislative procedure, may establish measures concerning operational cooperation between the authorities referred to in this Article. The Council shall act unanimously after consulting the European Parliament.
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft measures concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Article 10(2) of the Treaty on European Union and Article 280d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.
-EN
-Article 69k
-2. In this context, the European Parliament and the Council, by means of regulations adopted in accordance with the ordinary legislative procedure, shall determine Europol's structure, operation, field of action and tasks. These tasks may include:
-(b) the coordination, organisation and implementation of investigative and operational action carried out jointly with the Member States' competent authorities or in the context of joint investigative teams, where appropriate in liaison with Eurojust.
-3. Any operational action by Europol must be carried out in liaison and in agreement with the authorities of the Member State or States whose territory is concerned. The application of coercive measures shall be the exclusive responsibility of the competent national authorities.
-The Council, acting in accordance with a special legislative procedure, shall lay down the conditions and limitations under which the competent authorities of the Member States referred to in Articles 69e and 69j may operate in the territory of another Member State in liaison and in agreement with the authorities of that State. The Council shall act unanimously after consulting the European Parliament.".
-EN
-69) In Article 70, the words "of this Treaty" shall be replaced by "of the Treaties" and the words "by Member States" shall be deleted.
-"2. When the measures referred to in paragraph 1 are adopted, account shall be taken of cases where their application might seriously affect the standard of living and level of employment in certain regions, and the operation of transport facilities.".
-72) Article 75 shall be amended as follows:
-(b) in paragraph 2, the words "the Council" shall be replaced by "the European Parliament and the Council".
-73) In Article 78, the following sentence shall be added:
-74) In Article 79, the phrase "without prejudice to the powers of the Economic and Social Committee" shall be deleted.
-EN
-"2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may lay down appropriate provisions for sea and air transport. They shall act after consulting the Committee of the Regions and the Economic and Social Committee.".
-76) In Article 85, the following new paragraph 3 shall be added:
-77) Article 87 shall be amended as follows:
-"Five years after the entry into force of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community, the Council, acting on a proposal from the Commission, may adopt a decision repealing this point.";
-78) In Article 88, the following new paragraph 4 shall be added:
-Fiscal provisions
-CIG 1/1/07 REV 1 73
-Approximation of laws
-81) Article 95, renumbered 94, shall be amended as follows:
-(b) at the beginning of paragraph 4, the words "If, after the adoption by the Council or by the Commission of a harmonisation measure,\85" shall be replaced by "If, after the adoption of a harmonisation measure by the European Parliament and the Council, by the Council or by the Commission, \85";
-(d) in paragraph 10, the words "Community control procedure" shall be replaced by "Union control procedure".
-83) In Article 96, second paragraph, first sentence, the words ", the Council shall, on a proposal from the Commission, acting by a qualified majority, issue" shall be replaced by ", the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall issue\85". The second sentence shall be replaced by "Any other appropriate measures provided for in the Treaties may be adopted.".
-EN
-84) The following new Article 97a shall be inserted:
-In the context of the establishment and functioning of the internal market, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish measures for the creation of European intellectual property rights to provide uniform intellectual property rights protection throughout the Union and for the setting up of centralised Union-wide authorisation, coordination and supervision arrangements.
-Economic and monetary policy
-(a) in paragraph 1, the words "and in accordance with the timetable set out therein" shall be deleted;
-86) Article 99 shall be amended as follows:
-"Where it is established, under the procedure referred to in paragraph 3, that the economic policies of a Member State are not consistent with the broad guidelines referred to in paragraph 2 or that they risk jeopardising the proper functioning of economic and monetary union, the Commission may address a warning to the Member State concerned. The Council, on a recommendation from the Commission, may address the necessary recommendations to the Member State concerned.";
-EN
-(c) the following two new subparagraphs shall be inserted in paragraph 4:
-A qualified majority of the other members of the Council shall be defined in accordance with Article 205(3)(a).";
-Difficulties in the supply of certain products (energy)
-"1. Without prejudice to any other procedures provided for in the Treaties, the Council, on a proposal from the Commission, may decide, in a spirit of solidarity between Member States, upon the measures appropriate to the economic situation, in particular if severe difficulties arise in the supply of certain products, notably in the area of energy.".
-88) In Article 102, paragraph 2 shall be deleted and paragraph 1 shall not be numbered;
-"The Council, on a proposal from the Commission and after consulting the European Parliament, may, as required, specify definitions for the application of the prohibitions referred to in Articles 101 and 102 and in this Article.".
-EN
-90) Article 104 shall be amended as follows:
-"5. If the Commission considers that an excessive deficit in a Member State exists or may occur, it shall address an opinion to the Member State concerned and shall inform the Council accordingly.";
-(c) in paragraph 7, the first sentence shall be replaced by "Where the Council decides, in accordance with paragraph 6, that an excessive deficit exists, it shall adopt, without undue delay, on a recommendation from the Commission, recommendations addressed to the Member State concerned with a view to bringing that situation to an end within a given period.";
-(e) in paragraph 12, at the beginning of the first sentence, the words "its decisions" shall be replaced by "its decisions or recommendations";
-"13. When taking the decisions referred to in paragraphs 8, 9, 11 and 12, the Council shall act on a recommendation from the Commission.
-A qualified majority of the other members of the Council shall be defined in accordance with Article 205(3)(a).";
-CIG 1/1/07 REV 1 77
-Monetary policy
-(a) in the first sentence of paragraph 1, "ESCB" shall be replaced by "European System of Central Banks, hereinafter referred to as "ESCB",";
-"6. The Council, acting by means of regulations in accordance with a special legislative procedure, may unanimously, and after consulting the European Parliament and the European Central Bank, confer specific tasks upon the European Central Bank concerning policies relating to the prudential supervision of credit institutions and other financial institutions with the exception of insurance undertakings.".
-(a) in paragraph 1, first sentence, the word "euro" shall be inserted before "banknotes";
-93) Article 107 shall be amended as follows:
-(b) in paragraph 4, renumbered 2, the words "Statute of the ESCB" shall be replaced by the following: "Statute of the European System of Central Banks and of the European Central Bank, hereinafter referred to as 'Statute of the ESCB and of the ECB'";
-EN
-"3. Articles 5.1, 5.2, 5.3, 17, 18, 19.1, 22, 23, 24, 26, 32.2, 32.3, 32.4, 32.6, 33.1(a) and 36 of the Statute of the ESCB may be amended by the European Parliament and the Council, acting in accordance with the ordinary legislative procedure. They shall act either on a recommendation from the European Central Bank and after consulting the Commission or on a proposal from the Commission and after consulting the European Central Bank.".
-95) In Article 110, the first four subparagraphs of paragraph 2 shall be deleted.
-96) In Article 111, paragraphs 1 to 3 and 5 shall become, respectively, paragraphs 1 to 4 of Article 188o; they shall be amended as set out below in point 174. The text of paragraph 4 shall become paragraph 1 of Article 115a; it shall be amended as set out below in point 100.
-"Without prejudice to the powers of the European Central Bank, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall lay down the measures necessary for use of the euro as the single currency. Such measures shall be adopted after consultation of the European Central Bank.".
-97) Articles 112 and 113 shall become Articles 245b and 245c respectively; they shall be amended as set out below in points 228 and 229.
-EN
-(a) in paragraph 1, first subparagraph, the words "Monetary Committee with advisory status" shall be replaced by "Economic and Financial Committee";
-(c) in paragraph 2, the first subparagraph shall be deleted.
-Provisions specific to Member States whose currency is the euro
-"CHAPTER 3a
-Article 114
-(a) to strengthen the coordination and surveillance of their budgetary discipline;
-2. For those measures set out in paragraph 1, only members of the Council representing Member States whose currency is the euro shall take part in the vote.
-CIG 1/1/07 REV 1 80
-Article 115
-Article 115a
-2. The Council, on a proposal from the Commission, may adopt appropriate measures to ensure unified representation within the international financial institutions and conferences. The Council shall act after consulting the European Central Bank.
-A qualified majority of the said members shall be defined in accordance with Article 205(3)(a).".
-101) Article 116 shall be replaced by the following:
-1. Member States in respect of which the Council has not decided that they fulfil the necessary conditions for the adoption of the euro shall hereinafter be referred to as "Member States with a derogation".
-(a) adoption of the parts of the broad economic policy guidelines which concern the euro area generally (Article 99(2));
-EN
-(c) the objectives and tasks of the European System of Central Banks (Article 105(1), (2), (3) and (5));
-(e) acts of the European Central Bank (Article 110);
-(g) monetary agreements and other measures relating to exchange-rate policy (Article 188o);
-(i) decisions establishing common positions on issues of particular relevance for economic and monetary union within the competent international financial institutions and conferences (Article 115a(1));
-In the Articles referred to in points (a) to (j), "Member States" shall therefore mean Member States whose currency is the euro.
-4. The voting rights of members of the Council representing Member States with a derogation shall be suspended for the adoption by the Council of the measures referred to in the Articles listed in paragraph 2, and in the following instances:
-(b) measures relating to excessive deficits concerning those Member States whose currency is the euro (Article 104(6), (7), (8), (12) and (13)).
-CIG 1/1/07 REV 1 82
-102) Article 117 shall be amended as follows:
-(i) at the beginning of the paragraph, the following shall be inserted: "At least once every two years, or at the request of a Member State with a derogation,";
-(iii) in the first subparagraph, first sentence, the words "the progress made in the fulfilment by the Member States of their obligations" shall be replaced by "the progress made by the Member States with a derogation in fulfilling their obligations";
-(v) in the third indent, the words "against the currency of any other Member State" shall be replaced by "against the euro;";
-(vii) in the second subparagraph, the words "the development of the ecu" shall be deleted;
-(i) the first five indents shall become the first five indents of the second paragraph of Article 118; they shall be amended as set out below in point 103. The sixth indent shall be repealed; CIG 1/1/07 REV 1 83
-(ii) Article 117(2) shall be replaced by the second sentence of Article 122(2); at the end of the first subparagraph, the words "laid down in Article 121(1)" shall be replaced by "laid down in paragraph 1" and the following new second and third subparagraphs shall be added:
-The qualified majority of the said members, as referred to in the second subparagraph, shall be defined in accordance with Article 205(3)(a).";
-(i) at the beginning of the paragraph, the words "If it is decided, according to the procedure set out in Article 122(2), to abrogate a derogation," shall be replaced by "If it is decided, in accordance with the procedure set out in paragraph 2, to abrogate a derogation,";
-(d) paragraphs 4 to 9 shall be repealed.
-(a) the first subparagraph shall be numbered paragraph 1 and shall be replaced by the text of Article 123(3); the words "of this Treaty" shall be deleted;
-"If and as long as there are Member States with a derogation, the European Central Bank shall, as regards those Member States:"
-(ii) the fifth indent shall be replaced by the following: "carry out the former tasks of the European Monetary Cooperation Fund which had subsequently been taken over by the European Monetary Institute.".
-EN
-(a) the words "Until the beginning of the third stage, each Member State shall treat" shall be replaced by "Each Member State with a derogation shall treat";
-105) Article 119 shall be amended as follows:
-(b) in paragraph 2(a), the words "with a derogation" shall be inserted after "Member States" and in paragraph 2(b), the words "the State which is in difficulties" shall be replaced by "the Member State with a derogation which is in difficulties,";
-(d) paragraph 4 shall be deleted.
-(a) in paragraph 1, the words "the Member State concerned" shall be replaced by "a Member State with a derogation";
-(c) paragraph 4 shall be deleted.
-CIG 1/1/07 REV 1 85
-108) In Article 122(2), the second sentence shall become the first subparagraph of Article 117(2); it shall be amended as set out above in point 102. The rest of Article 122 shall be repealed.
-110) Article 124(1) shall become the new Article 118a; it shall be amended as set out above in point 104. The rest of Article 124 shall be repealed.
-111) In Article 125, the words "and in Article 2 of this Treaty" shall be deleted.
-112) Title IX "COMMON COMMERCIAL POLICY" shall become Title II in Part Five on the Union's external action and Articles 131 and 133 shall become Articles 188b and 188c respectively. Article 131 shall be amended as set out below in point 157 and Article 133 shall be replaced by Article 188c.
-113) Title X "CUSTOMS COOPERATION" shall become Chapter 1a in Title Ia, "Free movement of goods" and Article 135 shall become Article 27a, as set out above in point 45.
-114) The heading of Title XI "SOCIAL POLICY, EDUCATION, VOCATIONAL TRAINING AND YOUTH" shall be replaced by the heading "SOCIAL POLICY", renumbered IX; the heading "Chapter 1 \96 Social provisions" shall be deleted.
-EN
-"Article 136a
-The Tripartite Social Summit for Growth and Employment shall contribute to social dialogue.".
-(a) in paragraph 2, in the introductory words of the first subparagraph, the words "the Council:" shall be replaced by "the European Parliament and the Council:" and the first sentence of the second subparagraph shall be split into two subparagraphs which shall read as follows:
-In the fields referred to in paragraph 1(c), (d), (f) and (g) of this Article, the Council shall act unanimously, in accordance with a special legislative procedure, after consulting the European Parliament and the said Committees.".
-(b) in paragraph 3, at the end of the first subparagraph, the following words shall be added "or, where appropriate, with the implementation of a Council decision adopted in accordance with Article 139"; in the second subparagraph, the words "a directive must be transposed in accordance with Article 249" shall be replaced by "a directive or a decision must be transposed or implemented," and the words "or that decision" shall be added at the end of the subparagraph.
-CIG 1/1/07 REV 1 87
-118) Article 139(2) shall be amended as follows:
-(b) in the second subparagraph, at the beginning of the first sentence, "The Council shall act by qualified majority, except where the agreement" shall be replaced by "The Council shall act unanimously where the agreement" and the second sentence shall be deleted.
-120) In Article 143, the second paragraph shall be deleted.
-121) Chapter 2 shall be renumbered TITLE X.
-Education, vocational training, youth and sport
-124) Article 149 shall be amended as follows:
-"The Union shall contribute to the promotion of European sporting issues, while taking account of the specific nature of sport, its structures based on voluntary activity and its social and educational function.";
-EN
-"- developing the European dimension in sport, by promoting fairness and openness in sporting competitions and cooperation between bodies responsible for sports, and by protecting the physical and moral integrity of sportsmen and sportswomen, especially the youngest sportsmen and sportswomen.";
-(d) in paragraph 4, the words "the Council" shall be deleted from the introductory phrase and the first indent shall begin with the words "the European Parliament and the Council, acting"; the second indent shall begin with the words "the Council, on a proposal".
-Culture
-(a) in the introductory phrase, the words "the Council" shall be deleted;
-(c) in the second indent, the words "acting unanimously" shall be deleted and the indent shall begin with the words "the Council, on a proposal".
-EN
-127) Article 152 shall be amended as follows:
-(b) in paragraph 2, at the end of the first subparagraph, the following sentence shall be added: "It shall in particular encourage cooperation between the Member States to improve the complementarity of their health services in cross-border areas.";
-(d) paragraph 4 shall be amended as follows:
-(ii) in point (b), the words "by way of derogation from Article 37," shall be deleted;
-"(c) measures setting high standards of quality and safety for medicinal products and devices for medical use.";
-EN
-"5. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure and after consulting the Committee of the Regions and the Economic and Social Committee, may also adopt incentive measures designed to protect and improve human health and in particular to combat the major cross-border health scourges, measures concerning monitoring, early warning of and combating serious cross-border threats to health, and measures which have as their direct objective the protection of public health regarding tobacco and the abuse of alcohol, excluding any harmonisation of the laws and regulations of the Member States.";
-"7. Union action shall respect the responsibilities of the Member States for the definition of their health policy and for the organisation and delivery of health services and medical care. The responsibilities of the Member States shall include the management of health services and medical care and the allocation of the resources assigned to them. The measures referred to in paragraph 4(a) shall not affect national provisions on the donation or medical use of organs and blood.".
-128) Article 153(2) shall become Article 12; paragraph 2 shall be deleted and paragraphs 3, 4 and 5 shall be renumbered 2, 3 and 4 respectively.
-EN
-129) Article 157 shall be amended as follows:
-(b) in paragraph 3, first subparagraph, the following phrase shall be added at the end of the second sentence: ", excluding any harmonisation of the laws and regulations of the Member States".
-130) The heading of Title XVII shall be replaced by: "ECONOMIC, SOCIAL AND TERRITORIAL COHESION".
-(a) in the first paragraph, the words "economic and social cohesion" shall be replaced by "economic, social and territorial cohesion";
-(c) the following new paragraph shall be added: "Among the regions concerned, particular attention shall be paid to rural areas, areas affected by industrial transition, and regions which suffer from severe and permanent natural or demographic handicaps such as the northernmost regions with very low population density and island, cross-border and mountain regions.".
-CIG 1/1/07 REV 1 92
-133) Article 161 shall be amended as follows:
-(b) in the second paragraph the words "by the Council " shall be deleted;
-134) In Article 162, first paragraph, the words "implementing decisions" shall be replaced by "implementing regulations".
-135) The words "AND SPACE" shall be added to the heading of Title XVIII.
-(a) paragraph 1 shall be replaced by the following:
-(b) in paragraph 2, the words "enabling undertakings to exploit the internal market potential to the full," shall be replaced by "permitting researchers to cooperate freely across borders and at enabling undertakings to exploit the internal market potential,".
-EN
-138) In Article 166, the following new paragraph 5 shall be added:
-139) In Article 167, the words "the Council" shall be replaced by "the Union".
-141) In Article 170, the last phrase ", which shall be negotiated and concluded in accordance with Article 300" shall be deleted.
-142) The following new Article 172a shall be inserted:
-1. To promote scientific and technical progress, industrial competitiveness and the implementation of its policies, the Union shall draw up a European space policy. To this end, it may promote joint initiatives, support research and technological development and coordinate the efforts needed for the exploration and exploitation of space.
-CIG 1/1/07 REV 1 94
-3. The Union shall establish any appropriate relations with the European Space Agency.
-Environment (climate change)
-(a) in paragraph 1, the fourth indent shall be replaced by the following:
-(b) in paragraph 2, second subparagraph, the words "Community inspection procedure" shall be replaced by "a procedure of inspection by the Union";
-144) Article 175 shall be amended as follows:
-"The Council, acting unanimously on a proposal from the Commission and after consulting the European Parliament, the Economic and Social Committee and the Committee of the Regions, may make the ordinary legislative procedure applicable to the matters referred to in the first subparagraph.";
-"The measures necessary for the implementation of these programmes shall be adopted under the terms of paragraph 1 or 2, as the case may be.";
-CIG 1/1/07 REV 1 95
-(d) in paragraph 5, the words "the Council shall, in the act adopting that measure, lay down" shall be replaced by "such measure shall lay down".
-145) Title XX "DEVELOPMENT COOPERATION" shall become Chapter I of Title III of Part Five on the Union's external action, and Articles 177 and 179 to 181 shall become Articles 188d to 188g respectively; those articles shall be amended as set out below in points 161 to 164. Article 178 shall be repealed.
-Energy
-"TITLE XX ENERGY
-1. In the context of the establishment and functioning of the internal market and with regard for the need to preserve and improve the environment, Union policy on energy shall aim, in a spirit of solidarity between Member States, to:
-(b) ensure security of energy supply in the Union; and
-(d) promote the interconnection of energy networks.
-EN
-Such measures shall not affect a Member State's right to determine the conditions for exploiting its energy resources, its choice between different energy sources and the general structure of its energy supply, without prejudice to Article 175(2)(c).
-Tourism
-"TITLE XXI TOURISM
-1. The Union shall complement the action of the Member States in the tourism sector, in particular by promoting the competitiveness of Union undertakings in that sector.
-(a) encouraging the creation of a favourable environment for the development of undertakings in this sector;
-2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish specific measures to complement actions within the Member States to achieve the objectives referred to in this Article, excluding any harmonisation of the laws and regulations of the Member States.".
-EN
-149) The following new Title XXII and new Article 176c shall be inserted:
-Article 176c
-Union action shall aim to:
-(b) promote swift, effective operational cooperation within the Union between national civil-protection services;
-2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish the measures necessary to help achieve the objectives referred to in paragraph 1, excluding any harmonisation of the laws and regulations of the Member States.".
-EN
-150) The following new Title XXIII and new Article 176d shall be inserted:
-Article 176d
-2. The Union may support the efforts of Member States to improve their administrative capacity to implement Union law. Such action may include facilitating the exchange of information and of civil servants as well as supporting training schemes. No Member State shall be obliged to avail itself of such support. The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish the necessary measures to this end, excluding any harmonisation of the laws and regulations of the Member States.
-Association of the overseas countries and territories
-152) At the end of Article 186, the words "shall be governed by agreements to be concluded subsequently with the unanimous approval of Member States" shall be replaced by "shall be regulated by acts adopted in accordance with Article 187".
-CIG 1/1/07 REV 1 99
-External action by the Union
-Title I: General provisions on the Union's external action
-Title III: Cooperation with third countries and humanitarian aid
-Chapter 2: Economic, financial and technical cooperation with third countries
-Title IV: Restrictive measures
-Title VI: The Union's relations with international organisations and third countries
-Title VII: Solidarity clause.
-155) The following new Title I and new Article 188a shall be inserted:
-Article 188a
-Common commercial policy
-CIG 1/1/07 REV 1 100
-157) An Article 188b shall be inserted, with the wording of Article 131; it shall be amended as follows:
-"By establishing a customs union in accordance with Articles 23 to 27, the Union shall contribute, in the common interest, to the harmonious development of world trade, the progressive abolition of restrictions on international trade and on foreign direct investment, and the lowering of customs and other barriers.";
-158) An Article 188c shall be inserted, replacing Article 133:
-1. The common commercial policy shall be based on uniform principles, particularly with regard to changes in tariff rates, the conclusion of tariff and trade agreements relating to trade in goods and services, and the commercial aspects of intellectual property, foreign direct investment, the achievement of uniformity in measures of liberalisation, export policy and measures to protect trade such as those to be taken in the event of dumping or subsidies. The common commercial policy shall be conducted in the context of the principles and objectives of the Union's external action.
-3. Where agreements with one or more third countries or international organisations need to be negotiated and concluded, Article 188n shall apply, subject to the special provisions of this Article.
-The Commission shall conduct these negotiations in consultation with a special committee appointed by the Council to assist the Commission in this task and within the framework of such directives as the Council may issue to it. The Commission shall report regularly to the special committee and to the European Parliament on the progress of negotiations.
-EN
-For the negotiation and conclusion of agreements in the fields of trade in services and the commercial aspects of intellectual property, as well as foreign direct investment, the Council shall act unanimously where such agreements include provisions for which unanimity is required for the adoption of internal rules.
-(a) in the field of trade in cultural and audiovisual services, where these agreements risk prejudicing the Union's cultural and linguistic diversity;
-5. The negotiation and conclusion of international agreements in the field of transport shall be subject to Section 7 of Chapter III of Title III and to Article 188n.
-Development cooperation
-160) A Chapter 1 "DEVELOPMENT COOPERATION" shall be inserted, taking over the heading of Title XX of Part 3.
-EN
-(a) paragraphs 1 and 2 shall be replaced by the following:
-Union development cooperation policy shall have as its primary objective the reduction and, in the long term, the eradication of poverty. The Union shall take account of the objectives of development cooperation in the policies that it implements which are likely to affect developing countries.";
-162) An Article 188e shall be inserted, with the wording of Article 179; it shall be amended as follows:
-"1. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures necessary for the implementation of development cooperation policy, which may relate to multiannual cooperation programmes with developing countries or programmes with a thematic approach.";
-"2. The Union may conclude with third countries and competent international organisations any agreement helping to achieve the objectives referred to in Article 10a of the Treaty on European Union and Article 188d of this Treaty.
-(c) the current paragraph 2 shall be renumbered "3" and the current paragraph 3 shall be deleted.
-At the beginning of paragraph 1, the following words shall be inserted: "In order to promote the complementarity and efficiency of their action, the Union".
-EN
-Economic, financial and technical cooperation with third countries
-166) An Article 188h shall be inserted, with the wording of Article 181a; it shall be amended as follows:
-"1. Without prejudice to the other provisions of the Treaties, and in particular Articles 188d to 188g, the Union shall carry out economic, financial and technical cooperation measures, including assistance, in particular financial assistance, with third countries other than developing countries. Such measures shall be consistent with the development policy of the Union and shall be carried out within the framework of the principles and objectives of its external action. The Union's operations and those of the Member States shall complement and reinforce each other.";
-"The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures necessary for the implementation of paragraph 1.";
-167) The following new Article 188i shall be inserted:
-When the situation in a third country requires urgent financial assistance from the Union, the Council shall adopt the necessary decisions on a proposal from the Commission.".
-EN
-168) The following new Chapter 3 and new Article 188j shall be inserted:
-Article 188j
-2. Humanitarian aid operations shall be conducted in compliance with the principles of international law and with the principles of impartiality, neutrality and non-discrimination.
-4. The Union may conclude with third countries and competent international organisations any agreement helping to achieve the objectives referred to in paragraph 1 and in Article 10a of the Treaty on European Union.
-5. In order to establish a framework for joint contributions from young Europeans to the humanitarian aid operations of the Union, a European Voluntary Humanitarian Aid Corps shall be set up. The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall determine the rules and procedures for the operation of the Corps.
-7. The Union shall ensure that its humanitarian aid operations are coordinated and consistent with those of international organisations and bodies, in particular those forming part of the United Nations system.".
-EN
-169) The following Title IV and Article 188k shall be inserted, replacing Article 301:
-Article 188k
-2. Where a decision adopted in accordance with Chapter 2 of Title V of the Treaty on European Union so provides, the Council may adopt restrictive measures under the procedure referred to in paragraph 1 against natural or legal persons and groups or non-State entities.
-International agreements
-171) The following Article 188 shall be inserted:
-1. The Union may conclude an agreement with one or more third countries or international organisations where the Treaties so provide or where the conclusion of an agreement is necessary in order to achieve, within the framework of the Union's policies, one of the objectives referred to in the Treaties, or is provided for in a legally binding Union act or is likely to affect common rules or alter their scope.
-CIG 1/1/07 REV 1 106
-172) An Article 188m shall be inserted, with the wording of Article 310. The word "States" shall be replaced by "third countries".
-"Article 188n
-2. The Council shall authorise the opening of negotiations, adopt negotiating directives, authorise the signing of agreements and conclude them.
-4. The Council may address directives to the negotiator and designate a special committee in consultation with which the negotiations must be conducted.
-6. The Council, on a proposal by the negotiator, shall adopt a decision concluding the agreement.
-(a) after obtaining the consent of the European Parliament in the following cases:
-(ii) agreement on Union accession to the European Convention for the Protection of Human Rights and Fundamental Freedoms;
-CIG 1/1/07 REV 1 107
-(iv) agreements with important budgetary implications for the Union;
-The European Parliament and the Council may, in an urgent situation, agree upon a time-limit for consent.
-7. When concluding an agreement, the Council may, by way of derogation from paragraphs 5, 6 and 9, authorise the negotiator to approve on the Union's behalf modifications to the agreement where it provides for them to be adopted by a simplified procedure or by a body set up by the agreement. The Council may attach specific conditions to such authorisation.
-However, it shall act unanimously when the agreement covers a field for which unanimity is required for the adoption of a Union act as well as for association agreements and the agreements referred to in Article 188h with the States which are candidates for accession. The Council shall also act unanimously for the agreement on accession of the Union to the European Convention for the Protection of Human Rights and Fundamental Freedoms; the decision concluding this agreement shall enter into force after it has been approved by the Member States in accordance with their respective constitutional requirements.
-10. The European Parliament shall be immediately and fully informed at all stages of the procedure.
-CIG 1/1/07 REV 1 108
-174) An Article 188o shall be inserted, with the wording of paragraphs 1 to 3 and 5 of Article 111 and paragraph 1 shall be split into two subparagraphs, the last two sentences becoming the second subparagraph; the Article shall be amended as follows:
-"By way of derogation from Article 188n, the Council, either on a recommendation from the European Central Bank or on a recommendation from the Commission and after consulting the European Central Bank, in an endeavour to reach a consensus consistent with the objective of price stability, may conclude formal agreements on an exchange-rate system for the euro in relation to the currencies of third States. The Council shall act unanimously after consulting the European Parliament and in accordance with the procedure provided for in paragraph 3.".
-(b) in paragraph 2, the words "non-Community currencies" shall be replaced by "currencies of third States";
-(d) paragraph 5 shall be renumbered "4".
-175) The following Title VI and Articles 188p and 188q shall be inserted, with Article 188p replacing Articles 302 to 304:
-Article 188p
-The Union shall also maintain such relations as are appropriate with other international organisations.
-EN
-Article 188q
-2. Union delegations shall be placed under the authority of the High Representative of the Union for Foreign Affairs and Security Policy. They shall act in close cooperation with Member States' diplomatic and consular missions.".
-176) The following new Title VII and new Article 188r shall be inserted:
-Article 188r
-(a) - prevent the terrorist threat in the territory of the Member States;
-- assist a Member State in its territory, at the request of its political authorities, in the event of a terrorist attack;
-2. Should a Member State be the object of a terrorist attack or the victim of a natural or man-made disaster, the other Member States shall assist it at the request of its political authorities. To that end, the Member States shall coordinate between themselves in the Council.
-EN
-For the purposes of this paragraph and without prejudice to Article 207, the Council shall be assisted by the Political and Security Committee with the support of the structures developed in the context of the common security and defence policy and by the Committee referred to in Article 65; the two committees shall, if necessary, submit joint opinions.
-Institutional and budgetary provisions
-European Parliament
-179) Article 190 shall be amended as follows:
-(b) paragraph 4, renumbered 1, shall be amended as follows:
-CIG 1/1/07 REV 1 111
-(ii) the second subparagraph shall be replaced by the following:
-(c) in paragraph 5, renumbered 2, the words ", acting by means of regulations on its own initiative in accordance with a special legislative procedure" shall be inserted after "The European Parliament".
-181) In Article 192, the first paragraph shall be deleted; in the second paragraph, the words "of its Members" shall be replaced by "of its component members" and the following sentence shall be added at the end of the paragraph: "If the Commission does not submit a proposal, it shall inform the European Parliament of the reasons".
-(a) in the first paragraph, the words "of its Members" shall be replaced by "of its component Members";
-"The detailed provisions governing the exercise of the right of inquiry shall be determined by the European Parliament, acting by means of regulations on its own initiative in accordance with a special legislative procedure, after obtaining the consent of the Council and the Commission.".
-(a) in the first subparagraph of paragraph 1, the words at the beginning "The European Parliament shall appoint an Ombudsman, empowered to receive complaints" shall be replaced by "A European Ombudsman, elected by the European Parliament, shall be empowered to receive complaints"; in the last part of the sentence, the words "and the Court of First Instance acting in their judicial role" shall be replaced by: "acting in its judicial role" and the following final sentence shall be added: "He or she shall examine such complaints and report on them.";
-EN
-(c) in paragraph 3, the words "from any body" shall be replaced by "from any institution, body, office or agency";
-184) In the second paragraph of Article 196, the words "in extraordinary session" shall be replaced by "in extraordinary part-session" and the words "of its Members" shall be replaced by "of its component members".
-(a) the first paragraph shall be deleted;
-(c) the fourth paragraph shall be replaced by the following: "The European Council and the Council shall be heard by the European Parliament in accordance with the conditions laid down in the Rules of Procedure of the European Council and those of the Council.".
-187) In the second paragraph of Article 199, the words "... manner laid down in its Rules of Procedure" shall be replaced by "manner laid down in the Treaties and in its Rules of Procedure".
-"If the motion of censure is carried by a two-thirds majority of the votes cast, representing a majority of the component members of the European Parliament, the members of the Commission shall resign as a body and the High Representative of the Union for Foreign Affairs and Security Policy shall resign from duties that he or she carries out in the Commission. They shall remain in office and continue to deal with current business until they are replaced in accordance with Article 9d of the Treaty on European Union. In this case, the term of office of the members of the Commission appointed to replace them shall expire on the date on which the term of office of the members of the Commission obliged to resign as a body would have expired.".
-EN
-189) The following new Section 1a and new Articles 201a and 201b shall be inserted:
-Article 201a
-Paragraph 4 of Article 9c of the Treaty on European Union and paragraph 2 of Article 205 of this Treaty shall apply to the European Council when it is acting by a qualified majority. Where the European Council decides by vote, its President and the President of the Commission shall not take part in the vote.
-2. The President of the European Parliament may be invited to be heard by the European Council.
-4. The European Council shall be assisted by the General Secretariat of the Council.
-The European Council shall adopt by a qualified majority:
-(b) a decision on the Presidency of Council configurations, other than that of Foreign Affairs, in accordance with Article 9c(9) of the Treaty on European Union.".
-EN
-190) Articles 202 and 203 shall be repealed.
-(a) paragraphs 1 and 2 shall be replaced by the following:
-2. By way of derogation from paragraph 4 of Article 9c of the Treaty on European Union, as from 1 November 2014 and subject to the provisions laid down in the Protocol on transitional provisions, where the Council does not act on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, the qualified majority shall be defined as at least 72 % of the members of the Council, representing Member States comprising at least 65 % of the population of the Union.
-(a) A qualified majority shall be defined as at least 55 % of the members of the Council representing the participating Member States, comprising at least 65 % of the population of these States.
-(b) By way of derogation from point (a), where the Council does not act on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, the qualified majority shall be defined as at least 72 % of the members of the Council representing the participating Member States, comprising at least 65 % of the population of these States.".
-CIG 1/1/07 REV 1 115
-192) Article 207 shall be replaced by the following:
-1. A committee consisting of the Permanent Representatives of the Governments of the Member States shall be responsible for preparing the work of the Council and for carrying out the tasks assigned to it by the latter. The Committee may adopt procedural decisions in cases provided for in the Council's Rules of Procedure.
-The Council shall decide on the organisation of the General Secretariat by a simple majority.
-193) In Article 208, the following sentence shall be added at the end of the Article: "If the Commission does not submit a proposal, it shall inform the Council of the reasons.".
-195) Article 210 shall be replaced by the following:
-CIG 1/1/07 REV 1 116
-Commission
-"In accordance with Article 9d(5) of the Treaty on European Union, the members of the Commission shall be chosen on the basis of a system of rotation established unanimously by the European Council and on the basis of the following principles:
-(b) subject to point (a), each successive Commission shall be so composed as to reflect satisfactorily the demographic and geographical range of all the Member States.".
-198) In Article 213, paragraph 1 shall be deleted and paragraph 2 shall not be numbered; its first two paragraphs shall be merged and shall read as follows:
-199) Article 214 shall be repealed.
-(a) the second paragraph shall be replaced by the following two paragraphs:
-CIG 1/1/07 REV 1 117
-The Council may, acting unanimously on a proposal from the President of the Commission, decide that such a vacancy need not be filled, in particular when the remainder of the member's term of office is short.";
-"In the event of resignation, compulsory retirement or death, the High Representative of the Union for Foreign Affairs and Security Policy shall be replaced, for the remainder of his or her term of office, in accordance with Article 9e(1) of the Treaty on European Union";
-"In the case of the resignation of all the members of the Commission, they shall remain in office and continue to deal with current business until they have been replaced, for the remainder of their term of office, in accordance with Article 9d of the Treaty on European Union.".
-202) In Article 218, paragraph 1 shall be deleted; paragraph 2 shall be renumbered 1 and the words "in accordance with the provisions of this Treaty" shall be deleted. A paragraph 2 shall be inserted, with the wording of Article 212.
-CIG 1/1/07 REV 1 118
-Court of Justice
-205) Article 220 shall be repealed.
-207) In Article 223, the words ", after consultation of the panel provided for in Article 224a" shall be added at the end of the first paragraph.
-209) The following new Article 224a shall be inserted:
-A panel shall be set up in order to give an opinion on candidates' suitability to perform the duties of Judge and Advocate-General of the Court of Justice and the General Court before the governments of the Member States make the appointments referred to in Articles 223 and 224.
-210) In Article 225, paragraph 1, first subparagraph, first sentence, the words "assigned to a judicial panel and those" shall be replaced by "assigned to a specialised court set up under Article 225a and those" and in paragraph 2, first subparagraph, the words "set up under Article 225a" shall be deleted.
-EN
-(a) the first paragraph shall be replaced by the following text: "The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish specialised courts attached to the General Court to hear and determine at first instance certain classes of action or proceeding brought in specific areas. The European Parliament and the Council shall act by means of regulations either on a proposal from the Commission after consultation of the Court of Justice or at the request of the Court of Justice after consultation of the Commission.";
-(c) in the third paragraph, the words "the panel" shall be replaced by "the specialised court";
-212) Article 228 shall be amended as follows:
-"If the Commission considers that the Member State concerned has not taken the necessary measures to comply with judgment of the Court, it may bring the case before the Court of Justice of the European Union after giving that State the opportunity to submit its observations. It shall specify the amount of the lump sum or penalty payment to be paid by the Member State concerned which it considers appropriate in the circumstances."
-(b) the following new paragraph 3 shall be added:
-If the Court finds that there is an infringement it may impose a lump sum or penalty payment on the Member State concerned not exceeding the amount specified by the Commission. The payment obligation shall take effect on the date set by the Court in its judgment."
-EN
-214) Article 230 shall be amended as follows:
-(b) in the third paragraph, the words "by the Court of Auditors and by the ECB for the purpose of protecting their prerogatives" shall be replaced by "by the Court of Auditors, by the European Central Bank and by the Committee of the Regions for the purpose of protecting their prerogatives";
-"Any natural or legal person may, under the conditions laid down in the first and second paragraphs, institute proceedings against an act addressed to that person or which is of direct and individual concern to him or her, and against a regulatory act which is of direct concern to him or her and does not entail implementing measures.";
-"Acts setting up bodies, offices and agencies of the Union may lay down specific conditions and arrangements concerning actions brought by natural or legal persons against acts of these bodies, offices or agencies intended to produce legal effects in relation to them.".
-EN
-216) Article 232 shall be amended as follows:
-(b) in the third paragraph, the words ", body, office or agency" shall be inserted after "an institution";
-217) In Article 233, first paragraph, the words "or institutions" shall be deleted; the third paragraph shall be deleted.
-219) In Article 235, the reference to the second paragraph of Article 288 shall be replaced by a reference to the second and third paragraphs of Article 288.
-"Article 235a
-Such a request must be made within one month from the date of such determination. The Court shall rule within one month from the date of the request.".
-EN
-222) In Article 237(d), at the beginning of the second sentence, the word "Governing" shall be inserted before "Council" and the words "of Justice" shall be deleted at the end, after the word "Court".
-"Article 240a
-However, the Court shall have jurisdiction to monitor compliance with Article 25 of the Treaty on European Union and to rule on proceedings, brought in accordance with the conditions laid down in the fourth paragraph of Article 230 of this Treaty, reviewing the legality of decisions providing for restrictive measures against natural or legal persons adopted by the Council on the basis of Chapter 2 of Title V of the Treaty on European Union.
-In exercising its powers regarding the provisions of Sections 4 and 5 of Chapter IV of Title III relating to the area of freedom, security and justice, the Court of Justice of the European Union shall have no jurisdiction to review the validity or proportionality of operations carried out by the police or other law-enforcement services of a Member State or the exercise of the responsibilities incumbent upon Member States with regard to the maintenance of law and order and the safeguarding of internal security.".
-"Article 241
-CIG 1/1/07 REV 1 123
-225) In Article 242, second sentence, the words "of Justice" after "Court" shall be deleted.
-"The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may amend the provisions of the Statute, with the exception of Title I and Article 64. The European Parliament and the Council shall act either at the request of the Court of Justice and after consultation of the Commission, or on a proposal from the Commission and after consultation of the Court of Justice.".
-227) The following Section 4a and Article 245a shall be inserted:
-THE EUROPEAN CENTRAL BANK
-1. The European Central Bank, together with the national central banks, shall constitute the European System of Central Banks. The European Central Bank, together with the national central banks of the Member States whose currency is the euro, which constitute the Eurosystem, shall conduct the monetary policy of the Union.
-3. The European Central Bank shall have legal personality. It alone may authorise the issue of the euro. It shall be independent in the exercise of its powers and in the management of its finances. Union institutions, bodies, offices and agencies and the governments of the Member States shall respect that independence.
-EN
-5. Within the areas falling within its responsibilities, the European Central Bank shall be consulted on all proposed Union acts, and all proposals for regulation at national level, and may give an opinion.".
-(a) in paragraph 1, the words "of the Member States whose currency is the euro" shall be inserted at the end after "national central banks";
-229) An Article 245c shall be inserted, with the wording of Article 113.
-230) In Article 246, the word "Union's" shall be inserted before "audit" and the following new paragraph shall be added as a second paragraph:
-231) Article 247 shall be amended as follows:
-(b) in paragraph 2, renumbered 1, the word "countries" shall be replaced by "States";
-CIG 1/1/07 REV 1 125
-232) In Article 248, the word "bodies" shall be replaced by "bodies, offices or agencies", singular or plural as the case may be.
-233) The heading of Chapter 2 shall be replaced by the following "LEGAL ACTS OF THE UNION, ADOPTION PROCEDURES AND OTHER PROVISIONS".
-"SECTION 1 THE LEGAL ACTS OF THE UNION".
-(a) the first paragraph shall be replaced by the following:
-(b) the fourth paragraph shall be replaced by the following:
-236) The following new Articles 249a to 249d shall be inserted:
-1. The ordinary legislative procedure shall consist in the joint adoption by the European Parliament and the Council of a regulation, directive or decision on a proposal from the Commission. This procedure is defined in Article 251.
-CIG 1/1/07 REV 1 126
-3. Legal acts adopted by legislative procedure shall constitute legislative acts.
-Article 249b
-The objectives, content, scope and duration of the delegation of power shall be explicitly defined in the legislative acts. The essential elements of an area shall be reserved for the legislative act and accordingly shall not be the subject of a delegation of power.
-(a) the European Parliament or the Council may decide to revoke the delegation;
-For the purposes of (a) and (b), the European Parliament shall act by a majority of its component members, and the Council by a qualified majority.
-Article 249c
-2. Where uniform conditions for implementing legally binding Union acts are needed, those acts shall confer implementing powers on the Commission, or, in duly justified specific cases and in the cases provided for in Articles 11 and 13 of the Treaty on European Union, on the Council.
-EN
-4. The word "implementing" shall be inserted in the title of implementing acts.
-The Council shall adopt recommendations. It shall act on a proposal from the Commission in all cases where the Treaties provide that it shall adopt acts on a proposal from the Commission. It shall act unanimously in those areas in which unanimity is required for the adoption of a Union act. The Commission, and the European Central Bank in the specific cases provided for in the Treaties, shall adopt recommendations.".
-237) A Section 2 "PROCEDURES FOR THE ADOPTION OF ACTS AND OTHER PROVISIONS" shall be inserted before Article 250.
-"1. Where, pursuant to the Treaties, the Council acts on a proposal from the Commission, the Council may amend that proposal only by acting unanimously, except in the cases referred to in Articles 270a and 268, Article 251(10) and (13), Article 272 and the second paragraph of Article 273.".
-(a) in paragraph 1 the words "to this Article" shall be replaced by "to the ordinary legislative procedure";
-"First reading
-CIG 1/1/07 REV 1 128
-4. If the Council approves the European Parliament's position, the act concerned shall be adopted in the wording which corresponds to the position of the European Parliament.
-6. The Council shall inform the European Parliament fully of the reasons which led it to adopt its position at first reading. The Commission shall inform the European Parliament fully of its position.
-7. If, within three months of such communication, the European Parliament:
-(b) rejects, by a majority of its component members, the Council's position at first reading, the proposed act shall be deemed not to have been adopted;
-8. If, within three months of receiving the European Parliament's amendments, the Council, acting by a qualified majority:
-(b) does not approve all the amendments, the President of the Council, in agreement with the President of the European Parliament, shall within six weeks convene a meeting of the Conciliation Committee.
-Conciliation
-CIG 1/1/07 REV 1 129
-11. The Commission shall take part in the Conciliation Committee's proceedings and shall take all necessary initiatives with a view to reconciling the positions of the European Parliament and the Council.
-Third reading
-14. The periods of three months and six weeks referred to in this Article shall be extended by a maximum of one month and two weeks respectively at the initiative of the European Parliament or the Council.
-15. Where, in the cases provided for in the Treaties, a legislative act is submitted to the ordinary legislative procedure on the initiative of a group of Member States, on a recommendation by the European Central Bank, or at the request of the Court of Justice, paragraph 2, the second sentence of paragraph 6, and paragraph 9 shall not apply.
-240) Article 252 shall be replaced by the following:
-CIG 1/1/07 REV 1 130
-241) Article 253 shall be replaced by the following:
-Legal acts shall state the reasons on which they are based and shall refer to any proposals, initiatives, recommendations, requests or opinions required by the Treaties.
-242) Article 254 shall be replaced by the following:
-Legislative acts adopted under a special legislative procedure shall be signed by the President of the institution which adopted them.
-2. Non-legislative acts adopted in the form of regulations, directives or decisions, when the latter do not specify to whom they are addressed, shall be signed by the President of the institution which adopted them.
-Other directives, and decisions which specify to whom they are addressed, shall be notified to those to whom they are addressed and shall take effect upon such notification.".
-"Article 254a
-CIG 1/1/07 REV 1 131
-2. In compliance with the Staff Regulations and the Conditions of Employment adopted on the basis of Article 283, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish provisions to that end.".
-245) In Article 256, first paragraph, the words "Decisions of the Council or of the Commission which impose" shall be replaced by "Acts of the Council, the Commission or the European Central Bank which impose".
-246) The following new Chapter 3 and Article shall be inserted; Chapters 3 and 4 shall become Section 1 and Section 2 respectively and Chapter 5 shall be renumbered 4:
-Article 256a
-2. The Committee of the Regions shall consist of representatives of regional and local bodies who either hold a regional or local authority electoral mandate or are politically accountable to an elected assembly.
-4. The members of the Committee of the Regions and the Economic and Social Committee shall not be bound by any mandatory instructions. They shall be completely independent in the performance of their duties, in the Union's general interest.
-CIG 1/1/07 REV 1 132
-Economic and Social Committee
-248) In Article 258, the second and third paragraphs shall be replaced by the following paragraph:
-249) Article 259 shall be amended as follows:
-(b) paragraph 2 shall be replaced by the following:
-250) In Article 260, in the first paragraph, the words "two years" shall be replaced by "two and a half years" and in the third paragraph, the words "of the European Parliament," shall be inserted before "of the Council".
-(a) a reference to the European Parliament shall be inserted before the reference to the Council in the first, second and third paragraphs;
-(c) in the third paragraph, the words "and that of the specialised section" shall be deleted.
-CIG 1/1/07 REV 1 133
-Committee of the Regions
-(a) the first paragraph shall be deleted;
-"The Council, acting unanimously on a proposal from the Commission, shall adopt a decision determining the Committee's composition.";
-(d) the last paragraph shall be deleted.
-254) Article 265 shall be amended as follows:
-(b) the fourth paragraph shall be deleted;
-European Investment Bank
-CIG 1/1/07 REV 1 134
-256) In Article 267(b), the word "progressive" shall be deleted and the words "or functioning" shall be inserted after "establishment".
-257) Article 268 shall be amended as follows:
-(b) the second subparagraph shall be replaced by the following:
-(c) the following new paragraphs shall be inserted:
-3. The implementation of expenditure shown in the budget shall require the prior adoption of a legally binding Union act providing a legal basis for its action and for the implementation of the corresponding expenditure in accordance with the regulation referred to in Article 279, except in cases for which that law provides.
-5. The budget shall be implemented in accordance with the principle of sound financial management. Member States shall cooperate with the Union to ensure that the appropriations entered in the budget are used in accordance with this principle.
-CIG 1/1/07 REV 1 135
-The Union's own resources
-259) Article 269 shall be amended as follows:
-"The Union shall provide itself with the means necessary to attain its objectives and carry through its policies.";
-"The Council, acting in accordance with a special legislative procedure, shall unanimously and after consulting the European Parliament adopt a decision laying down the provisions relating to the system of own resources of the Union. In this context it may establish new categories of own resources or abolish an existing category. That decision shall not enter into force until it is approved by the Member States in accordance with their respective constitutional requirements.
-260) Article 270 shall be repealed.
-EN
-261) The following new Chapter 2 and new Article 270a shall be inserted:
-Article 270a
-It shall be established for a period of at least five years.
-2. The Council, acting in accordance with a special legislative procedure, shall adopt a regulation laying down the multiannual financial framework. The Council shall act unanimously after obtaining the consent of the European Parliament, which shall be given by a majority of its component members.
-3. The financial framework shall determine the amounts of the annual ceilings on commitment appropriations by category of expenditure and of the annual ceiling on payment appropriations. The categories of expenditure, limited in number, shall correspond to the Union's major sectors of activity.
-4. Where no Council regulation determining a new financial framework has been adopted by the end of the previous financial framework, the ceilings and other provisions corresponding to the last year of that framework shall be extended until such time as that act is adopted.
-CIG 1/1/07 REV 1 137
-The Union's annual budget
-263) An Article 270b shall be inserted, with the wording of Article 272(1).
-265) Article 272(1) shall become Article 270b and paragraphs 2 to 10 shall be replaced by the following:
-1. With the exception of the European Central Bank, each institution shall, before 1 July, draw up estimates of its expenditure for the following financial year. The Commission shall consolidate these estimates in a draft budget which may contain different estimates.
-2. The Commission shall submit a proposal containing the draft budget to the European Parliament and to the Council not later than 1 September of the year preceding that in which the budget is to be implemented.
-3. The Council shall adopt its position on the draft budget and forward it to the European Parliament not later than 1 October of the year preceding that in which the budget is to be implemented. The Council shall inform the European Parliament in full of the reasons which led it to adopt its position.
-(a) approves the position of the Council, the budget shall be adopted;
-CIG 1/1/07 REV 1 138
-(c) adopts amendments by a majority of its component members, the amended draft shall be forwarded to the Council and to the Commission. The President of the European Parliament, in agreement with the President of the Council, shall immediately convene a meeting of the Conciliation Committee. However, if within ten days of the draft being forwarded the Council informs the European Parliament that it has approved all its amendments, the Conciliation Committee shall not meet.
-The Commission shall take part in the Conciliation Committee's proceedings and shall take all the necessary initiatives with a view to reconciling the positions of the European Parliament and the Council.
-7. If, within the period of fourteen days referred to in paragraph 6:
-(b) the European Parliament, acting by a majority of its component members, and the Council both reject the joint text, or if one of these institutions rejects the joint text while the other one fails to take a decision, a new draft budget shall be submitted by the Commission; or
-CIG 1/1/07 REV 1 139
-(d) the European Parliament approves the joint text whilst the Council rejects it, the European Parliament may, within fourteen days from the date of the rejection by the Council and acting by a majority of its component members and three-fifths of the votes cast, decide to confirm all or some of the amendments referred to in paragraph 4(c). Where a European Parliament amendment is not confirmed, the position agreed in the Conciliation committee on the budget heading which is the subject of the amendment shall be retained. The budget shall be deemed to be definitively adopted on this basis.
-9. When the procedure provided for in this Article has been completed, the President of the European Parliament shall declare that the budget has been definitively adopted.
-266) Article 273 shall be amended as follows:
-(b) in the second paragraph, the words "on a proposal from the Commission," shall be inserted after "The Council" and the following shall be added at the end:"in accordance with the Regulations made pursuant to Article 279. The Council shall forward the decision immediately to the European Parliament.";
-CIG 1/1/07 REV 1 140
-(d) the last paragraph shall be replaced by the following:
-It shall enter into force thirty days following its adoption if the European Parliament, acting by a majority of its component members, has not decided to reduce this expenditure within that time-limit.".
-(a) the first paragraph shall be deleted;
-(c) in the last paragraph, the words "the Council, the Commission and the Court of Justice" shall be replaced by "the European Council and the Council, the Commission and the Court of Justice of the European Union".
-268) A Chapter 4 "IMPLEMENTATION OF THE BUDGET AND DISCHARGE", shall be inserted before Article 274, which shall be amended as follows:
-(b) the second paragraph shall be replaced by the following: "The regulations shall lay down the control and audit obligations of the Member States in the implementation of the budget and the resulting responsibilities. They shall also lay down the responsibilities and detailed rules for each institution concerning its part in effecting its own expenditure.".
-EN
-"The Commission shall also submit to the European Parliament and to the Council an evaluation report on the Union's finances based on the results achieved, in particular in relation to the indications given by the European Parliament and the Council pursuant to Article 276".
-Common financial provisions
-272) Article 277 shall be replaced by the following: "The multiannual financial framework and the annual budget shall be drawn up in euro.".
-(a) paragraph 1 shall be replaced by the following:
-(a) the financial rules which determine in particular the procedure to be adopted for establishing and implementing the budget and for presenting and auditing accounts;
-(b) in paragraph 2, the word "unanimously" and the words "obtaining the opinion of" shall be deleted.
-EN
-"Article 279a
-Article 279b
-Combating fraud
-276) Article 280 shall be amended as follows:
-(b) the following words: "and in all the Union's institutions, bodies, offices and agencies" shall be inserted in paragraph 4, after the words: "in the Member States" and the last sentence in the paragraph shall be deleted.
-277) A Title III "ENHANCED COOPERATION" shall be inserted after Article 280.
-EN
-"Article 280a
-Such cooperation shall not undermine the internal market or economic, social and territorial cohesion. It shall not constitute a barrier to or discrimination in trade between Member States, nor shall it distort competition between them.
-Any enhanced cooperation shall respect the competences, rights and obligations of those Member States which do not participate in it. Those Member States shall not impede its implementation by the participating Member States.
-1. When enhanced cooperation is being established, it shall be open to all Member States, subject to compliance with any conditions of participation laid down by the authorising decision. It shall also be open to them at any other time, subject to compliance with the acts already adopted within that framework, in addition to those conditions.
-2. The Commission and, where appropriate, the High Representative of the Union for Foreign Affairs and Security Policy shall keep the European Parliament and the Council regularly informed regarding developments in enhanced cooperation.
-1. Member States which wish to establish enhanced cooperation between themselves in one of the areas covered by the Treaties, with the exception of fields of exclusive competence and the common foreign and security policy, shall address a request to the Commission, specifying the scope and objectives of the enhanced cooperation proposed. The Commission may submit a proposal to the Council to that effect. In the event of the Commission not submitting a proposal, it shall inform the Member States concerned of the reasons for not doing so.
-CIG 1/1/07 REV 1 144
-2. The request of the Member States which wish to establish enhanced cooperation between themselves within the framework of the common foreign and security policy shall be addressed to the Council. It shall be forwarded to the High Representative of the Union for Foreign Affairs and Security Policy, who shall give an opinion on whether the enhanced cooperation proposed is consistent with the Union's common foreign and security policy, and to the Commission, which shall give its opinion in particular on whether the enhanced cooperation proposed is consistent with other Union policies. It shall also be forwarded to the European Parliament for information.
-Article 280e
-Unanimity shall be constituted by the votes of the representatives of the participating Member States only.
-Article 280f
-However, if the Commission considers that the conditions of participation have not been fulfilled, it shall indicate the arrangements to be adopted to fulfil those conditions and shall set a deadline for re-examining the request. On the expiry of that deadline, it shall re-examine the request, in accordance with the procedure set out in the second subparagraph. If the Commission considers that the conditions of participation have still not been met, the Member State concerned may refer the matter to the Council, which shall decide on the request. The Council shall act in accordance with Article 280e. It may also adopt the transitional measures referred to in the second subparagraph on a proposal from the Commission.
-EN
-The Council shall confirm the participation of the Member State concerned, after consulting the High Representative of the Union for Foreign Affairs and Security Policy and after noting, where necessary, that the conditions of participation have been fulfilled. The Council, on a proposal from the High Representative, may also adopt any transitional measures necessary with regard to the application of the acts already adopted within the framework of enhanced cooperation. However, if the Council considers that the conditions of participation have not been fulfilled, it shall indicate the arrangements to be adopted to fulfil those conditions and shall set a deadline for re-examining the request for participation.
-Article 280g
-Article 280h
-2. Where a provision of the Treaties which may be applied in the context of enhanced cooperation stipulates that the Council shall adopt acts under a special legislative procedure, the Council, acting unanimously in accordance with the arrangements laid down in Article 280e, may adopt a decision stipulating that it will act under the ordinary legislative procedure. The Council shall act after consulting the European Parliament.
-CIG 1/1/07 REV 1 146
-Article 280i
-General and final provisions
-280) Articles 281, 286, 293 and 305 shall be repealed.
-282) At the beginning of Article 283, the words "The Council shall, acting by a qualified majority on a proposal from the Commission and after consulting" shall be replaced by "The European Parliament and the Council shall, acting by means of regulations in accordance with the ordinary legislative procedure on a proposal from the Commission and after consulting" and at the end the words "servants of those Communities" shall be replaced by the words "servants of the Union".
-"Notwithstanding the second paragraph, the European Central Bank shall, in accordance with the general principles common to the laws of the Member States, make good any damage caused by it or by its servants in the performance of their duties.".
-285) In Article 291, the words ", the European Monetary Institute" shall be deleted.
-CIG 1/1/07 REV 1 147
-287) Article 299 shall be amended as follows:
-Paragraph 2 shall not be numbered;
-(c) at the beginning of the second paragraph, the words "The Council shall, when adopting the relevant measures referred to in the second subparagraph, take into account areas such as" shall be replaced by "The measures referred to in the first paragraph concern in particular areas such as";
-288) Articles 300 and 301 shall be replaced by Articles 188n and 188k respectively and Articles 302 to 304 shall be replaced by Article 188p.
-"Article 308
-CIG 1/1/07 REV 1 148
-2. Using the procedure for monitoring the subsidiarity principle referred to in Article 5(3) of the Treaty on European Union, the Commission shall draw national Parliaments' attention to proposals based on this Article.
-4. This Article cannot serve as a basis for attaining objectives pertaining to the common foreign and security policy and shall respect the limits set out in Article 25, second paragraph, of the Treaty on European Union.".
-"Article 308a
-- 269, third and fourth paragraphs,
-- 308, and
-291) Article 309 shall be replaced by the following:
-For the purposes of Article 7 of the Treaty on European Union on the suspension of certain rights resulting from Union membership, the member of the European Council or of the Council representing the Member State in question shall not take part in the vote and the Member State in question shall not be counted in the calculation of the one third or four fifths of Member States referred to in paragraphs 1 and 2 of that Article. Abstentions by members present in person or represented shall not prevent the adoption of decisions referred to in paragraph 2 of that Article.
-Where, following a decision to suspend voting rights adopted pursuant to paragraph 3 of that Article, the Council acts by a qualified majority on the basis of a provision of the Treaties, that qualified majority shall be defined in accordance with Article 205(3)(b), or, where the Council acts on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, in accordance with Article 205(3)(a). CIG 1/1/07 REV 1 149
-For the purposes of that Article, the European Parliament shall act by a two-thirds majority of the votes cast, representing the majority of its component members.".
-293) Article 311 shall be replaced by a text combining Article 299(2), first subparagraph, and Article 299(3) to (6); the text shall be amended as follows:
-"In addition to the provisions of Article 37 of the Treaty on European Union relating to the territorial scope of the Treaties, the following provisions shall apply:";
-(c) in paragraph 3, renumbered 2, the words "of this Treaty" shall be deleted;
-(e) the following new paragraph shall be inserted at the end of the Article:
-294) Article 314 shall be replaced by the following:
-CIG 1/1/07 REV 1 150
-FINAL PROVISIONS
-This Treaty is concluded for an unlimited period.
-1. Protocol No 11 annexed to this Treaty contains the amendments to the Protocols annexed to the Treaty on European Union, to the Treaty establishing the European Community and to the Treaty establishing the European Atomic Energy Community.
-Article 5
-2. The cross references to the articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union, as well as between them, shall be adapted accordingly. The same shall apply as regards references to the articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union contained in the other treaties and acts of primary legislation on which the Union is founded.
-Article 6
-CIG 1/1/07 REV 1 151
-CIG 1/1/07 REV 1 152
-2. This Treaty shall enter into force on 1 January 2009, provided that all the instruments of ratification have been deposited, or, failing that, on the first day of the month following the deposit of the instrument of ratification by the last signatory State to take this step.
-This Treaty, drawn up in a single original in the Bulgarian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Irish, Italian, Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Slovak, Slovenian, Spanish and Swedish languages, the texts in each of these languages being equally authentic, shall be deposited in the archives of the Government of the Italian Republic, which will transmit a certified copy to each of the governments of the other signatory States.
-Done at, \85
diff --git a/org.argeo.slc/src/test/slc/work/data/expected/nato-expected.txt b/org.argeo.slc/src/test/slc/work/data/expected/nato-expected.txt
deleted file mode 100644 (file)
index a2c19f0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-The North Atlantic Treaty
-
-
-
-Article 1
-The Parties undertake, as set forth in the Charter of the United Nations, to settle any international dispute in which they may be involved by peaceful means in such a manner that international peace and security and justice are not endangered, and to refrain in their international relations from the threat or use of force in any manner inconsistent with the purposes of the United Nations.
-
-Article 3
-In order more effectively to achieve the objectives of this Treaty, the Parties, separately and jointly, by means of continuous and effective self-help and mutual aid, will maintain and develop their individual and collective capacity to resist armed attack.
-
-Article 5
-The Parties agree that an armed attack against one or more of them in Europe or North America shall be considered an attack against them all and consequently they agree that, if such an armed attack occurs, each of them, in exercise of the right of individual or collective self-defence recognised by Article 51 of the Charter of the United Nations, will assist the Party or Parties so attacked by taking forthwith, individually and in concert with the other Parties, such action as it deems necessary, including the use of armed force, to restore and maintain the security of the North Atlantic area.
-Any such armed attack and all measures taken as a result thereof shall immediately be reported to the Security Council. Such measures shall be terminated when the Security Council has taken the measures necessary to restore and maintain international peace and security .
-
-
-    * on the forces, vessels, or aircraft of any of the Parties, when in or over these territories or any other area in Europe in which occupation forces of any of the Parties were stationed on the date when the Treaty entered into force or the Mediterranean Sea or the North Atlantic area north of the Tropic of Cancer.
-Article 7
-This Treaty does not affect, and shall not be interpreted as affecting in any way the rights and obligations under the Charter of the Parties which are members of the United Nations, or the primary responsibility of the Security Council for the maintenance of international peace and security.
-
-Article 9
-The Parties hereby establish a Council, on which each of them shall be represented, to consider matters concerning the implementation of this Treaty. The Council shall be so organised as to be able to meet promptly at any time. The Council shall set up such subsidiary bodies as may be necessary; in particular it shall establish immediately a defence committee which shall recommend measures for the implementation of Articles 3 and 5.
-
-Article 11
-This Treaty shall be ratified and its provisions carried out by the Parties in accordance with their respective constitutional processes. The instruments of ratification shall be deposited as soon as possible with the Government of the United States of America, which will notify all the other signatories of each deposit. The Treaty shall enter into force between the States which have ratified it as soon as the ratifications of the majority of the signatories, including the ratifications of Belgium, Canada, France, Luxembourg, the Netherlands, the United Kingdom and the United States, have been deposited and shall come into effect with respect to other States on the date of the deposit of their ratifications. (3)
-
-Article 13
-After the Treaty has been in force for twenty years, any Party may cease to be a Party one year after its notice of denunciation has been given to the Government of the United States of America, which will inform the Governments of the other Parties of the deposit of each notice of denunciation.
-
diff --git a/org.argeo.slc/src/test/slc/work/data/expected/un-expected.txt b/org.argeo.slc/src/test/slc/work/data/expected/un-expected.txt
deleted file mode 100644 (file)
index 8c8e717..0000000
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/org.argeo.slc/src/test/slc/work/data/input/eu-reform-in.txt b/org.argeo.slc/src/test/slc/work/data/input/eu-reform-in.txt
deleted file mode 100644 (file)
index 1ea1b31..0000000
+++ /dev/null
@@ -1,2106 +0,0 @@
-CONFERENCE\r
-OF THE REPRESENTATIVES OF THE GOVERNMENTS\r
-OF THE MEMBER STATES\r
-Brussels, 5 October 2007\r
-(OR. fr)\r
-CIG 1/1/07\r
-REV 1\r
-NOTE\r
-from:\r
-Presidency of the IGC\r
-date:\r
-5 October 2007\r
-to:\r
-Intergovernmental Conference (IGC)\r
-Subject:\r
-IGC 2007\r
-Draft Treaty amending the Treaty on European Union and the Treaty establishing the European Community\r
-DRAFT\r
-TREATY AMENDING THE TREATY ON EUROPEAN UNION AND THE TREATY ESTABLISHING THE EUROPEAN COMMUNITY\r
-Articles 1 to 7 of the Reform Treaty\r
-The Presidency herewith forwards to the Intergovernmental Conference the full text of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community, including the Protocols, and the Declarations for the Final Act, as these texts emerged from the proceedings of the Working Party of Legal Experts.\r
-The Presidency will submit this text to the Intergovernmental Conference (Foreign Ministers) meeting in Luxembourg on 15 October 2007, with a view to its final adoption at the Intergovernmental Conference (Heads of State or of Government) meeting in Lisbon on 18 October 2007.\r
-All the language versions of this text are being forwarded to the delegations today, 5 October 2007. In accordance with normal practice, each language version will be finalised by the Council's legal/linguistic experts before the Treaty is signed.\r
-CIG 1/1/07 REV 1 1\r
-EN\r
-\r
-Article 1\r
-The Treaty on European Union shall be amended in accordance with the provisions of this Article.\r
-Preamble\r
-1) The preamble shall be amended as follows:\r
-(a) the following text shall be inserted as the second recital:\r
-"DRAWING INSPIRATION from the cultural, religious and humanist inheritance of Europe, from which have developed the universal values of the inviolable and inalienable rights of the human person, freedom, democracy, equality and the rule of law,";\r
-(b) In the eighth recital, the words "of this Treaty" shall be replaced by "of this Treaty and of the Treaty on the Functioning of the European Union,";\r
-(c) In the twelfth recital, the words "of this Treaty" shall be replaced by "of this Treaty and of the Treaty on the Functioning of the European Union,".\r
-General provisions\r
-2) Article 1 shall be amended as follows:\r
-(a) the following words shall be inserted at the end of the first paragraph:\r
-"on which the Member States confer competences to attain objectives they have in common.";\r
-(b) the third paragraph shall be replaced by the following:\r
-"The Union shall be founded on the present Treaty and on the Treaty on the Functioning of the European Union (hereinafter referred to as "the Treaties"). Those two Treaties shall have the same legal value. The Union shall replace and succeed the European Community.".\r
-CIG 1/1/07 REV 1 3\r
-EN\r
-3) An Article 2 shall be inserted and the existing Article 2 shall be renumbered Article 3:\r
-"Article 2\r
-The Union is founded on the values of respect for human dignity, freedom, democracy, equality, the rule of law and respect for human rights, including the rights of persons belonging to minorities. These values are common to the Member States in a society in which pluralism, non-discrimination, tolerance, justice, solidarity and equality between women and men prevail.".\r
-4) Article 2, renumbered 3, shall be replaced by the following:\r
-"Article 3\r
-1. The Union's aim is to promote peace, its values and the well-being of its peoples.\r
-2. The Union shall offer its citizens an area of freedom, security and justice without internal frontiers, in which the free movement of persons is ensured in conjunction with appropriate measures with respect to external border controls, asylum, immigration and the prevention and combating of crime.\r
-3. The Union shall establish an internal market. It shall work for the sustainable development of Europe based on balanced economic growth and price stability, a highly competitive social market economy, aiming at full employment and social progress, and a high level of protection and improvement of the quality of the environment. It shall promote scientific and technological advance.\r
-It shall combat social exclusion and discrimination, and shall promote social justice and protection, equality between women and men, solidarity between generations and protection of the rights of the child.\r
-It shall promote economic, social and territorial cohesion, and solidarity among Member States.\r
-It shall respect its rich cultural and linguistic diversity, and shall ensure that Europe's cultural heritage is safeguarded and enhanced.\r
-4. The Union shall establish an economic and monetary union whose currency is the euro.\r
-CIG 1/1/07 REV 1 4\r
-EN\r
-5. In its relations with the wider world, the Union shall uphold and promote its values and interests and contribute to the protection of its citizens. It shall contribute to peace, security, the sustainable development of the Earth, solidarity and mutual respect among peoples, free and fair trade, eradication of poverty and the protection of human rights, in particular the rights of the child, as well as to the strict observance and the development of international law, including respect for the principles of the United Nations Charter.\r
-6. The Union shall pursue its objectives by appropriate means commensurate with the competences which are conferred upon it in the Treaties.".\r
-5) Article 3, renumbered 4, shall be replaced by the following:\r
-"Article 4\r
-1. In accordance with Article 5, competences not conferred upon the Union in the Treaties remain with the Member States.\r
-2. The Union shall respect the equality of Member States before the Treaties as well as their national identities, inherent in their fundamental structures, political and constitutional, inclusive of regional and local self-government. It shall respect their essential State functions, including ensuring the territorial integrity of the State, maintaining law and order and safeguarding national security. In particular, national security remains the sole responsibility of each Member State.\r
-3. Pursuant to the principle of sincere cooperation, the Union and the Member States shall, in full mutual respect, assist each other in carrying out tasks which flow from the Treaties.\r
-The Member States shall take any appropriate measure, general or particular, to ensure fulfilment of the obligations arising out of the Treaties or resulting from the acts of the institutions of the Union.\r
-The Member States shall facilitate the achievement of the Union's tasks and refrain from any measure which could jeopardise the attainment of the Union's objectives.".\r
-CIG 1/1/07 REV 1 5\r
-EN\r
-6) Article 4, renumbered 5, shall be replaced by the following:\r
-"Article 5\r
-1. The limits of Union competences are governed by the principle of conferral. The use of Union competences is governed by the principles of subsidiarity and proportionality.\r
-2. Under the principle of conferral, the Union shall act only within the limits of the competences conferred upon it by the Member States in the Treaties to attain the objectives set out therein. Competences not conferred upon the Union in the Treaties remain with the Member States.\r
-3. Under the principle of subsidiarity, in areas which do not fall within its exclusive competence, the Union shall act only if and insofar as the objectives of the proposed action cannot be sufficiently achieved by the Member States, either at central level or at regional and local level, but can rather, by reason of the scale or effects of the proposed action, be better achieved at Union level.\r
-The institutions of the Union shall apply the principle of subsidiarity as laid down in the Protocol on the application of the principles of subsidiarity and proportionality. National Parliaments shall ensure compliance with that principle in accordance with the procedure set out in that Protocol.\r
-4. Under the principle of proportionality, the content and form of Union action shall not exceed what is necessary to achieve the objectives of the Treaties.\r
-The institutions of the Union shall apply the principle of proportionality as laid down in the Protocol on the application of the principles of subsidiarity and proportionality.".\r
-7) Article 5 shall be repealed.\r
-8) Article 6 shall be replaced by the following:\r
-"Article 6\r
-1. The Union recognises the rights, freedoms and principles set out in the Charter of Fundamental Rights of 7 December 2000, as adapted [at\85, on... 2007], which shall have the same legal value as the Treaties.\r
-The provisions of the Charter shall not extend in any way the competences of the Union as defined in the Treaties.\r
-CIG 1/1/07 REV 1 6\r
-EN\r
-The rights, freedoms and principles in the Charter shall be interpreted in accordance with the general provisions in Title VII of the Charter governing its interpretation and application and with due regard to the explanations referred to in the Charter, that set out the sources of those provisions.\r
-2. The Union shall accede to the European Convention for the Protection of Human Rights and Fundamental Freedoms. Such accession shall not affect the Union's competences as defined in the Treaties.\r
-3. Fundamental rights, as guaranteed by the European Convention for the Protection of Human Rights and Fundamental Freedoms and as they result from the constitutional traditions common to the Member States, shall constitute general principles of the Union's law."\r
-9) Article 7 shall be amended as follows:\r
-(a) throughout the Article, the word "assent" shall be replaced by "consent", the reference to breach "of principles mentioned in Article 6(1)" shall be replaced by a reference to breach "of the values referred to in Article 2" and the words "of this Treaty" shall be replaced by "of the Treaties";\r
-(b) at the end of the first sentence of the first subparagraph of paragraph 1, the words "and address appropriate recommendations to that State" shall be deleted; at the end of the last sentence, the words "and, acting in accordance with the same procedure, may call on independent persons to submit within a reasonable time limit a report on the situation in the Member State in question" shall be replaced by "and may address recommendations to it, acting in accordance with the same procedure.";\r
-(c) in paragraph 2, the words "the Council, meeting in the composition of the Heads of State or Government and acting by unanimity" shall be replaced by "the European Council, acting by unanimity" and the words "the government of the Member State in question" shall be replaced by "the Member State in question";\r
-(d) paragraphs 5 and 6 shall be replaced by the following:\r
-"5. The voting arrangements applying to the European Parliament, the European Council and the Council for the purposes of this Article are laid down in Article 309 of the Treaty on the Functioning of the European Union."\r
-CIG 1/1/07 REV 1 7\r
-EN\r
-10) The following new Article 7a shall be inserted:\r
-"Article 7a\r
-1. The Union shall develop a special relationship with neighbouring countries, aiming to establish an area of prosperity and good neighbourliness, founded on the values of the Union and characterised by close and peaceful relations based on cooperation.\r
-2. For the purposes of paragraph 1, the Union may conclude specific agreements with the countries concerned. These agreements may contain reciprocal rights and obligations as well as the possibility of undertaking activities jointly. Their implementation shall be the subject of periodic consultation.".\r
-11) The provisions of Title II of the EU Treaty shall be incorporated into the Treaty establishing the European Community, as amended elsewhere, which shall become the Treaty on the Functioning of the European Union.\r
-Democratic principles\r
-12) Title II and Article 8 shall be replaced by the following new heading and new articles:\r
-"TITLE II PROVISIONS ON DEMOCRATIC PRINCIPLES\r
-Article 8\r
-In all its activities, the Union shall observe the principle of the equality of its citizens, who shall receive equal attention from its institutions, bodies, offices and agencies. Every national of a Member State shall be a citizen of the Union. Citizenship of the Union shall be additional to national citizenship and shall not replace it.\r
-Article 8a\r
-1. The functioning of the Union shall be founded on representative democracy.\r
-2. Citizens are directly represented at Union level in the European Parliament.\r
-CIG 1/1/07 REV 1 8\r
-EN\r
-Member States are represented in the European Council by their Heads of State or Government and in the Council by their governments, themselves democratically accountable either to their national Parliaments, or to their citizens.\r
-3. Every citizen shall have the right to participate in the democratic life of the Union. Decisions shall be taken as openly and as closely as possible to the citizen.\r
-4. Political parties at European level contribute to forming European political awareness and to expressing the will of citizens of the Union.\r
-Article 8b\r
-1. The institutions shall, by appropriate means, give citizens and representative associations the opportunity to make known and publicly exchange their views in all areas of Union action.\r
-2. The institutions shall maintain an open, transparent and regular dialogue with representative associations and civil society.\r
-3. The Commission shall carry out broad consultations with parties concerned in order to ensure that the Union's actions are coherent and transparent.\r
-4. Not less than one million citizens who are nationals of a significant number of Member States may take the initiative of inviting the Commission, within the framework of its powers, to submit any appropriate proposal on matters where citizens consider that a legal act of the Union is required for the purpose of implementing the Treaties.\r
-The procedures and conditions required for such a citizens' initiative shall be determined in accordance with the first paragraph of Article 21 of the Treaty on the Functioning of the European Union.\r
-Article 8c\r
-National Parliaments shall contribute actively to the good functioning of the Union:\r
-(a) through being informed by the institutions of the Union and having draft European legislative acts forwarded to them in accordance with the Protocol on the role of national Parliaments in the European Union;\r
-(b) by seeing to it that the principle of subsidiarity is respected in accordance with the procedures provided for in the Protocol on the application of the principles of subsidiarity and proportionality;\r
-CIG 1/1/07 REV 1 9\r
-EN\r
-(c) by taking part, within the framework of the area of freedom, security and justice, in the evaluation mechanisms for the implementation of the Union policies in that area, in accordance with Article 64 of the Treaty on the Functioning of the European Union, and through being involved in the political monitoring of Europol and the evaluation of Eurojust's activities in accordance with Articles 69k and 69h of that Treaty;\r
-(d) by taking part in the revision procedures of the Treaties, in accordance with Article 33 of this Treaty;\r
-(e) by being notified of applications for accession to the Union, in accordance with Article 34 of this Treaty;\r
-(f) by taking part in the inter-parliamentary cooperation between national Parliaments and with the European Parliament, in accordance with the Protocol on the role of national Parliaments in the European Union."\r
-Institutions\r
-13) The provisions of Title III of the EU Treaty shall be repealed. Title III shall be replaced by the following heading:\r
-"TITLE III PROVISIONS ON THE INSTITUTIONS".\r
-14) Article 9 shall be replaced by the following:\r
-"Article 9\r
-1. The Union shall have an institutional framework which shall aim to promote its values, advance its objectives, serve its interests, those of its citizens and those of the Member States, and ensure the consistency, effectiveness and continuity of its policies and actions.\r
-The Union's institutions shall be:\r
-- the European Parliament,\r
-- the European Council,\r
-- the Council,\r
-- the European Commission (hereinafter referred to as the "Commission"),\r
-- the Court of Justice of the European Union,\r
-- the European Central Bank,\r
-- the Court of Auditors.\r
-CIG 1/1/07 REV 1 10\r
-EN\r
-2. Each institution shall act within the limits of the powers conferred on it in the Treaties, and in conformity with the procedures, conditions and objectives set out in them. The institutions shall practice mutual sincere cooperation.\r
-3. The provisions relating to the European Central Bank and the Court of Auditors and detailed provisions on the other institutions are set out in the Treaty on the Functioning of the European Union.\r
-4. The European Parliament, the Council and the Commission shall be assisted by an Economic and Social Committee and a Committee of the Regions acting in an advisory capacity.".\r
-15) An Article 9a shall be inserted:\r
-"Article 9a\r
-1. The European Parliament shall, jointly with the Council, exercise legislative and budgetary functions. It shall exercise functions of political control and consultation as laid down in the Treaties. It shall elect the President of the Commission.\r
-2. The European Parliament shall be composed of representatives of the Union's citizens. They shall not exceed seven hundred and fifty in number. Representation of citizens shall be degressively proportional, with a minimum threshold of six members per Member State. No Member State shall be allocated more than ninety-six seats.\r
-The European Council shall adopt by unanimity, on the initiative of the European Parliament and with its consent, a decision establishing the composition of the European Parliament, respecting the principles referred to in the first subparagraph.\r
-3. The members of the European Parliament shall be elected for a term of five years by direct universal suffrage in a free and secret ballot.\r
-4. The European Parliament shall elect its President and its officers from among its members.".\r
-16) An Article 9b shall be inserted:\r
-"Article 9b\r
-1. The European Council shall provide the Union with the necessary impetus for its development and shall define the general political directions and priorities thereof. It shall not exercise legislative functions.\r
-CIG 1/1/07 REV 1 11\r
-EN\r
-2. The European Council shall consist of the Heads of State or Government of the Member States, together with its President and the President of the Commission. The High Representative of the Union for Foreign Affairs and Security Policy shall take part in its work.\r
-3. The European Council shall meet twice every six months, convened by its President. When the agenda so requires, the members of the European Council may decide each to be assisted by a minister and, in the case of the President of the Commission, by a member of the Commission. When the situation so requires, the President shall convene a special meeting of the European Council.\r
-4. Except where the Treaties provide otherwise, decisions of the European Council shall be taken by consensus.\r
-5. The European Council shall elect its President, by a qualified majority, for a term of two and a half years, renewable once. In the event of an impediment or serious misconduct, the European Council can end his or her term of office in accordance with the same procedure.\r
-6. The President of the European Council:\r
-(a) shall chair it and drive forward its work;\r
-(b) shall ensure the preparation and continuity of the work of the European Council in cooperation with the President of the Commission, and on the basis of the work of the General Affairs Council;\r
-(c) shall endeavour to facilitate cohesion and consensus within the European Council;\r
-(d) shall present a report to the European Parliament after each of the meetings of the European Council.\r
-The President of the European Council shall, at his or her level and in that capacity, ensure the external representation of the Union on issues concerning its common foreign and security policy, without prejudice to the powers of the High Representative of the Union for Foreign Affairs and Security Policy.\r
-The President of the European Council shall not hold a national office.".\r
-17) An Article 9c shall be inserted:\r
-"Article 9c\r
-1. The Council shall, jointly with the European Parliament, exercise legislative and budgetary functions. It shall carry out policy-making and coordinating functions as laid down in the Treaties.\r
-CIG 1/1/07 REV 1 12\r
-EN\r
-2. The Council shall consist of a representative of each Member State at ministerial level, who may commit the government of the Member State in question and cast its vote.\r
-3. The Council shall act by a qualified majority except where the Treaties provide otherwise.\r
-4. As from 1 November 2014, a qualified majority shall be defined as at least 55 % of the members of the Council, comprising at least fifteen of them and representing Member States comprising at least 65 % of the population of the Union.\r
-A blocking minority must include at least four Council members, failing which the qualified majority shall be deemed attained.\r
-The other arrangements governing the qualified majority are laid down in Article 205(2) of the Treaty on the Functioning of the European Union.\r
-5. The transitional provisions relating to the definition of the qualified majority which shall be applicable until 31 October 2014 and those which shall be applicable from 1 November 2014 to 31 March 2017 are laid down in the Protocol on transitional provisions.\r
-6. The Council shall meet in different configurations, the list of which shall be adopted in accordance with Article 201b(a), of the Treaty on the Functioning of the European Union.\r
-The General Affairs Council shall ensure consistency in the work of the different Council configurations. It shall prepare and ensure the follow-up to meetings of the European Council, in liaison with the President of the European Council and the Commission.\r
-The Foreign Affairs Council shall elaborate the Union's external action on the basis of strategic guidelines laid down by the European Council and ensure that the Union's action is consistent.\r
-7. A Committee of Permanent Representatives of the Governments of the Member States shall be responsible for preparing the work of the Council.\r
-8. The Council shall meet in public when it deliberates and votes on a draft legislative act. To this end, each Council meeting shall be divided into two parts, dealing respectively with deliberations on Union legislative acts and non-legislative activities.\r
-9. The Presidency of Council configurations, other than that of Foreign Affairs, shall be held by Member State representatives in the Council on the basis of equal rotation, in accordance with the conditions established in accordance with Article 201b(b), of the Treaty on the Functioning of the European Union."\r
-CIG 1/1/07 REV 1 13\r
-EN\r
-18) An Article 9d shall be inserted:\r
-"Article 9d\r
-1. The Commission shall promote the general interest of the Union and take appropriate initiatives to that end. It shall ensure the application of the Treaties, and measures adopted by the institutions pursuant to them. It shall oversee the application of Union law under the control of the Court of Justice of the European Union. It shall execute the budget and manage programmes. It shall exercise coordinating, executive and management functions, as laid down in the Treaties. With the exception of the common foreign and security policy, and other cases provided for in the Treaties, it shall ensure the Union's external representation. It shall initiate the Union's annual and multiannual programming with a view to achieving interinstitutional agreements.\r
-2. Union legislative acts may be adopted only on the basis of a Commission proposal, except where the Treaties provide otherwise. Other acts shall be adopted on the basis of a Commission proposal where the Treaties so provide.\r
-3. The Commission's term of office shall be five years.\r
-The members of the Commission shall be chosen on the ground of their general competence and European commitment from persons whose independence is beyond doubt.\r
-In carrying out its responsibilities, the Commission shall be completely independent. Without prejudice to Article 9e(2), the members of the Commission shall neither seek nor take instructions from any government or other institution, body, office or entity. They shall refrain from any action incompatible with their duties or the performance of their tasks.\r
-4. The Commission appointed between the date of entry into force of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community and 31 October 2014 shall consist of one national of each Member State, including its President and the High Representative of the Union for Foreign Affairs and Security Policy who shall be one of its Vice-Presidents.\r
-5. As from 1 November 2014, the Commission shall consist of a number of members, including its President and the High Representative of the Union for Foreign Affairs and Security Policy, corresponding to two thirds of the number of Member States, unless the European Council, acting unanimously, decides to alter this number.\r
-The members of the Commission shall be chosen from among the nationals of the Member States on the basis of a system of strictly equal rotation between the Member States, reflecting the demographic and geographical range of all the Member States. This system shall be established unanimously by the European Council in accordance with Article 211 of the Treaty on the Functioning of the European Union.\r
-CIG 1/1/07 REV 1 14\r
-EN\r
-6. The President of the Commission shall:\r
-(a) lay down guidelines within which the Commission is to work;\r
-(b) decide on the internal organisation of the Commission, ensuring that it acts consistently, efficiently and as a collegiate body;\r
-(c) appoint Vice-Presidents, other than the High Representative of the Union for Foreign Affairs and Security Policy, from among the members of the Commission.\r
-A member of the Commission shall resign if the President so requests. The High Representative of the Union for Foreign Affairs and Security Policy shall resign, in accordance with the procedure set out in Article 9e(1), if the President so requests.\r
-7. Taking into account the elections to the European Parliament and after having held the appropriate consultations, the European Council, acting by a qualified majority, shall propose to the European Parliament a candidate for President of the Commission. This candidate shall be elected by the European Parliament by a majority of its component members. If he or she does not obtain the required majority, the European Council, acting by a qualified majority, shall within one month propose a new candidate who shall be elected by the European Parliament following the same procedure.\r
-The Council, by common accord with the President-elect, shall adopt the list of the other persons whom it proposes for appointment as members of the Commission. They shall be selected, on the basis of the suggestions made by Member States, in accordance with the criteria set out in paragraph 3, second subparagraph, and paragraph 5, second subparagraph.\r
-The President, the High Representative of the Union for Foreign Affairs and Security Policy and the other members of the Commission shall be subject as a body to a vote of consent by the European Parliament. On the basis of this consent the Commission shall be appointed by the European Council, acting by a qualified majority.\r
-8. The Commission, as a body, shall be responsible to the European Parliament. In accordance with Article 201 of the Treaty on the Functioning of the European Union, the European Parliament may vote on a censure motion on the Commission. If such a motion is carried, the members of the Commission shall resign as a body and the High Representative of the Union for Foreign Affairs and Security Policy shall resign from the duties that he or she carries out in the Commission."\r
-CIG 1/1/07 REV 1 15\r
-EN\r
-19) The following new Article 9e shall be inserted:\r
-"Article 9e\r
-1. The European Council, acting by a qualified majority, with the agreement of the President of the Commission, shall appoint the High Representative of the Union for Foreign Affairs and Security Policy. The European Council may end his or her term of office by the same procedure.\r
-2. The High Representative shall conduct the Union's common foreign and security policy. He or she shall contribute by his or her proposals to the development of that policy, which he or she shall carry out as mandated by the Council. The same shall apply to the common security and defence policy.\r
-3. The High Representative shall preside over the Foreign Affairs Council.\r
-4. The High Representative shall be one of the Vice-Presidents of the Commission. He or she shall ensure the consistency of the Union's external action. He or she shall be responsible within the Commission for responsibilities incumbent on it in external relations and for coordinating other aspects of the Union's external action. In exercising these responsibilities within the Commission, and only for these responsibilities, the High Representative shall be bound by Commission procedures to the extent that this is consistent with paragraphs 2 and 3.".\r
-20) An Article 9f shall be inserted:\r
-"Article 9f\r
-1. The Court of Justice of the European Union shall include the Court of Justice, the General Court and specialised courts. It shall ensure that in the interpretation and application of the Treaties the law is observed.\r
-Member States shall provide remedies sufficient to ensure effective legal protection in the fields covered by Union law.\r
-2. The Court of Justice shall consist of one judge from each Member State. It shall be assisted by Advocates-General.\r
-The General Court shall include at least one judge per Member State.\r
-CIG 1/1/07 REV 1 16\r
-EN\r
-The judges and the Advocates-General of the Court of Justice and the judges of the General Court shall be chosen from persons whose independence is beyond doubt and who satisfy the conditions set out in Articles 223 and 224 of the Treaty on the Functioning of the European Union. They shall be appointed by common accord of the governments of the Member States for six years. Retiring judges and Advocates-General may be reappointed.\r
-3. The Court of Justice of the European Union shall in accordance with the Treaties:\r
-(a) rule on actions brought by a Member State, an institution or a natural or legal person;\r
-(b) give preliminary rulings, at the request of courts or tribunals of the Member States, on the interpretation of Union law or the validity of acts adopted by the institutions;\r
-(c) rule in other cases provided for in the Treaties.".\r
-21) The provisions of Title IV of the EU Treaty shall be incorporated into the Treaty establishing the European Atomic Energy Community, as amended elsewhere.\r
-Enhanced cooperation\r
-22) Title IV shall take over the heading of Title VII "PROVISIONS ON ENHANCED COOPERATION" and Articles 27a to 27e, Articles 40 to 40b and Articles 43 to 45 shall be replaced by the following Article 10:\r
-"Article 10\r
-1. Member States which wish to establish enhanced cooperation between themselves within the framework of the Union's non-exclusive competences may make use of its institutions and exercise those competences by applying the relevant provisions of the Treaties, subject to the limits and in accordance with the procedures laid down in this Article and in Articles 280a to 280i of the Treaty on the Functioning of the European Union.\r
-Enhanced cooperation shall aim to further the objectives of the Union, protect its interests and reinforce its integration process. Such cooperation shall be open at any time to all Member States, in accordance with Article 280c of the Treaty on the Functioning of the European Union.\r
-CIG 1/1/07 REV 1 17\r
-EN\r
-2. The decision authorising enhanced cooperation shall be adopted by the Council as a last resort, when it has established that the objectives of such cooperation cannot be attained within a reasonable period by the Union as a whole, and provided that at least nine Member States participate in it. The Council shall act in accordance with the procedure laid down in Article 280d of the Treaty on the Functioning of the European Union.\r
-3. All members of the Council may participate in its deliberations, but only members of the Council representing the Member States participating in enhanced cooperation shall take part in the vote. The voting rules are set out in Article 280e of the Treaty on the Functioning of the European Union.\r
-4. Acts adopted in the framework of enhanced cooperation shall bind only participating Member States. They shall not be regarded as part of the acquis which has to be accepted by candidate States for accession to the Union."\r
-23) Title V of the EU Treaty shall be renamed as follows: "GENERAL PROVISIONS ON THE UNION'S EXTERNAL ACTION AND SPECIFIC PROVISIONS ON THE COMMON FOREIGN AND SECURITY POLICY".\r
-General provisions on the Union's external action\r
-24) The following new chapter shall be inserted:\r
-"CHAPTER 1 GENERAL PROVISIONS ON THE UNION'S EXTERNAL ACTION\r
-Article 10a\r
-1. The Union's action on the international scene shall be guided by the principles which have inspired its own creation, development and enlargement, and which it seeks to advance in the wider world: democracy, the rule of law, the universality and indivisibility of human rights and fundamental freedoms, respect for human dignity, the principles of equality and solidarity, and respect for the principles of the United Nations Charter and international law.\r
-The Union shall seek to develop relations and build partnerships with third countries, and international, regional or global organisations which share the principles referred to in the first subparagraph. It shall promote multilateral solutions to common problems, in particular in the framework of the United Nations.\r
-CIG 1/1/07 REV 1 18\r
-EN\r
-2. The Union shall define and pursue common policies and actions, and shall work for a high degree of cooperation in all fields of international relations, in order to:\r
-(a) safeguard its values, fundamental interests, security, independence and integrity;\r
-(b) consolidate and support democracy, the rule of law, human rights and the principles of international law;\r
-(c) preserve peace, prevent conflicts and strengthen international security, in accordance with the purposes and principles of the United Nations Charter, with the principles of the Helsinki Final Act and with the aims of the Charter of Paris, including those relating to external borders;\r
-(d) foster the sustainable economic, social and environmental development of developing countries, with the primary aim of eradicating poverty;\r
-(e) encourage the integration of all countries into the world economy, including through the progressive abolition of restrictions on international trade;\r
-(f) help develop international measures to preserve and improve the quality of the environment and the sustainable management of global natural resources, in order to ensure sustainable development;\r
-(g) assist populations, countries and regions confronting natural or man-made disasters; and\r
-(h) promote an international system based on stronger multilateral cooperation and good global governance.\r
-3. The Union shall respect the principles and pursue the objectives set out in paragraphs 1 and 2 in the development and implementation of the different areas of the Union's external action covered by this Title and Part Five of the Treaty on the Functioning of the European Union, and of the external aspects of its other policies.\r
-The Union shall ensure consistency between the different areas of its external action and between these and its other policies. The Council and the Commission, assisted by the High Representative of the Union for Foreign Affairs and Security Policy, shall ensure that consistency and shall cooperate to that effect.\r
-CIG 1/1/07 REV 1 19\r
-EN\r
-Article 10b\r
-1. On the basis of the principles and objectives set out in Article 10a, the European Council shall identify the strategic interests and objectives of the Union.\r
-Decisions of the European Council on the strategic interests and objectives of the Union shall relate to the common foreign and security policy and to other areas of the external action of the Union. Such decisions may concern the relations of the Union with a specific country or region or may be thematic in approach. They shall define their duration, and the means to be made available by the Union and the Member States.\r
-The European Council shall act unanimously on a recommendation from the Council, adopted by the latter under the arrangements laid down for each area. Decisions of the European Council shall be implemented in accordance with the procedures provided for in the Treaties.\r
-2. The High Representative of the Union for Foreign Affairs and Security Policy, for the area of common foreign and security policy, and the Commission, for other areas of external action, may submit joint proposals to the Council.".\r
-The common foreign and security policy\r
-25) The following headings shall be inserted:\r
-"CHAPTER 2 SPECIFIC PROVISIONS ON THE COMMON FOREIGN AND SECURITY POLICY\r
-SECTION 1 COMMON PROVISIONS".\r
-26) The following new Article 10c shall be inserted:\r
-"Article 10c\r
-The Union's action on the international scene, pursuant to this Chapter, shall be guided by the principles, shall pursue the objectives of, and be conducted in accordance with, the general provisions laid down in Chapter 1.".\r
-CIG 1/1/07 REV 1 20\r
-EN\r
-27) Article 11 shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by the following two paragraphs:\r
-"1. The Union's competence in matters of common foreign and security policy shall cover all areas of foreign policy and all questions relating to the Union's security, including the progressive framing of a common defence policy that might lead to a common defence.\r
-The common foreign and security policy is subject to specific rules and procedures. It shall be defined and implemented by the European Council and the Council acting unanimously, except where the Treaties provide otherwise. The adoption of legislative acts shall be excluded. The common foreign and security policy shall be put into effect by the High Representative of the Union for Foreign Affairs and Security Policy and by Member States, in accordance with the Treaties. The specific role of the European Parliament and of the Commission in this area is defined by the Treaties. The Court of Justice of the European Union shall not have jurisdiction with respect to these provisions, with the exception of its jurisdiction to monitor the compliance with Article 25 of this Treaty and to review the legality of certain decisions as provided for by the second paragraph of Article 240a of the Treaty on the Functioning of the European Union.\r
-2. Within the framework of the principles and objectives of its external action, the Union shall conduct, define and implement a common foreign and security policy, based on the development of mutual political solidarity among Member States, the identification of questions of general interest and the achievement of an ever-increasing degree of convergence of Member States' actions.";\r
-(b) paragraph 2, renumbered 3, shall be amended as follows:\r
-(i) The following words shall be added at the end of the first subparagraph:\r
-"\85 and shall comply with the Union's action in this area.";\r
-(ii) the third subparagraph shall be replaced by "The Council and the High Representative shall ensure that these principles are complied with.".\r
-28) Article 12 shall be replaced by the following:\r
-"The Union shall conduct the common foreign and security policy by:\r
-(a) defining the general guidelines;\r
-CIG 1/1/07 REV 1 21\r
-EN\r
-(b) adopting decisions defining:\r
-(i) actions to be undertaken by the Union;\r
-(ii) positions to be taken by the Union;\r
-(iii) arrangements for the implementation of the decisions referred to in points (i) and (ii);\r
-(c) strengthening systematic cooperation between Member States in the conduct of policy.".\r
-29) Article 13 shall be amended as follows:\r
-(a) in paragraph 1, the words "define the principles of and general guidelines for" shall be replaced by "shall identify the Union's strategic interests, determine the objectives of and define general guidelines for" and the following sentence shall be added: "It shall adopt the necessary decisions.". The following subparagraph shall be inserted:\r
-"If international developments so require, the President of the European Council shall convene an extraordinary meeting of the European Council in order to define the strategic lines of the Union's policy in the face of such developments.";\r
-(b) paragraph 2 shall be deleted and paragraph 3 shall be renumbered 2. The first subparagraph shall be replaced by the following: "The Council shall frame the common foreign and security policy and take the decisions necessary for defining and implementing it on the basis of the general guidelines and strategic lines defined by the European Council." The second subparagraph shall be deleted. In the third subparagraph, which shall become the second, the words "shall ensure" shall be replaced by "and the High Representative of the Union for Foreign Affairs and Security Policy shall ensure";\r
-(c) the following new paragraph shall be inserted:\r
-"3. The common foreign and security policy shall be put into effect by the High Representative and by the Member States, using national and Union resources.\r
-30) The following new Article 13a shall be inserted:\r
-"Article 13a\r
-1. The High Representative of the Union for Foreign Affairs and Security Policy, who shall chair the Foreign Affairs Council, shall contribute through his or her proposals towards the preparation of the common foreign and security policy and shall ensure implementation of the decisions adopted by the European Council and the Council.\r
-CIG 1/1/07 REV 1 22\r
-EN\r
-2. The High Representative shall represent the Union for matters relating to the common foreign and security policy. He or she shall conduct political dialogue with third parties on the Union's behalf and shall express the Union's position in international organisations and at international conferences.\r
-3. In fulfilling his or her mandate, the High Representative shall be assisted by a European External Action Service. This service shall work in cooperation with the diplomatic services of the Member States and shall comprise officials from relevant departments of the General Secretariat of the Council and of the Commission as well as staff seconded from national diplomatic services of the Member States. The organisation and functioning of the European External Action Service shall be established by a decision of the Council. The Council shall act on a proposal from the High Representative after consulting the European Parliament and after obtaining the consent of the Commission.".\r
-31) Article 14 shall be amended as follows:\r
-(a) in paragraph 1, the first two sentences shall be replaced by the following sentence: "Where the international situation requires operational action by the Union, the Council shall adopt the necessary decisions.";\r
-(b) in paragraph 2, first sentence, the words "to joint action," shall be replaced by "to a decision as referred to in paragraph 1," and the words "that action" shall be replaced by "that decision". The last sentence shall be deleted;\r
-(c) in paragraph 3, the words "Joint actions" shall be replaced by "Decisions referred to in paragraph 1";\r
-(d) paragraph 4 shall be deleted and the remaining paragraphs shall be renumbered accordingly;\r
-(e) in the first sentence of paragraph 5, renumbered 4, the words "pursuant to a joint action, information shall be provided in time to allow," shall be replaced by "pursuant to a decision as referred to in paragraph 1, information shall be provided by the Member State concerned in time to allow,";\r
-(f) in the first sentence of paragraph 6, renumbered 5, the words "failing a Council decision," shall be replaced by "failing a review of the Council decision as referred to in paragraph 1," and the words "of the joint action" shall be replaced by "of that decision";\r
-(g) in paragraph 7, renumbered 6, the words "joint action" in the first sentence shall be replaced by "decision as referred to in this Article" and in the second sentence by "decision referred to in paragraph 1".\r
-CIG 1/1/07 REV 1 23\r
-EN\r
-32) At the beginning of Article 15, the words "The Council shall adopt common positions. Common positions shall define" shall be replaced by "The Council shall adopt decisions which shall define" and at the end of the Article the words "common positions" shall be replaced by "Union positions".\r
-33) The text of Article 16, with the amendments set out in point 35 below, shall become Article 17a. The text of Article 22, with the following amendments, shall become Article 16:\r
-(a) in paragraph 1, the words "Any Member State or the Commission may refer to the Council any question relating to the common foreign and security policy" shall be replaced by "Any Member State, the High Representative of the Union for Foreign Affairs and Security Policy, or the High Representative with the Commission's support, may refer any question relating to the common foreign and security policy to the Council" and the words "submit proposals to the Council" shall be replaced by "submit to it initiatives or proposals as appropriate";\r
-(b) in paragraph 2, the words "the Presidency, of its own motion," shall be replaced by "the High Representative, of his or her own motion" and the words ", or at the request of the Commission or a Member State," shall be replaced by ", or at the request of a Member State,".\r
-34) The text of Article 17 shall become Article 27, with the amendments set out in point 48 below. The text of Article 23, with the following amendments, shall become Article 17:\r
-(a) in paragraph 1, the first subparagraph shall be replaced by the following: "Decisions under this Chapter shall be taken by the European Council and the Council acting unanimously, except where this Chapter provides otherwise. The adoption of legislative acts shall be excluded." and the last sentence in the second subparagraph shall be replaced by the following: "If the members of the Council qualifying their abstention in this way represent at least one third of the Member States comprising at least one third of the population of the Union, the decision shall not be adopted.";\r
-(b) paragraph 2 shall be amended as follows:\r
-(i) the first indent shall be replaced by the following two indents:\r
-"- when adopting a decision defining a Union action or position on the basis of a decision of the European Council relating to the Union's strategic interests and objectives, as referred to in Article 10b(1),\r
-- when adopting a decision defining a Union action or position, on a proposal which the High Representative of the Union for Foreign Affairs and Security Policy has presented following a specific request to him or her from the European Council, made on its own initiative or that of the High Representative,";\r
-CIG 1/1/07 REV 1 24\r
-EN\r
-(ii) in the second indent, which shall become the third indent, the words "a joint action or a common position," shall be replaced by "a decision defining a Union action or position,";\r
-(iii) in the second subparagraph, first sentence, the word "important" shall be replaced by "vital"; the last sentence shall be replaced by the following: "The High Representative will, in close consultation with the Member State involved, search for a solution acceptable to it. If he or she does not succeed, the Council may, acting by a qualified majority, request that the matter be referred to the European Council for a decision by unanimity.";\r
-(iv) the third subparagraph shall be replaced by the following new paragraph 3, the last subparagraph shall become paragraph 4 and paragraph 3 shall be renumbered 5:\r
-"3. The European Council may unanimously adopt a decision stipulating that the Council shall act by a qualified majority in cases other than those referred to in paragraph 2 of this Article.";\r
-(c) in the paragraph now numbered 4, the words "This paragraph shall not apply" shall be replaced by "Paragraphs 2 and 3 shall not apply".\r
-35) An Article 17a shall be inserted, with the wording of Article 16; it shall be amended as follows:\r
-(a) the words "inform and" shall be deleted, the words "within the Council" shall be replaced by "within the European Council and the Council" and the words "in order to ensure that the Union's influence is exerted as effectively as possible by means of concerted and convergent action" shall be replaced by "in order to determine a common approach";\r
-(b) the following sentence shall be added after the first sentence: "Before undertaking any action on the international scene or any commitment which could affect the Union's interests, each Member State shall consult the others within the European Council or the Council. Member States shall ensure, through the convergence of their actions, that the Union is able to assert its interests and values on the international scene. Member States shall show mutual solidarity.";\r
-(c) the following two paragraphs shall be inserted:\r
-"When the European Council or the Council has defined a common approach of the Union within the meaning of the first paragraph, the High Representative of the Union for Foreign Affairs and Security Policy and the Ministers for Foreign Affairs of the Member States shall coordinate their activities within the Council.\r
-The diplomatic missions of the Member States and the Union delegations in third countries and at international organisations shall cooperate and shall contribute to formulating and implementing the common approach.".\r
-CIG 1/1/07 REV 1 25\r
-EN\r
-36) Article 18 shall be amended as follows:\r
-(a) paragraphs 1 to 4 shall be deleted;\r
-(b) in paragraph 5, which shall not be numbered, the words "whenever it deems it necessary," shall be replaced by "on a proposal from the High Representative of the Union for Foreign Affairs and Security Policy" and the following sentence shall be added at the end: "The special representative shall carry out his or her mandate under the authority of the High Representative.".\r
-37) Article 19 shall be amended as follows:\r
-(a) in paragraph 1, the words "the common positions" shall be replaced by "the Union's positions" in the first and second subparagraphs and the following sentence shall be added at the end of the first subparagraph: "The High Representative of the Union for Foreign Affairs and Security Policy shall organise this coordination.";\r
-(b) paragraph 2 shall be amended as follows:\r
-(i) in the first subparagraph, the words "Without prejudice to paragraph 1 and Article 14(3)," shall be replaced by "In accordance with Article 11(3)," and ", as well as the High Representative," shall be inserted after "keep the latter";\r
-(ii) in the second subparagraph, first sentence, the words "and the High Representative" shall be inserted after "the other Member States"; in the second sentence, the word "permanent" shall be deleted and the words "ensure the defence of the positions" shall be replaced by "defend the positions";\r
-(iii) the following new third subparagraph shall be inserted:\r
-"When the Union has defined a position on a subject which is on the United Nations Security Council agenda, those Member States which sit on the Security Council shall request that the High Representative be asked to present the Union's position.".\r
-38) Article 20 shall be amended as follows:\r
-(a) in the first paragraph, the words "Commission delegations" shall be replaced by "Union delegations" and the words "the common positions and joint actions adopted by the Council" shall be replaced by "decisions defining Union positions and actions adopted pursuant to this Chapter";\r
-CIG 1/1/07 REV 1 26\r
-EN\r
-(b) in the second paragraph, the words "information, carrying out joint assessments" shall be replaced by "information and carrying out joint assessments" and the words "and contributing to the implementation of the provisions referred to in Article 20 of the Treaty establishing the European Community" shall be deleted;\r
-(c) the following new paragraph shall be inserted:\r
-"They shall contribute to the implementation of the right of citizens of the Union to protection in the territory of third countries as referred to in Article 17b(2)(c) of the Treaty on the Functioning of the European Union and of the measures adopted pursuant to Article 20 of that Treaty.".\r
-39) Article 21 shall be amended as follows:\r
-(a) the first paragraph shall be replaced by the following:\r
-"The High Representative of the Union for Foreign Affairs and Security Policy shall regularly consult the European Parliament on the main aspects and the basic choices of the common foreign and security policy and the common security and defence policy and inform it of how those policies evolve. He or she shall ensure that the views of the European Parliament are duly taken into consideration. Special representatives may be involved in briefing the European Parliament.";\r
-(b) in the second paragraph, first sentence, the words "and the High Representative of the Union" shall be inserted at the end; in the second sentence, the words "It shall hold an annual debate" shall be replaced by "Twice a year it shall hold a debate" and the words ", including the common security and defence policy" shall be inserted at the end.\r
-40) The text of Article 22 shall become Article 16; it shall be amended as set out above in point 33.\r
-41) The text of Article 23 shall become Article 17; it shall be amended as set out above in point 34.\r
-42) Article 24, renumbered 22, shall be replaced by the following:\r
-"The Union may conclude agreements with one or more States or international organisations in areas covered by this Chapter.".\r
-CIG 1/1/07 REV 1 27\r
-EN\r
-43) Article 25, renumbered 23, shall be amended as follows:\r
-(a) in the first paragraph, first sentence, the reference to the Treaty establishing the European Community shall be replaced by a reference to the Treaty on the functioning of the European Union and the words "or of the High Representative of the Union for Foreign Affairs and Security Policy" shall be inserted after "at the request of the Council"; in the second sentence, the words "without prejudice to the responsibility of the Presidency and the Commission" shall be replaced by "without prejudice to the powers of the High Representative";\r
-(b) the text of the second paragraph shall be replaced by the following: "Within the scope of this Chapter, the Political and Security Committee shall exercise, under the responsibility of the Council and of the High Representative, the political control and strategic direction of the crisis management operations referred to in Article 28.";\r
-(c) in the third paragraph, the reference to Article 47 shall be deleted.\r
-44) Articles 26 and 27, renumbered 24 and 25, shall be replaced by the following two articles, with Article 25 replacing Article 47:\r
-"Article 24\r
-In accordance with Article 15a of the Treaty on the Functioning of the European Union and by way of derogation from paragraph 2 thereof, the Council shall adopt a decision laying down the rules relating to the protection of individuals with regard to the processing of personal data by the Member States when carrying out activities which fall within the scope of this Chapter, and the rules relating to the free movement of such data. Compliance with these rules shall be subject to the control of independent authorities.\r
-Article 25\r
-The implementation of the common foreign and security policy shall not affect the application of the procedures and the extent of the powers of the institutions laid down by the Treaties for the exercise of the Union competences referred to in Articles 3 to 6 of the Treaty on the Functioning of the European Union.\r
-Similarly, the implementation of the policies listed in those Articles shall not affect the application of the procedures and the extent of the powers of the institutions laid down by the Treaties for the exercise of the Union competences under this Chapter.".\r
-45) Articles 27a to 27e, on enhanced cooperation, shall be replaced by Article 10 in accordance with point 22 above.\r
-CIG 1/1/07 REV 1 28\r
-EN\r
-46) Article 28, renumbered 26, shall be amended as follows:\r
-(a) paragraph 1 shall be deleted and the remaining paragraphs shall be renumbered accordingly; throughout the Article the words "budget of the European Communities" shall be replaced by "Union budget";\r
-(b) in paragraph 2, renumbered 1, the words "which the provisions relating to the areas referred to in this Title entail" shall be replaced by "to which the implementation of this Chapter gives rise";\r
-(c) in paragraph 3, renumbered 2, the words "the implementation of those provisions" in the first subparagraph shall be replaced by "the implementation of this Chapter" and in the second subparagraph the reference to Article 23 shall be replaced by a reference to Article 17;\r
-(d) the following new paragraph 3 shall be inserted and paragraph 4 deleted:\r
-"3. The Council shall adopt a decision establishing the specific procedures for guaranteeing rapid access to appropriations in the Union budget for urgent financing of initiatives in the framework of the common foreign and security policy, and in particular for preparatory activities for the tasks referred to in Article 27(1) and Article 28. It shall act after consulting the European Parliament.\r
-Preparatory activities for the tasks referred to in Article 27(1) and Article 28 which are not charged to the Union budget shall be financed by a start-up fund made up of Member States' contributions.\r
-The Council shall adopt by a qualified majority, on a proposal from the High Representative of the Union for Foreign Affairs and Security Policy, decisions establishing:\r
-(a) the procedures for setting up and financing the start-up fund, in particular the amounts allocated to the fund;\r
-(b) the procedures for administering the start-up fund;\r
-(c) the financial control procedures.\r
-When the task planned in accordance with Article 27(1) and Article 28 cannot be charged to the Union budget, the Council shall authorise the High Representative to use the fund. The High Representative shall report to the Council on the implementation of this remit.".\r
-CIG 1/1/07 REV 1 29\r
-EN\r
-The common security and defence policy\r
-47) The following new section shall be inserted:\r
-"SECTION 2 PROVISIONS ON THE COMMON SECURITY AND DEFENCE POLICY".\r
-48) Article 27 shall take over the wording of Article 17, with the following amendments:\r
-(a) the following new paragraph 1 shall be inserted and the next paragraph shall be renumbered 2:\r
-"1. The common security and defence policy shall be an integral part of the common foreign and security policy. It shall provide the Union with an operational capacity drawing on civil and military assets. The Union may use them on missions outside the Union for peace-keeping, conflict prevention and strengthening international security in accordance with the principles of the United Nations Charter. The performance of these tasks shall be undertaken using capabilities provided by the Member States.";\r
-(b) paragraph 1, renumbered 2, shall be amended as follows:\r
-(i) the first subparagraph shall be replaced by the following:\r
-"The common security and defence policy shall include the progressive framing of a common Union defence policy. This will lead to a common defence, when the European Council, acting unanimously, so decides. It shall in that case recommend to the Member States the adoption of such a decision in accordance with their respective constitutional requirements.";\r
-(ii) in the second subparagraph, the words "in accordance with this Article" shall be replaced by "in accordance with this Section";\r
-(iii) the third subparagraph shall be deleted.\r
-(c) paragraph 2, renumbered 3, to paragraph 5 shall be replaced by the following paragraphs:\r
-"3. Member States shall make civilian and military capabilities available to the Union for the implementation of the common security and defence policy, to contribute to the objectives defined by the Council. Those Member States which together establish multinational forces may also make them available to the common security and defence policy.\r
-CIG 1/1/07 REV 1 30\r
-EN\r
-Member States shall undertake progressively to improve their military capabilities. The Agency in the field of defence capabilities development, research, acquisition and armaments (European Defence Agency) shall identify operational requirements, shall promote measures to satisfy those requirements, shall contribute to identifying and, where appropriate, implementing any measure needed to strengthen the industrial and technological base of the defence sector, shall participate in defining a European capabilities and armaments policy, and shall assist the Council in evaluating the improvement of military capabilities.\r
-4. Decisions relating to the common security and defence policy, including those initiating a mission as referred to in this Article, shall be adopted by the Council acting unanimously on a proposal from the High Representative of the Union for Foreign Affairs and Security Policy or an initiative from a Member State. The High Representative may propose the use of both national resources and Union instruments, together with the Commission where appropriate.\r
-5. The Council may entrust the execution of a task, within the Union framework, to a group of Member States in order to protect the Union's values and serve its interests. The execution of such a task shall be governed by Article 29.\r
-6. Those Member States whose military capabilities fulfil higher criteria and which have made more binding commitments to one another in this area with a view to the most demanding missions shall establish permanent structured cooperation within the Union framework. Such cooperation shall be governed by Article 31. It shall not affect the provisions of Article 28.\r
-7. If a Member State is the victim of armed aggression on its territory, the other Member States shall have towards it an obligation of aid and assistance by all the means in their power, in accordance with Article 51 of the United Nations Charter. This shall not prejudice the specific character of the security and defence policy of certain Member States.\r
-Commitments and cooperation in this area shall be consistent with commitments under the North Atlantic Treaty Organisation, which, for those States which are members of it, remains the foundation of their collective defence and the forum for its implementation.".\r
-CIG 1/1/07 REV 1 31\r
-EN\r
-49) The following new Articles 28 to 31 shall be inserted:\r
-"Article 28\r
-1. The tasks referred to in Article 27(1), in the course of which the Union may use civilian and military means, shall include joint disarmament operations, humanitarian and rescue tasks, military advice and assistance tasks, conflict prevention and peace-keeping tasks, tasks of combat forces in crisis management, including peace-making and post-conflict stabilisation. All these tasks may contribute to the fight against terrorism, including by supporting third countries in combating terrorism in their territories.\r
-2. The Council shall adopt decisions relating to the tasks referred to in paragraph 1, defining their objectives and scope and the general conditions for their implementation. The High Representative of the Union for Foreign Affairs and Security Policy, acting under the authority of the Council and in close and constant contact with the Political and Security Committee, shall ensure coordination of the civilian and military aspects of such tasks.\r
-Article 29\r
-1. Within the framework of the decisions adopted in accordance with Article 28, the Council may entrust the implementation of a task to a group of Member States which are willing and have the necessary capability for such a task. Those Member States, in association with the High Representative of the Union for Foreign Affairs and Security Policy, shall agree among themselves on the management of the task.\r
-2. Member States participating in the task shall keep the Council regularly informed of its progress on their own initiative or at the request of another Member State. Those States shall inform the Council immediately should the completion of the task entail major consequences or require amendment of the objective, scope and conditions determined for the task in the decisions referred to in paragraph 1. In such cases, the Council shall adopt the necessary decisions.\r
-Article 30\r
-1. The European Defence Agency referred to in Article 27(3), subject to the authority of the Council, shall have as its task to:\r
-(a) contribute to identifying the Member States' military capability objectives and evaluating observance of the capability commitments given by the Member States;\r
-CIG 1/1/07 REV 1 32\r
-EN\r
-(b) promote harmonisation of operational needs and adoption of effective, compatible procurement methods;\r
-(c) propose multilateral projects to fulfil the objectives in terms of military capabilities, ensure coordination of the programmes implemented by the Member States and management of specific cooperation programmes;\r
-(d) support defence technology research, and coordinate and plan joint research activities and the study of technical solutions meeting future operational needs;\r
-(e) contribute to identifying and, if necessary, implementing any useful measure for strengthening the industrial and technological base of the defence sector and for improving the effectiveness of military expenditure.\r
-2. The European Defence Agency shall be open to all Member States wishing to be part of it. The Council, acting by a qualified majority, shall adopt a decision defining the Agency's statute, seat and operational rules. That decision should take account of the level of effective participation in the Agency's activities. Specific groups shall be set up within the Agency bringing together Member States engaged in joint projects. The Agency shall carry out its tasks in liaison with the Commission where necessary.\r
-Article 31\r
-1. Those Member States which wish to participate in the permanent structured cooperation referred to in Article 27(6), which fulfil the criteria and have made the commitments on military capabilities set out in the Protocol on permanent structured cooperation, shall notify their intention to the Council and to the High Representative of the Union for Foreign Affairs and Security Policy.\r
-2. Within three months following the notification referred to in paragraph 1 the Council shall adopt a decision establishing permanent structured cooperation and determining the list of participating Member States. The Council shall act by a qualified majority after consulting the High Representative.\r
-3. Any Member State which, at a later stage, wishes to participate in the permanent structured cooperation shall notify its intention to the Council and to the High Representative.\r
-CIG 1/1/07 REV 1 33\r
-EN\r
-The Council shall adopt a decision confirming the participation of the Member State concerned which fulfils the criteria and makes the commitments referred to in Articles 1 and 2 of the Protocol on permanent structured cooperation. The Council shall act by a qualified majority after consulting the High Representative. Only members of the Council representing the participating Member States shall take part in the vote.\r
-A qualified majority shall be defined in accordance with Article 205(3)(a) of the Treaty on the Functioning of the European Union.\r
-4. If a participating Member State no longer fulfils the criteria or is no longer able to meet the commitments referred to in Articles 1 and 2 of the Protocol on permanent structured cooperation, the Council may adopt a decision suspending the participation of the Member State concerned.\r
-The Council shall act by a qualified majority. Only members of the Council representing the participating Member States, with the exception of the Member State in question, shall take part in the vote.\r
-A qualified majority shall be defined in accordance with Article 205(3)(a) of the Treaty on the Functioning of the European Union.\r
-5. Any participating Member State which wishes to withdraw from permanent structured cooperation shall notify its intention to the Council, which shall take note that the Member State in question has ceased to participate.\r
-6. The decisions and recommendations of the Council within the framework of permanent structured cooperation, other than those provided for in paragraphs 2 to 5, shall be adopted by unanimity. For the purposes of this paragraph, unanimity shall be constituted by the votes of the representatives of the participating Member States only.".\r
-50) Articles 29 to 39 of Title VI of the EU Treaty, which relate to judicial cooperation in criminal matters and to police cooperation, shall be replaced by Articles 61 to 68 and 69e to 69l of the Treaty on the Functioning of the European Union; they shall be amended as set out in Article 2, points 64, 67 and 68, of this Treaty. The heading of the Title shall be deleted and its number shall become the number of the Title on final provisions.\r
-51) Articles 40 to 40b of Title VI of the EU Treaty and Articles 43 to 45, relating to enhanced cooperation, shall be replaced by Article 10 in accordance with point 22 above.\r
-52) Articles 41 and 42 of the EU Treaty shall be repealed.\r
-CIG 1/1/07 REV 1 34\r
-EN\r
-Final provisions\r
-53) Title VIII, on final provisions, shall be renumbered VI; this Title and Articles 48, 49, 51, 52 and 53 shall be amended as set out respectively in points 55, 56, 60, 61 and 62 below. Article 47 shall be replaced by Article 25, as indicated above in point 44, and Articles 46 and 50 shall be repealed.\r
-54) The following new Article 32 shall be inserted:\r
-"Article 32\r
-The Union shall have legal personality.".\r
-55) An Article 33 shall be inserted to replace Article 48:\r
-"Article 33\r
-1. The Treaties may be amended in accordance with an ordinary revision procedure. They may also be amended in accordance with simplified revision procedures.\r
-Ordinary revision procedure\r
-2. The government of any Member State, the European Parliament or the Commission may submit to the Council proposals for the amendment of the Treaties. These proposals may, inter alia, serve either to increase or to reduce the competences conferred on the Union in the Treaties. These proposals shall be submitted to the European Council by the Council and the national Parliaments shall be notified.\r
-3. If the European Council, after consulting the European Parliament and the Commission, adopts by a simple majority a decision in favour of examining the proposed amendments, the President of the European Council shall convene a Convention composed of representatives of the national Parliaments, of the Heads of State or Government of the Member States, of the European Parliament and of the Commission. The European Central Bank shall also be consulted in the case of institutional changes in the monetary area. The Convention shall examine the proposals for amendments and shall adopt by consensus a recommendation to a conference of representatives of the governments of the Member States as provided for in paragraph 4.\r
-CIG 1/1/07 REV 1 35\r
-EN\r
-The European Council may decide by a simple majority, after obtaining the consent of the European Parliament, not to convene a Convention should this not be justified by the extent of the proposed amendments. In the latter case, the European Council shall define the terms of reference for a conference of representatives of the governments of the Member States.\r
-4. A conference of representatives of the governments of the Member States shall be convened by the President of the Council for the purpose of determining by common accord the amendments to be made to the Treaties.\r
-The amendments shall enter into force after being ratified by all the Member States in accordance with their respective constitutional requirements.\r
-5. If, two years after the signature of a treaty amending the Treaties, four fifths of the Member States have ratified it and one or more Member States have encountered difficulties in proceeding with ratification, the matter shall be referred to the European Council.\r
-Simplified revision procedures\r
-6. The Government of any Member State, the European Parliament or the Commission may submit to the European Council proposals for revising all or part of the provisions of Part Three of the Treaty on the Functioning of the European Union relating to the internal policies and action of the Union.\r
-The European Council may adopt a decision amending all or part of the provisions of Part Three of the Treaty on the Functioning of the European Union. The European Council shall act by unanimity after consulting the European Parliament and the Commission, and the European Central Bank in the case of institutional changes in the monetary area. That decision shall not enter into force until it is approved by the Member States in accordance with their respective constitutional requirements.\r
-The decision referred to in the second subparagraph shall not increase the competences conferred on the Union in the Treaties.\r
-7. Where the Treaty on the Functioning of the European Union or Title V of this Treaty provides for the Council to act by unanimity in a given area or case, the European Council may adopt a decision authorising the Council to act by a qualified majority in that area or in that case. This subparagraph shall not apply to decisions with military implications or those in the area of defence.\r
-Where the Treaty on the Functioning of the European Union provides for legislative acts to be adopted by the Council in accordance with a special legislative procedure, the European Council may adopt a decision allowing for the adoption of such acts in accordance with the ordinary legislative procedure.\r
-CIG 1/1/07 REV 1 36\r
-EN\r
-Any initiative taken by the European Council on the basis of the first or the second subparagraph shall be notified to the national Parliaments. If a national Parliament makes known its opposition within six months of the date of such notification, the decision referred to in the first or the second subparagraph shall not be adopted. In the absence of opposition, the European Council may adopt the decision.\r
-For the adoption of the decisions referred to in the first and second subparagraphs, the European Council shall act by unanimity after obtaining the consent of the European Parliament, which shall be given by a majority of its component members.".\r
-56) An Article 34 shall be inserted, with the wording of Article 49; the first paragraph shall be amended as follows:\r
-(a) in the first sentence, the words "which respects the principles set out in Article 6(1) may apply" shall be replaced by "which respects the values referred to in Article 2 and is committed to promoting them may apply";\r
-(b) in the second sentence, the words "It shall address its application to the Council, which shall act unanimously" shall be replaced by "The European Parliament and national Parliaments shall be notified of this application. The applicant State shall address its application to the Council, which shall act unanimously"; the word "assent" shall be replaced by "consent" and the words "an absolute majority" shall be replaced by "a majority";\r
-(c) the following new third sentence shall be inserted: "The conditions of eligibility agreed upon by the European Council shall be taken into account.".\r
-57) The following new Article 35 shall be inserted:\r
-"Article 35\r
-1. Any Member State may decide to withdraw from the Union in accordance with its own constitutional requirements.\r
-2. A Member State which decides to withdraw shall notify the European Council of its intention. In the light of the guidelines provided by the European Council, the Union shall negotiate and conclude an agreement with that State, setting out the arrangements for its withdrawal, taking account of the framework for its future relationship with the Union. That agreement shall be negotiated in accordance with Article 188n(3) of the Treaty on the Functioning of the European Union. It shall be concluded on behalf of the Union by the Council, acting by a qualified majority, after obtaining the consent of the European Parliament.\r
-CIG 1/1/07 REV 1 37\r
-EN\r
-3. The Treaties shall cease to apply to the State in question from the date of entry into force of the withdrawal agreement or, failing that, two years after the notification referred to in paragraph 2, unless the European Council, in agreement with the Member State concerned, unanimously decides to extend this period.\r
-4. For the purposes of paragraphs 2 and 3, the member of the European Council or of the Council representing the withdrawing Member State shall not participate in the discussions of the European Council or Council or in decisions concerning it.\r
-A qualified majority shall be defined in accordance with Article 205(3)(b) of the Treaty on the Functioning of the European Union.\r
-5. If a State which has withdrawn from the Union asks to rejoin, its request shall be subject to the procedure referred to in Article 34.".\r
-58) An Article 36 shall be inserted:\r
-"Article 36\r
-The Protocols and Annexes to the Treaties shall form an integral part thereof.".\r
-59) An Article 37 shall be inserted:\r
-"Article 37\r
-1. The Treaties shall apply to the Kingdom of Belgium, Republic of Bulgaria, the Czech Republic, the Kingdom of Denmark, the Federal Republic of Germany, the Republic of Estonia, Ireland, the Hellenic Republic, the Kingdom of Spain, the French Republic, the Italian Republic, the Republic of Cyprus, the Republic of Latvia, the Republic of Lithuania, the Grand Duchy of Luxembourg, the Republic of Hungary, the Republic of Malta, the Kingdom of the Netherlands, the Republic of Austria, the Republic of Poland, the Portuguese Republic, Romania, the Republic of Slovenia, the Slovak Republic, the Republic of Finland, the Kingdom of Sweden and the United Kingdom of Great Britain and Northern Ireland.\r
-2. The territorial scope of the Treaties is specified in Article 311 of the Treaty on the Functioning of the European Union.".\r
-CIG 1/1/07 REV 1 38\r
-EN\r
-60) An Article 38 shall be inserted, with the wording of Article 51.\r
-61) An Article 39 shall be inserted, with the wording of Article 52.\r
-62) An Article 40 shall be inserted, with the wording of Article 53; it shall be amended as follows:\r
-(a) the first paragraph shall be numbered 1, the languages listed in the second paragraph of the current Article 53 of the Treaty on European Union shall be added to the list in this paragraph and the second paragraph shall be deleted;\r
-(b) the following new paragraph 2 shall be inserted:\r
-"2. This Treaty may also be translated into any other languages as determined by Member States among those which, in accordance with their constitutional order, enjoy official status in all or part of their territory. A certified copy of such translations shall be provided by the Member States concerned to be deposited in the archives of the Council.".\r
-CIG 1/1/07 REV 1 39\r
-EN\r
-\r
-Article 2\r
-1) The Treaty establishing the European Community shall be amended in accordance with the provisions of this Article.\r
-2) The title of the Treaty shall be replaced by "Treaty on the Functioning of the European Union".\r
-A. HORIZONTAL AMENDMENTS\r
-3) Throughout the Treaty:\r
-(a) the words "Community" and "European Community" shall be replaced by "Union", the words "European Communities" shall be replaced by "European Union";\r
-(b) the words "this Treaty" and "the present Treaty" shall be replaced by "the Treaties" and the verb, where applicable, shall be put in the plural; this point shall not apply to Articles 312 and 313;\r
-(c) the words "the Council [shall], acting in accordance with the procedure referred to in Article 251" shall be replaced by "the European Parliament and the Council [shall], acting in accordance with the ordinary legislative procedure", and the words "procedure referred to in Article 251" shall be replaced by "ordinary legislative procedure";\r
-(d) the words "acting by a qualified majority" and "by a qualified majority" shall be deleted;\r
-(e) the words "Council meeting in the composition of the Heads of State or Government" shall be replaced by "European Council";\r
-(f) the words "institutions or bodies" and "institutions and bodies" shall be replaced by "institutions, bodies, offices or agencies", except in the first paragraph of Article 193;\r
-(g) the words "common market" shall be replaced by "internal market";\r
-(h) the word "ecu" shall be replaced by "euro";\r
-(i) the words "Member States without a derogation" shall be replaced by "Member States whose currency is the euro";\r
-CIG 1/1/07 REV 1 41\r
-EN\r
-(j) the abbreviation "ECB" shall be replaced by "European Central Bank";\r
-(k) the words "Statute of the ESCB" shall be replaced by "Statute of the ESCB and of the ECB";\r
-(l) The words "Committee provided for in Article 114" and "Committee referred to in Article 114" shall be replaced by "Economic and Financial Committee";\r
-(m) the words "Statute of the Court of Justice" shall be replaced by "Statute of the Court of Justice of the European Union";\r
-(n) the words " Court of First Instance" shall be replaced by "General Court";\r
-(o) the words "judicial panel" and "judicial panels" shall be replaced by "specialised court" and "specialised courts" respectively and any necessary grammatical changes shall be made.\r
-4) In the following Articles, the words "on a proposal from the Commission" shall be replaced by "in accordance with a special legislative procedure":\r
-- Article 17a(1)\r
-- Article 19(1)\r
-- Article 19(2)\r
-- Article 22, second paragraph\r
-- Article 93.\r
-- Article 95\r
-- Article 104(14), second subparagraph\r
-- Article 166(4)\r
-- Article 175(2), first subparagraph\r
-5) In the following Articles, the words "acting by a simple majority" shall be inserted after "the Council":\r
-- Article 130, first paragraph\r
-- Article 144, first paragraph\r
-- Article 208\r
-- Article 209\r
-- Article 213, second paragraph, third sentence\r
-- Article 216\r
-- Article 284.\r
-6) In the following Articles, the words "consulting the European Parliament" shall be replaced by "obtaining the consent of the European Parliament":\r
-- Article 17a(1)\r
-- Article 22, second paragraph.\r
-CIG 1/1/07 REV 1 42\r
-EN\r
-7) In the following Articles, the word "institution" or "institutions" shall be replaced by "institution, body, office or agency" or "institutions, bodies, offices or agencies", as appropriate, and any grammatical changes necessary shall be made:\r
-- Article 195(1), second subparagraph\r
-- Article 232, second paragraph\r
-- Article 233, first paragraph:\r
-- Article 234, point (b)\r
-- Article 255(3) which shall become Article 15(3), third subparagraph.\r
-8) In the following Articles, the words "Court of Justice" shall be replaced by "Court of Justice of the European Union".\r
-- Article 83(2)(d)\r
-- Article 88(2), second subparagraph\r
-- Article 94(9)\r
-- Article 195(1)\r
-- Article 225a, sixth paragraph\r
-- Article 226, second paragraph\r
-- Article 227, first paragraph\r
-- Article 228(1)\r
-- Article 229\r
-- Article 229a\r
-- Article 230, first, second and third paragraphs\r
-- Article 231, first paragraph\r
-- Article 232, first paragraph\r
-- Article 233, first paragraph\r
-- Article 234, first, second and third paragraphs\r
-- Article 235\r
-- Article 236\r
-- Article 237, introductory sentence and point (d)\r
-- Article 238\r
-- Article 240\r
-- Article 242\r
-- Article 243\r
-- Article 244\r
-- Article 247(8)\r
-- Article 256, second paragraph and fourth paragraph.\r
-9) In the following Articles, the reference to another Article of the Treaty shall be replaced by the following reference to an Article of the Treaty on European Union:\r
-- Article 21, fourth paragraph reference to Article 9 (first reference) and Article 40(1) (second reference)\r
-- Article 97b reference to Article 3\r
-- Article 98 reference to Article 3 (first reference)\r
-- Article 105(1) reference to Article 3\r
-- Article 125 reference to Article 3\r
-- Article 215, fourth paragraph reference to Article 9d(7), first subparagraph.\r
-CIG 1/1/07 REV 1 43\r
-EN\r
-B. SPECIFIC AMENDMENTS\r
-Preamble\r
-10) In the second recital, the word "countries" shall be replaced by "States" and in the last recital, the words "HAVE DECIDED to create a EUROPEAN COMMUNITY and to this end have designated \85" shall be replaced by "and to this end HAVE DESIGNATED \85".\r
-Common provisions\r
-11) Article 1 shall be replaced by the following:\r
-"Article 1\r
-1. This Treaty organises the functioning of the Union and determines the areas, delimitation of, and arrangements for exercising its competences.\r
-2. This Treaty and the Treaty on European Union constitute the Treaties on which the Union is founded. These two Treaties, which have the same legal value, shall be referred to as "the Treaties".".\r
-12) Article 3(1) shall be repealed. Paragraph 2 thereof shall become Article 8; it shall be amended as set out below in point 21.\r
-13) The text of Article 4 shall become Article 97b. It shall be amended as set out below in point 85.\r
-14) The text of Article 12 shall become Article 17.\r
-15) The text of Article 13 shall become Article 17a. It shall be amended as set out below in point 33.\r
-CIG 1/1/07 REV 1 44\r
-EN\r
-16) The text of Article 14 shall become Article 22a. It shall be amended as set out below in point 41.\r
-17) The text of Article 15 shall become Article 22b. It shall be amended as set out below in point 42.\r
-18) The text of Article 16 shall become Article 14. It shall be amended as set out in point 27.\r
-Categories and areas of competence\r
-19) Articles 2 to 6 shall be replaced by the following new Title and new Articles:\r
-"TITLE I CATEGORIES AND AREAS OF UNION COMPETENCE\r
-Article 2\r
-1. When the Treaties confer on the Union exclusive competence in a specific area, only the Union may legislate and adopt legally binding acts, the Member States being able to do so themselves only if so empowered by the Union or for the implementation of Union acts.\r
-2. When the Treaties confer on the Union a competence shared with the Member States in a specific area, the Union and the Member States may legislate and adopt legally binding acts in that area. The Member States shall exercise their competence to the extent that the Union has not exercised its competence. The Member States shall again exercise their competence to the extent that the Union has decided to cease exercising its competence.\r
-3. The Member States shall coordinate their economic and employment policies within arrangements as determined by this Treaty, which the Union shall have competence to provide.\r
-4. The Union shall have competence, in accordance with the provisions of the Treaty on European Union, to define and implement a common foreign and security policy, including the progressive framing of a common defence policy.\r
-5. In certain areas and under the conditions laid down in the Treaties, the Union shall have competence to carry out actions to support, coordinate or supplement the actions of the Member States, without thereby superseding their competence in these areas.\r
-CIG 1/1/07 REV 1 45\r
-EN\r
-Legally binding acts of the Union adopted on the basis of the provisions of the Treaties relating to these areas shall not entail harmonisation of Member States' laws or regulations.\r
-6. The scope of and arrangements for exercising the Union's competences shall be determined by the provisions of the Treaties relating to each area.\r
-Article 3\r
-1. The Union shall have exclusive competence in the following areas:\r
-(a) customs union;\r
-(b) the establishing of the competition rules necessary for the functioning of the internal market;\r
-(c) monetary policy for the Member States whose currency is the euro;\r
-(d) the conservation of marine biological resources under the common fisheries policy;\r
-(e) common commercial policy.\r
-2. The Union shall also have exclusive competence for the conclusion of an international agreement when its conclusion is provided for in a legislative act of the Union or is necessary to enable the Union to exercise its internal competence, or insofar as its conclusion may affect common rules or alter their scope.\r
-Article 4\r
-1. The Union shall share competence with the Member States where the Treaties confer on it a competence which does not relate to the areas referred to in Articles 3 and 6.\r
-2. Shared competence between the Union and the Member States applies in the following principal areas:\r
-(a) internal market;\r
-(b) social policy, for the aspects defined in this Treaty;\r
-(c) economic, social and territorial cohesion;\r
-(d) agriculture and fisheries, excluding the conservation of marine biological resources;\r
-(e) environment;\r
-(f) consumer protection;\r
-(g) transport;\r
-CIG 1/1/07 REV 1 46\r
-EN\r
-(h) trans-European networks;\r
-(i) energy;\r
-(j) area of freedom, security and justice;\r
-(k) common safety concerns in public health matters, for the aspects defined in this Treaty.\r
-3. In the areas of research, technological development and space, the Union shall have competence to carry out activities, in particular to define and implement programmes; however, the exercise of that competence shall not result in Member States being prevented from exercising theirs.\r
-4. In the areas of development cooperation and humanitarian aid, the Union shall have competence to carry out activities and conduct a common policy; however, the exercise of that competence shall not result in Member States being prevented from exercising theirs.\r
-Article 5\r
-1. The Member States shall coordinate their economic policies within the Union. To this end, the Council shall adopt measures, in particular broad guidelines for these policies.\r
-Specific provisions shall apply to those Member States whose currency is the euro.\r
-2. The Union shall take measures to ensure coordination of the employment policies of the Member States, in particular by defining guidelines for these policies.\r
-3. The Union may take initiatives to ensure coordination of Member States' social policies.\r
-Article 6\r
-The Union shall have competence to carry out actions to support, coordinate or supplement the actions of the Member States. The areas of such action shall, at European level, be:\r
-(a) protection and improvement of human health;\r
-(b) industry;\r
-(c) culture;\r
-(d) tourism; CIG 1/1/07 REV 1 47\r
-EN\r
-(e) education, vocational training, youth and sport;\r
-(f) civil protection;\r
-(g) administrative cooperation.".\r
-Provisions having general application\r
-20) Article 7 shall be replaced by the following title and article:\r
-"TITLE II PROVISIONS HAVING GENERAL APPLICATION\r
-Article 7\r
-The Union shall ensure consistency between its policies and activities, taking all of its objectives into account and in accordance with the principle of conferral of powers.".\r
-21) Article 8 shall be replaced by the wording of Article 3(2). The words "the activities referred to in this Article," shall be replaced by "its activities, ".\r
-22) Article 9 shall be replaced by the following:\r
-"In defining and implementing its policies and actions, the Union shall take into account requirements linked to the promotion of a high level of employment, the guarantee of adequate social protection, the fight against social exclusion, and a high level of education, training and protection of human health.".\r
-23) Article 10 shall be replaced by the following:\r
-"In defining and implementing its policies and activities, the Union shall aim to combat discrimination based on sex, racial or ethnic origin, religion or belief, disability, age or sexual orientation.".\r
-24) Article 11 shall be replaced by the wording of Article 6, with the deletion of "referred to in Article 3", and Article 11a shall be repealed.\r
-CIG 1/1/07 REV 1 48\r
-EN\r
-25) Article 12 shall be replaced by the wording of Article 153(2).\r
-26) Article 13 shall be replaced by the wording of the enacting terms of the Protocol on the protection and welfare of animals; the word "fisheries" shall be inserted after "agriculture", the words "and research" shall be replaced by "research and technological development and space", and the words ", since animals are sentient beings," shall be inserted after "Member States shall".\r
-27) Article 14 shall be replaced by the wording of Article 16; it shall be amended as follows:\r
-(a) a reference to Article 4 of the Treaty on European Union shall be inserted in the list of articles at the beginning;\r
-(b) at the end of the first sentence, the words "and conditions which enable them to fulfil their missions" shall be replaced by "and conditions, particularly economic and financial conditions, which enable them to fulfil their missions.";\r
-(c) the following new sentence shall be added:\r
-"The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish these principles and set these conditions without prejudice to the competence of Member States, in compliance with the Treaties, to provide, to commission and to fund such services.".\r
-28) Article 15 shall be replaced by the wording of Article 255; it shall be amended as follows:\r
-(a) paragraph 1 shall be preceded by the following text, paragraph 1 being renumbered 3 and paragraphs 2 and 3 becoming subparagraphs:\r
-"1. In order to promote good governance and ensure the participation of civil society, the Union institutions, bodies, offices and agencies shall conduct their work as openly as possible.\r
-2. The European Parliament shall meet in public, as shall the Council when considering and voting on a draft legislative act.";\r
-(b) in paragraph 1, renumbered 3, first subparagraph, a change shall be made to the French which does not concern the English version, the words "European Parliament, Council and Commission documents" shall be replaced by "documents of the Union institutions, bodies, offices and agencies, whatever their medium" and the reference to paragraphs 2 and 3 shall be replaced by a reference to this paragraph;\r
-CIG 1/1/07 REV 1 49\r
-EN\r
-(c) in paragraph 2, which shall become the second subparagraph of paragraph 3, the words "by means of regulations" shall be inserted after "shall be determined by the Council" and the words "within two years of the entry into force of the Treaty of Amsterdam" shall be deleted;\r
-(d) in paragraph 3, which shall become the third subparagraph of paragraph 3, the words "referred to above shall elaborate" shall be replaced by "shall ensure that its proceedings are transparent and shall elaborate", the words ", in accordance with the legislative act referred to in the second subparagraph" shall be inserted at the end of the subparagraph and the following two new subparagraphs shall be added:\r
-"The Court of Justice of the European Union, the European Central Bank and the European Investment Bank shall be subject to this paragraph only when exercising their administrative tasks.\r
-The European Parliament and the Council shall ensure publication of the documents relating to the legislative procedures under the terms laid down by the regulation referred to in the second subparagraph.".\r
-29) An Article 15a shall be inserted:\r
-"Article 15a\r
-1. Everyone has the right to the protection of personal data concerning him or her.\r
-2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall lay down the rules relating to the protection of individuals with regard to the processing of personal data by Union institutions, bodies, offices and agencies, and by the Member States when carrying out activities which fall within the scope of Union law, and the rules relating to the free movement of such data. Compliance with these rules shall be subject to the control of independent authorities.\r
-The rules adopted on the basis of this Article shall be without prejudice to the specific rules laid down in Article 24 of the Treaty on European Union.".\r
-30) The following new Article 15b shall be inserted:\r
-" Article 15b\r
-1. The Union respects and does not prejudice the status under national law of churches and religious associations or communities in the Member States. CIG 1/1/07 REV 1 50\r
-EN\r
-2. The Union equally respects the status under national law of philosophical and non-confessional organisations.\r
-3. Recognising their identity and their specific contribution, the Union shall maintain an open, transparent and regular dialogue with these churches and organisations.".\r
-NON-DISCRIMINATION AND CITIZENSHIP\r
-31) The heading of Part Two shall be replaced by the following heading: "NON-DISCRIMINATION AND CITIZENSHIP OF THE UNION".\r
-32) Article 17 shall be replaced by the text of Article 12.\r
-33) An Article 17a shall be inserted, with the wording of Article 13; in paragraph 2, the words "when the Council adopts" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may adopt the basic principles" and the words at the end of the paragraph "it shall act in accordance with the procedure referred to in Article 251" shall be deleted.\r
-34) An Article 17b shall be inserted, with the wording of Article 17; it shall be amended as follows:\r
-(a) in paragraph 1, the word "complement" shall be replaced by "be additional to";\r
-(b) paragraph 2 shall be replaced by the following:\r
-"2. Citizens of the Union shall enjoy the rights and be subject to the duties provided for in the Treaties. They shall have, inter alia:\r
-(a) the right to move and reside freely within the territory of the Member States;\r
-(b) the right to vote and to stand as candidates in elections to the European Parliament and in municipal elections in their Member State of residence, under the same conditions as nationals of that State;\r
-(c) the right to enjoy, in the territory of a third country in which the Member State of which they are nationals is not represented, the protection of the diplomatic and consular authorities of any Member State on the same conditions as the nationals of that State;\r
-CIG 1/1/07 REV 1 51\r
-EN\r
-(d) the right to petition the European Parliament, to apply to the European Ombudsman, and to address the institutions and advisory bodies of the Union in any of the Treaty languages and to obtain a reply in the same language.\r
-These rights shall be exercised in accordance with the conditions and limits defined by the Treaties and by the measures adopted thereunder.".\r
-35) Article 18 shall be amended as follows:\r
-(a) in paragraph 2, the words "the Council may adopt" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may adopt" and the last sentence shall be deleted;\r
-(b) paragraph 3 shall be replaced by the following:\r
-"3. For the same purposes as those referred to in paragraph 1 and if the Treaties have not provided the necessary powers, the Council, acting in accordance with a special legislative procedure, may adopt measures concerning social security or social protection. The Council shall act unanimously after consulting the European Parliament.".\r
-36) In Article 20, the words "establish the necessary rules among themselves and" shall be replaced by "adopt the necessary provisions and". The following new paragraph shall be added:\r
-"The Council, acting in accordance with a special legislative procedure and after consulting the European Parliament, may adopt directives establishing the coordination and cooperation measures necessary to facilitate such protection.".\r
-37) In Article 21, the following new first paragraph shall be inserted:\r
-"The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall adopt the provisions for the procedures and conditions required for a citizens' initiative within the meaning of Article 8b of the Treaty on European Union, including the minimum number of Member States from which such citizens must come.".\r
-CIG 1/1/07 REV 1 52\r
-EN\r
-38) In Article 22, second paragraph, the words "the rights laid down in this Part, which it shall recommend to the Member States for adoption in accordance with their respective constitutional requirements" shall be replaced by "the rights listed in Article 17b(2). These provisions shall enter into force after their approval by the Member States in accordance with their respective constitutional requirements.".\r
-39) In the heading of Part Three, the words "AND INTERNAL ACTIONS" shall be inserted after "POLICIES".\r
-Internal market\r
-40) A Title I, with the heading "THE INTERNAL MARKET" shall be inserted at the beginning of Part Three.\r
-41) An Article 22a shall be inserted, with the wording of Article 14. Paragraph 1 shall be replaced by the following:\r
-"1. The Union shall adopt measures with the aim of establishing or ensuring the functioning of the internal market, in accordance with the relevant provisions of the Treaties.".\r
-42) An Article 22b shall be inserted, with the wording of Article 15. In the first paragraph, the words "during the period of establishment" shall be replaced by "for the establishment".\r
-43) Title I on the free movement of goods shall become Title Ia.\r
-44) In Article 23(1), the words "shall be based upon" shall be replaced by "shall comprise".\r
-45) A Chapter Ia shall be inserted after Article 27, entitled "CUSTOMS COOPERATION", and an Article 27a shall be inserted with the wording of Article 135, the last sentence of that Article being deleted.\r
-CIG 1/1/07 REV 1 53\r
-EN\r
-Agriculture and fisheries\r
-46) In the heading of Title II, the words "AND FISHERIES" shall be added.\r
-47) Article 32 shall be amended as follows:\r
-(a) in paragraph 1, the following new first subparagraph shall be inserted: "The Union shall define and implement a common agriculture and fisheries policy.", the current text of paragraph 1 shall become the second subparagraph.\r
-In the second subparagraph, the word ", fisheries" shall be inserted after "agriculture" in the first sentence and the following sentence shall be added as the last sentence of the subparagraph: "References to the common agricultural policy or to agriculture, and the use of the term "agricultural", shall be understood as also referring to fisheries, having regard to the specific characteristics of this sector."\r
-(b) in paragraph 2, the words "and functioning" shall be inserted after the word "establishment".\r
-48) Article 36 shall be amended as follows:\r
-(a) in the first paragraph, the words "the European Parliament and" shall be inserted before "the Council" and the words "and 3" shall be deleted;\r
-(b) in the second paragraph, the introductory sentence shall be replaced by the following: "The Council, on a proposal from the Commission, may authorise the granting of aid:".\r
-49) Article 37 shall be amended as follows:\r
-(a) paragraph 1 shall be deleted;\r
-(b) paragraph 2 shall be renumbered 1; the words "Having taken into account the work of the Conference provided for in paragraph 1, after consulting the Economic and Social Committee and within two years of the entry into force of the Treaty, the Commission shall submit proposals" shall be replaced by "The Commission shall submit proposals", and the third subparagraph shall be deleted;\r
-CIG 1/1/07 REV 1 54\r
-EN\r
-(c) the following paragraphs shall be inserted as new paragraphs 2 and 2a:\r
-"2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure and after consulting the Economic and Social Committee, shall establish the common organisation of agricultural markets provided for in Article 34(1) and the other provisions necessary for the pursuit of the objectives of the common agricultural policy and the common fisheries policy.\r
-2a. The Council, on a proposal from the Commission, shall adopt measures on fixing prices, levies, aid and quantitative limitations and on the fixing and allocation of fishing opportunities.";\r
-(d) in the first subparagraph of paragraph 3, the words "The Council may, acting by a qualified majority and in accordance with paragraph 2, replace the national market organisations by the common organisation" shall be replaced by "In accordance with paragraph 2, the national market organisations may be replaced by the common organisation";\r
-(e) at the beginning of paragraph 4, a change shall be made to the French which does not concern the English version.\r
-Free movement of workers\r
-50) In Article 39(3)(d), the word "implementing" shall be deleted.\r
-51) Article 42 shall be amended as follows:\r
-(a) in the first paragraph, the words "migrant workers and their dependants:" shall be replaced by "employed and self-employed migrant workers and their dependants:";\r
-(b) the last paragraph shall be replaced by the following:\r
-"Where a member of the Council declares that a draft legislative act referred to in the first subparagraph would affect important aspects of its social security system, including its scope, cost or financial structure, or would affect the financial balance of that system, it may request that the matter be referred to the European Council. In that case, the ordinary legislative procedure shall be suspended. After discussion, the European Council shall, within four months of this suspension, either:\r
-CIG 1/1/07 REV 1 55\r
-EN\r
-(a) refer the draft back to the Council, which shall terminate the suspension of the ordinary legislative procedure; or\r
-(b) take no action or request the Commission to submit a new proposal; in that case, the act originally proposed shall be deemed not to have been adopted.".\r
-Freedom of establishment\r
-52) In Article 44(2), the words "The European Parliament," shall be inserted at the beginning of the paragraph.\r
-53) In Article 45, second paragraph, the words "The Council may, acting by a qualified majority on a proposal from the Commission," shall be replaced by "The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may".\r
-54) Article 47 shall be amended as follows:\r
-(a) the following phrase shall be added at the end of paragraph 1: "and for the coordination of the provisions laid down by law, regulation or administrative action in Member States concerning the taking-up and pursuit of activities as self-employed persons.";\r
-(b) paragraph 2 shall be deleted and paragraph 3 shall be renumbered 2; a change shall be made to the French which does not concern the English version.\r
-55) An Article 48a shall be inserted, with the wording of Article 294.\r
-Services\r
-56) Article 49 shall be amended as follows:\r
-(a) in the first paragraph, the words "State of the Community" shall be replaced by "Member State";\r
-(b) in the second paragraph, the words "The Council may, acting by a qualified majority on a proposal from the Commission, extend" shall be replaced by "The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may extend".\r
-CIG 1/1/07 REV 1 56\r
-EN\r
-57) In Article 50, third paragraph, the words "the State" shall be replaced by "the Member State".\r
-58) In Article 52(1), the words "the Council shall, on a proposal from the Commission and after consulting the Economic and Social Committee and the European Parliament, issue" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure and after consulting the Economic and Social Committee, shall issue".\r
-59) In Article 53, the words "declare their readiness to" shall be replaced by "shall endeavour to".\r
-Capital\r
-60) In Article 57(2), the words "the Council may, acting by a qualified majority on a proposal from the Commission, adopt measures" shall be replaced by "the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures" and the last sentence of paragraph 2 shall become paragraph 3, reading as follows:\r
-"3. Notwithstanding paragraph 2, only the Council, acting in accordance with a special legislative procedure, may unanimously, and after consulting the European Parliament, adopt measures which constitute a step backwards in Union law as regards the liberalisation of the movement of capital to or from third countries.".\r
-61) In Article 58, the following new paragraph 4 shall be added:\r
-"4. In the absence of measures pursuant to Article 57(3), the Commission or, in the absence of a Commission decision within three months from the request of the Member State concerned, the Council, may adopt a decision stating that restrictive tax measures adopted by a Member State concerning one or more third countries are to be considered compatible with the Treaties insofar as they are justified by one of the objectives of the Union and compatible with the proper functioning of the internal market. The Council shall act unanimously on application by a Member State.".\r
-62) Article 60 shall become Article 67a. It shall be amended as set out below in point 64.\r
-CIG 1/1/07 REV 1 57\r
-EN\r
-Area of freedom, security and justice;\r
-63) A Title IV, with the heading "AREA OF FREEDOM, SECURITY AND JUSTICE", shall replace the Title IV on visas, asylum, immigration, and other policies related to free movement of persons. Title IV shall contain the following Chapters:\r
-Chapter 1: General provisions\r
-Chapter 2: Policies on border checks, asylum and immigration\r
-Chapter 3: Judicial cooperation in civil matters\r
-Chapter 4: Judicial cooperation in criminal matters\r
-Chapter 5: Police cooperation.\r
-General provisions\r
-64) Article 61 shall be replaced by the following chapter and articles:\r
-"CHAPTER 1\r
-GENERAL PROVISIONS\r
-Article 61\r
-1. The Union shall constitute an area of freedom, security and justice with respect for fundamental rights and the different legal systems and traditions of the Member States.\r
-2. It shall ensure the absence of internal border controls for persons and shall frame a common policy on asylum, immigration and external border control, based on solidarity between Member States, which is fair towards third-country nationals. For the purpose of this Title, stateless persons shall be treated as third-country nationals.\r
-3. The Union shall endeavour to ensure a high level of security through measures to prevent and combat crime, racism and xenophobia, and through measures for coordination and cooperation between police and judicial authorities and other competent authorities, as well as through the mutual recognition of judgments in criminal matters and, if necessary, through the approximation of criminal laws.\r
-CIG 1/1/07 REV 1 58\r
-EN\r
-4. The Union shall facilitate access to justice, in particular through the principle of mutual recognition of judicial and extrajudicial decisions in civil matters.\r
-Article 62\r
-The European Council shall define the strategic guidelines for legislative and operational planning within the area of freedom, security and justice.\r
-Article 63\r
-National Parliaments shall ensure that the proposals and legislative initiatives submitted under Chapters 4 and 5 comply with the principle of subsidiarity, in accordance with the arrangements laid down by the Protocol on the application of the principles of subsidiarity and proportionality.\r
-Article 64\r
-Without prejudice to Articles 226 to 228, the Council may, on a proposal from the Commission, adopt measures laying down the arrangements whereby Member States, in collaboration with the Commission, conduct objective and impartial evaluation of the implementation of the Union policies referred to in this Title by Member States' authorities, in particular in order to facilitate full application of the principle of mutual recognition. The European Parliament and national Parliaments shall be informed of the content and results of the evaluation.\r
-Article 65\r
-A standing committee shall be set up within the Council in order to ensure that operational cooperation on internal security is promoted and strengthened within the Union. Without prejudice to Article 207, it shall facilitate coordination of the action of Member States' competent authorities. Representatives of the Union bodies, offices and agencies concerned may be involved in the proceedings of this committee. The European Parliament and national Parliaments shall be kept informed of the proceedings.\r
-Article 66\r
-This Title shall not affect the exercise of the responsibilities incumbent upon Member States with regard to the maintenance of law and order and the safeguarding of internal security.\r
-CIG 1/1/07 REV 1 59\r
-EN\r
-Article 66a\r
-It shall be open to Member States to organise between themselves and under their responsibility such forms of cooperation and coordination as they deem appropriate between the competent departments of their administrations responsible for safeguarding national security.\r
-Article 67\r
-The Council shall adopt measures to ensure administrative cooperation between the relevant departments of the Member States in the areas covered by this Title, as well as between those departments and the Commission. It shall act on a Commission proposal, subject to Article 68, and after consulting the European Parliament.\r
-Article 67a\r
-Where necessary to achieve the objectives set out in Article 61, as regards preventing and combating terrorism and related activities, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall define a framework for administrative measures with regard to capital movements and payments, such as the freezing of funds, financial assets or economic gains belonging to, or owned or held by, natural or legal persons, groups or non-State entities.\r
-The Council, on a proposal from the Commission, shall adopt measures to implement the framework referred to in the first paragraph.\r
-The acts referred to in this Article shall include necessary provisions on legal safeguards.\r
-Article 68\r
-The acts referred to in Chapters 4 and 5, together with the measures referred to in Article 67 which ensure administrative cooperation in the areas covered by these Chapters, shall be adopted:\r
-(a) on a proposal from the Commission, or\r
-(b) on the initiative of a quarter of the Member States.".\r
-CIG 1/1/07 REV 1 60\r
-EN\r
-Border checks, asylum and immigration\r
-65) Articles 62 to 64 shall be replaced by the following chapter and articles:\r
-"CHAPTER 2\r
-POLICIES ON BORDER CHECKS,\r
-ASYLUM AND IMMIGRATION\r
-Article 69\r
-1. The Union shall develop a policy with a view to:\r
-(a) ensuring the absence of any controls on persons, whatever their nationality, when crossing internal borders;\r
-(b) carrying out checks on persons and efficient monitoring of the crossing of external borders;\r
-(c) the gradual introduction of an integrated management system for external borders.\r
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures concerning:\r
-(a) the common policy on visas and other short-stay residence permits;\r
-(b) the checks to which persons crossing external borders are subject;\r
-(c) the conditions under which nationals of third countries shall have the freedom to travel within the Union for a short period;\r
-(d) any measure necessary for the gradual establishment of an integrated management system for external borders;\r
-(e) the absence of any controls on persons, whatever their nationality, when crossing internal borders.\r
-CIG 1/1/07 REV 1 61\r
-EN\r
-3. If action by the Union should prove necessary to facilitate the exercise of the right referred to in Article 17b(2)(a), and if the Treaties have not provided the necessary powers, the Council, acting in accordance with a special legislative procedure, may adopt provisions concerning passports, identity cards, residence permits or any other such document. The Council shall act unanimously after consulting the European Parliament.\r
-4. This Article shall not affect the competence of the Member States concerning the geographical demarcation of their borders, in accordance with international law.\r
-Article 69a\r
-1. The Union shall develop a common policy on asylum, subsidiary protection and temporary protection with a view to offering appropriate status to any third-country national requiring international protection and ensuring compliance with the principle of non-refoulement. This policy must be in accordance with the Geneva Convention of 28 July 1951 and the Protocol of 31 January 1967 relating to the status of refugees, and other relevant treaties.\r
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures for a common European asylum system comprising:\r
-(a) a uniform status of asylum for nationals of third countries, valid throughout the Union;\r
-(b) a uniform status of subsidiary protection for nationals of third countries who, without obtaining European asylum, are in need of international protection;\r
-(c) a common system of temporary protection for displaced persons in the event of a massive inflow;\r
-(d) common procedures for the granting and withdrawing of uniform asylum or subsidiary protection status;\r
-(e) criteria and mechanisms for determining which Member State is responsible for considering an application for asylum or subsidiary protection;\r
-(f) standards concerning the conditions for the reception of applicants for asylum or subsidiary protection;\r
-(g) partnership and cooperation with third countries for the purpose of managing inflows of people applying for asylum or subsidiary or temporary protection.\r
-CIG 1/1/07 REV 1 62\r
-EN\r
-3. In the event of one or more Member States being confronted by an emergency situation characterised by a sudden inflow of nationals of third countries, the Council, on a proposal from the Commission, may adopt provisional measures for the benefit of the Member State(s) concerned. It shall act after consulting the European Parliament.\r
-Article 69b\r
-1. The Union shall develop a common immigration policy aimed at ensuring, at all stages, the efficient management of migration flows, fair treatment of third-country nationals residing legally in Member States, and the prevention of, and enhanced measures to combat, illegal immigration and trafficking in human beings.\r
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures in the following areas:\r
-(a) the conditions of entry and residence, and standards on the issue by Member States of long-term visas and residence permits, including those for the purpose of family reunion;\r
-(b) the definition of the rights of third-country nationals residing legally in a Member State, including the conditions governing freedom of movement and of residence in other Member States;\r
-(c) illegal immigration and unauthorised residence, including removal and repatriation of persons residing without authorisation;\r
-(d) combating trafficking in persons, in particular women and children.\r
-3. The Union may conclude agreements with third countries for the readmission to their countries of origin or provenance of third-country nationals who do not or who no longer fulfil the conditions for entry, presence or residence in the territory of one of the Member States.\r
-4. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures to provide incentives and support for the action of Member States with a view to promoting the integration of third-country nationals residing legally in their territories, excluding any harmonisation of the laws and regulations of the Member States.\r
-5. This Article shall not affect the right of Member States to determine volumes of admission of third-country nationals coming from third countries to their territory in order to seek work, whether employed or self-employed.\r
-CIG 1/1/07 REV 1 63\r
-EN\r
-Article 69c\r
-The policies of the Union set out in this Chapter and their implementation shall be governed by the principle of solidarity and fair sharing of responsibility, including its financial implications, between the Member States. Whenever necessary, the Union acts adopted pursuant to this Chapter shall contain appropriate measures to give effect to this principle.".\r
-Judicial cooperation in civil matters\r
-66) Article 65 shall be replaced by the following chapter and article:\r
-"CHAPTER 3\r
-JUDICIAL COOPERATION IN CIVIL MATTERS\r
-Article 69d\r
-1. The Union shall develop judicial cooperation in civil matters having cross-border implications, based on the principle of mutual recognition of judgments and decisions in extrajudicial cases. Such cooperation may include the adoption of measures for the approximation of the laws and regulations of the Member States.\r
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures, particularly when necessary for the proper functioning of the internal market, aimed at ensuring:\r
-(a) the mutual recognition and enforcement between Member States of judgments and decisions in extrajudicial cases;\r
-(b) the cross-border service of judicial and extrajudicial documents;\r
-(c) the compatibility of the rules applicable in the Member States concerning conflict of laws and of jurisdiction;\r
-(d) cooperation in the taking of evidence;\r
-(e) effective access to justice;\r
-CIG 1/1/07 REV 1 64\r
-EN\r
-(f) the elimination of obstacles to the proper functioning of civil proceedings, if necessary by promoting the compatibility of the rules on civil procedure applicable in the Member States;\r
-(g) the development of alternative methods of dispute settlement;\r
-(h) support for the training of the judiciary and judicial staff.\r
-3. Notwithstanding paragraph 2, measures concerning family law with cross-border implications shall be established by the Council, acting in accordance with a special legislative procedure. The Council shall act unanimously after consulting the European Parliament.\r
-The Council, on a proposal from the Commission, may adopt a decision determining those aspects of family law with cross-border implications which may be the subject of acts adopted by the ordinary legislative procedure. The Council shall act unanimously after consulting the European Parliament.\r
-The proposal referred to in the second subparagraph shall be notified to the national Parliaments. If a national Parliament makes known its opposition within six months of the date of such notification, the decision shall not be adopted. In the absence of opposition, the Council may adopt the decision.".\r
-Judicial cooperation in criminal matters\r
-67) Articles 66 and 67 shall be replaced by the following chapter and articles:\r
-"CHAPTER 4\r
-JUDICIAL COOPERATION IN CRIMINAL MATTERS\r
-Article 69e\r
-1. Judicial cooperation in criminal matters in the Union shall be based on the principle of mutual recognition of judgments and judicial decisions and shall include the approximation of the laws and regulations of the Member States in the areas referred to in paragraph 2 and in Article 69f.\r
-The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt measures to:\r
-(a) lay down rules and procedures for ensuring recognition throughout the Union of all forms of judgments and judicial decisions;\r
-CIG 1/1/07 REV 1 65\r
-EN\r
-(b) prevent and settle conflicts of jurisdiction between Member States;\r
-(c) support the training of the judiciary and judicial staff;\r
-(d) facilitate cooperation between judicial or equivalent authorities of the Member States in relation to proceedings in criminal matters and the enforcement of decisions.\r
-2. To the extent necessary to facilitate mutual recognition of judgments and judicial decisions and police and judicial cooperation in criminal matters having a cross-border dimension, the European Parliament and the Council may, by means of directives adopted in accordance with the ordinary legislative procedure, establish minimum rules. Such rules shall take into account the differences between the legal traditions and systems of the Member States.\r
-They shall concern:\r
-(a) mutual admissibility of evidence between Member States;\r
-(b) the rights of individuals in criminal procedure;\r
-(c) the rights of victims of crime;\r
-(d) any other specific aspects of criminal procedure which the Council has identified in advance by a decision; for the adoption of such a decision, the Council shall act unanimously after obtaining the consent of the European Parliament.\r
-Adoption of the minimum rules referred to in this paragraph shall not prevent Member States from maintaining or introducing a higher level of protection for individuals.\r
-3. Where a member of the Council considers that a draft directive as referred to in paragraph 2 would affect fundamental aspects of its criminal justice system, it may request that the draft directive be referred to the European Council. In that case, the ordinary legislative procedure shall be suspended. After discussion, and in case of a consensus, the European Council shall, within four months of this suspension, refer the draft back to the Council, which shall terminate the suspension of the ordinary legislative procedure.\r
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft directive concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Articles 10(2) of the Treaty on European Union and Article 280d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.\r
-CIG 1/1/07 REV 1 66\r
-EN\r
-Article 69f\r
-1. The European Parliament and the Council may, by means of directives adopted in accordance with the ordinary legislative procedure, establish minimum rules concerning the definition of criminal offences and sanctions in the areas of particularly serious crime with a cross-border dimension resulting from the nature or impact of such offences or from a special need to combat them on a common basis.\r
-These areas of crime are the following: terrorism, trafficking in human beings and sexual exploitation of women and children, illicit drug trafficking, illicit arms trafficking, money laundering, corruption, counterfeiting of means of payment, computer crime and organised crime.\r
-On the basis of developments in crime, the Council may adopt a decision identifying other areas of crime that meet the criteria specified in this paragraph. It shall act unanimously after obtaining the consent of the European Parliament.\r
-2. If the approximation of criminal laws and regulations of the Member States proves essential to ensure the effective implementation of a Union policy in an area which has been subject to harmonisation measures, directives may establish minimum rules with regard to the definition of criminal offences and sanctions in the area concerned. Such directives shall be adopted by the same ordinary or special legislative procedure as was followed for the adoption of the harmonisation measures in question, without prejudice to Article 68.\r
-3. Where a member of the Council considers that a draft directive as referred to in paragraph 1 or 2 would affect fundamental aspects of its criminal justice system, it may request that the draft directive be referred to the European Council. In that case, the ordinary legislative procedure shall be suspended. After discussion, and in case of a consensus, the European Council shall, within four months of this suspension, refer the draft back to the Council, which shall terminate the suspension of the ordinary legislative procedure.\r
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft directive concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Articles 10(2) of the Treaty on European Union and Article 208d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.\r
-CIG 1/1/07 REV 1 67\r
-EN\r
-Article 69g\r
-The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures to promote and support the action of Member States in the field of crime prevention, excluding any harmonisation of the laws and regulations of the Member States.\r
-Article 69h\r
-1. Eurojust's mission shall be to support and strengthen coordination and cooperation between national investigating and prosecuting authorities in relation to serious crime affecting two or more Member States or requiring a prosecution on common bases, on the basis of operations conducted and information supplied by the Member States' authorities and by Europol.\r
-In this context, the European Parliament and the Council, by means of regulations adopted in accordance with the ordinary legislative procedure, shall determine Eurojust's structure, operation, field of action and tasks. These tasks may include:\r
-(a) the initiation of criminal investigations, as well as proposing the initiation of prosecutions, conducted by competent national authorities, particularly those relating to offences against the financial interests of the Union;\r
-(b) the coordination of investigations and prosecutions referred to in point (a);\r
-(c) the strengthening of judicial cooperation, including by resolution of conflicts of jurisdiction and by close cooperation with the European Judicial Network.\r
-These regulations shall also determine arrangements for involving the European Parliament and national Parliaments in the evaluation of Eurojust's activities.\r
-2. In the prosecutions referred to in paragraph 1, and without prejudice to Article 69i, formal acts of judicial procedure shall be carried out by the competent national officials.\r
-Article 69i\r
-1. In order to combat crimes affecting the financial interests of the Union, the Council, by means of regulations adopted in accordance with a special legislative procedure, may establish a European Public Prosecutor's Office from Eurojust. The Council shall act unanimously after obtaining the consent of the European Parliament.\r
-CIG 1/1/07 REV 1 68\r
-EN\r
-In the absence of unanimity in the Council, a group of at least nine Member States may request that the draft regulation be referred to the European Council. In that case, the procedure in the Council shall be suspended. After discussion, and in case of a consensus, the European Council shall, within four months of this suspension, refer the draft back to the Council for adoption.\r
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft regulation concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Article 10(2) of the Treaty on European Union and Article 280d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.\r
-2. The European Public Prosecutor's Office shall be responsible for investigating, prosecuting and bringing to judgment, where appropriate in liaison with Europol, the perpetrators of, and accomplices in, offences against the Union's financial interests, as determined by the regulation provided for in paragraph 1. It shall exercise the functions of prosecutor in the competent courts of the Member States in relation to such offences.\r
-3. The regulation referred to in paragraph 1 shall determine the general rules applicable to the European Public Prosecutor's Office, the conditions governing the performance of its functions, the rules of procedure applicable to its activities, as well as those governing the admissibility of evidence, and the rules applicable to the judicial review of procedural measures taken by it in the performance of its functions.\r
-4. The European Council may, at the same time or subsequently, adopt a decision amending paragraph 1 in order to extend the powers of the European Public Prosecutor's Office to include serious crime having a cross-border dimension and amending accordingly paragraph 2 as regards the perpetrators of, and accomplices in, serious crimes affecting more than one Member State. The European Council shall act unanimously after obtaining the consent of the European Parliament and after consulting the Commission.".\r
-CIG 1/1/07 REV 1 69\r
-EN\r
-Police cooperation\r
-68) Articles 68 and 69 shall be replaced by the following chapter and articles:\r
-"CHAPTER 5\r
-POLICE COOPERATION\r
-Article 69j\r
-1. The Union shall establish police cooperation involving all the Member States' competent authorities, including police, customs and other specialised law enforcement services in relation to the prevention, detection and investigation of criminal offences.\r
-2. For the purposes of paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish measures concerning:\r
-(a) the collection, storage, processing, analysis and exchange of relevant information;\r
-(b) support for the training of staff, and cooperation on the exchange of staff, on equipment and on research into crime-detection;\r
-(c) common investigative techniques in relation to the detection of serious forms of organised crime.\r
-3. The Council, acting in accordance with a special legislative procedure, may establish measures concerning operational cooperation between the authorities referred to in this Article. The Council shall act unanimously after consulting the European Parliament.\r
-In case of the absence of unanimity in the Council, a group of at least nine Member States may request that the draft measures be referred to the European Council. In that case, the procedure in the Council shall be suspended. After discussion, and in case of a consensus, the European Council shall, within four months of this suspension, refer the draft back to the Council for adoption.\r
-Within the same timeframe, in case of disagreement, and if at least nine Member States wish to establish enhanced cooperation on the basis of the draft measures concerned, they shall notify the European Parliament, the Council and the Commission accordingly. In such a case, the authorisation to proceed with enhanced cooperation referred to in Article 10(2) of the Treaty on European Union and Article 280d(1) of this Treaty shall be deemed to be granted and the provisions on enhanced cooperation shall apply.\r
-CIG 1/1/07 REV 1 70\r
-EN\r
-The specific procedure provided for in the second and third subparagraphs shall not apply to acts which constitute a development of the Schengen acquis.\r
-Article 69k\r
-1. Europol's mission shall be to support and strengthen action by the Member States' police authorities and other law enforcement services and their mutual cooperation in preventing and combating serious crime affecting two or more Member States, terrorism and forms of crime which affect a common interest covered by a Union policy.\r
-2. In this context, the European Parliament and the Council, by means of regulations adopted in accordance with the ordinary legislative procedure, shall determine Europol's structure, operation, field of action and tasks. These tasks may include:\r
-(a) the collection, storage, processing, analysis and exchange of information forwarded particularly by the authorities of the Member States or third countries or bodies;\r
-(b) the coordination, organisation and implementation of investigative and operational action carried out jointly with the Member States' competent authorities or in the context of joint investigative teams, where appropriate in liaison with Eurojust.\r
-These regulations shall also lay down the procedures for scrutiny of Europol's activities by the European Parliament, together with national Parliaments.\r
-3. Any operational action by Europol must be carried out in liaison and in agreement with the authorities of the Member State or States whose territory is concerned. The application of coercive measures shall be the exclusive responsibility of the competent national authorities.\r
-Article 69l\r
-The Council, acting in accordance with a special legislative procedure, shall lay down the conditions and limitations under which the competent authorities of the Member States referred to in Articles 69e and 69j may operate in the territory of another Member State in liaison and in agreement with the authorities of that State. The Council shall act unanimously after consulting the European Parliament.".\r
-CIG 1/1/07 REV 1 71\r
-EN\r
-Transports\r
-69) In Article 70, the words "of this Treaty" shall be replaced by "of the Treaties" and the words "by Member States" shall be deleted.\r
-70) In Article 71, paragraph 2 shall be replaced by the following:\r
-"2. When the measures referred to in paragraph 1 are adopted, account shall be taken of cases where their application might seriously affect the standard of living and level of employment in certain regions, and the operation of transport facilities.".\r
-71) At the beginning of Article 72, the words ", without the unanimous approval of the Council," shall be replaced by ", unless the Council has unanimously adopted a measure granting a derogation,".\r
-72) Article 75 shall be amended as follows:\r
-(a) in paragraph 1, the words "within the Community" shall be replaced by "within the Union" and the words "shall be abolished" shall be replaced by "shall be prohibited".\r
-(b) in paragraph 2, the words "the Council" shall be replaced by "the European Parliament and the Council".\r
-(c) in the first sentence of paragraph 3, the words "the Economic and Social Committee" shall be replaced by "the European Parliament and the Economic and Social Committee".\r
-73) In Article 78, the following sentence shall be added:\r
-"Five years after the entry into force of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community, the Council, acting on a proposal from the Commission, may adopt a decision repealing this Article.".\r
-74) In Article 79, the phrase "without prejudice to the powers of the Economic and Social Committee" shall be deleted.\r
-CIG 1/1/07 REV 1 72\r
-EN\r
-75) In Article 80, paragraph 2 shall be replaced by the following:\r
-"2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may lay down appropriate provisions for sea and air transport. They shall act after consulting the Committee of the Regions and the Economic and Social Committee.".\r
-Rules on competition\r
-76) In Article 85, the following new paragraph 3 shall be added:\r
-"3. The Commission may adopt regulations relating to the categories of agreement in respect of which the Council has adopted a regulation or a directive pursuant to Article 83(2)(b).".\r
-77) Article 87 shall be amended as follows:\r
-(a) in paragraph 2, the following sentence shall be added at the end of point (c):\r
-"Five years after the entry into force of the Treaty amending the Treaty on European Union and the Treaty establishing the European Community, the Council, acting on a proposal from the Commission, may adopt a decision repealing this point.";\r
-(b) in paragraph 3, the following words shall be added at the end of point (a): ", and of the regions referred to in Article 299, in view of their structural, economic and social situation;".\r
-78) In Article 88, the following new paragraph 4 shall be added:\r
-"4. The Commission may adopt regulations relating to the categories of State aid that the Council has, pursuant to Article 89, determined may be exempted from the procedure provided for by paragraph 3 of this Article.".\r
-Fiscal provisions\r
-79) At the end of Article 93, the words "within the time limit laid down in Article 14" shall be replaced by "and to avoid distortion of competition.".\r
-CIG 1/1/07 REV 1 73\r
-EN\r
-Approximation of laws\r
-80) The order of Articles 94 and 95 shall be reversed. Article 94 shall be renumbered 95 and Article 95 shall be renumbered 94.\r
-81) Article 95, renumbered 94, shall be amended as follows:\r
-(a) at the beginning of paragraph 1, the words "By way of derogation from Article 94 and" shall be deleted and the reference to Article 14 shall be replaced by a reference to Articles 22a and 22b;\r
-(b) at the beginning of paragraph 4, the words "If, after the adoption by the Council or by the Commission of a harmonisation measure,\85" shall be replaced by "If, after the adoption of a harmonisation measure by the European Parliament and the Council, by the Council or by the Commission, \85";\r
-(c) at the beginning of paragraph 5, the words "Moreover, without prejudice to paragraph 4, if, after the adoption by the Council or by the Commission of a harmonisation measure, \85" shall be replaced by "Moreover, without prejudice to paragraph 4, if, after the adoption of a harmonisation measure by the European Parliament and the Council, by the Council or by the Commission, \85";\r
-(d) in paragraph 10, the words "Community control procedure" shall be replaced by "Union control procedure".\r
-82) In Article 94, renumbered 95, the words "Without prejudice to Article 94, ..." shall be inserted at the beginning.\r
-83) In Article 96, second paragraph, first sentence, the words ", the Council shall, on a proposal from the Commission, acting by a qualified majority, issue" shall be replaced by ", the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall issue\85". The second sentence shall be replaced by "Any other appropriate measures provided for in the Treaties may be adopted.".\r
-CIG 1/1/07 REV 1 74\r
-EN\r
-Intellectual property\r
-84) The following new Article 97a shall be inserted:\r
-"Article 97a\r
-In the context of the establishment and functioning of the internal market, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish measures for the creation of European intellectual property rights to provide uniform intellectual property rights protection throughout the Union and for the setting up of centralised Union-wide authorisation, coordination and supervision arrangements.\r
-The Council, acting in accordance with a special legislative procedure, shall by means of regulations establish language arrangements for the European intellectual property rights. The Council shall act unanimously after consulting the European Parliament.".\r
-Economic and monetary policy\r
-85) An Article 97b shall be inserted, with the wording of Article 4; it shall be amended as follows:\r
-(a) in paragraph 1, the words "and in accordance with the timetable set out therein" shall be deleted;\r
-(b) in paragraph 2, the words "Concurrently with the foregoing, and as provided in this Treaty and in accordance with the timetable and the procedures set out therein, these activities shall include the irrevocable fixing of exchange rates leading to the introduction of a single currency, the ecu,\85" shall be replaced by " Concurrently with the foregoing, and as provided in the Treaties and in accordance with the procedures set out therein, these activities shall include a single currency, the euro, \85".\r
-86) Article 99 shall be amended as follows:\r
-(a) in paragraph 4, the first sentence of the first subparagraph shall be replaced by the following two sentences:\r
-"Where it is established, under the procedure referred to in paragraph 3, that the economic policies of a Member State are not consistent with the broad guidelines referred to in paragraph 2 or that they risk jeopardising the proper functioning of economic and monetary union, the Commission may address a warning to the Member State concerned. The Council, on a recommendation from the Commission, may address the necessary recommendations to the Member State concerned.";\r
-CIG 1/1/07 REV 1 75\r
-EN\r
-(b) the second subparagraph of paragraph 4 shall be renumbered paragraph 5 and paragraph 5 shall be renumbered 6;\r
-(c) the following two new subparagraphs shall be inserted in paragraph 4:\r
-"Within the scope of this paragraph, the Council shall act without taking into account the vote of the member of the Council representing the Member State concerned.\r
-A qualified majority of the other members of the Council shall be defined in accordance with Article 205(3)(a).";\r
-(d) in paragraph 6, the words "The Council, acting in accordance with the procedure referred to in Article 252, may adopt detailed rules" shall be replaced by the following: "The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, may adopt detailed rules".\r
-Difficulties in the supply of certain products (energy)\r
-87) In Article 100, paragraph 1 shall be replaced by the following:\r
-"1. Without prejudice to any other procedures provided for in the Treaties, the Council, on a proposal from the Commission, may decide, in a spirit of solidarity between Member States, upon the measures appropriate to the economic situation, in particular if severe difficulties arise in the supply of certain products, notably in the area of energy.".\r
-Other provisions - economic and monetary policy\r
-88) In Article 102, paragraph 2 shall be deleted and paragraph 1 shall not be numbered;\r
-89) In Article 103, paragraph 2 shall be replaced by the following:\r
-"The Council, on a proposal from the Commission and after consulting the European Parliament, may, as required, specify definitions for the application of the prohibitions referred to in Articles 101 and 102 and in this Article.".\r
-CIG 1/1/07 REV 1 76\r
-EN\r
-Excessive deficit procedure\r
-90) Article 104 shall be amended as follows:\r
-(a) paragraph 5 shall be replaced by the following:\r
-"5. If the Commission considers that an excessive deficit in a Member State exists or may occur, it shall address an opinion to the Member State concerned and shall inform the Council accordingly.";\r
-(b) in paragraph 6, the word "recommendation" shall be replaced by "proposal";\r
-(c) in paragraph 7, the first sentence shall be replaced by "Where the Council decides, in accordance with paragraph 6, that an excessive deficit exists, it shall adopt, without undue delay, on a recommendation from the Commission, recommendations addressed to the Member State concerned with a view to bringing that situation to an end within a given period.";\r
-(d) in the introductory words of the first subparagraph of paragraph 11, there is a change to the French which does not affect the English version;\r
-(e) in paragraph 12, at the beginning of the first sentence, the words "its decisions" shall be replaced by "its decisions or recommendations";\r
-(f) paragraph 13 shall be replaced by the following:\r
-"13. When taking the decisions referred to in paragraphs 8, 9, 11 and 12, the Council shall act on a recommendation from the Commission.\r
-When the Council adopts the measures referred to in paragraphs 6 to 9 and 11 and 12, it shall act without taking into account the vote of the member of the Council representing the Member State concerned.\r
-A qualified majority of the other members of the Council shall be defined in accordance with Article 205(3)(a).";\r
-(g) in paragraph 14, third subparagraph, the words ", before 1 January 1994" shall be deleted.\r
-CIG 1/1/07 REV 1 77\r
-EN\r
-Monetary policy\r
-91) Article 105 shall be amended as follows:\r
-(a) in the first sentence of paragraph 1, "ESCB" shall be replaced by "European System of Central Banks, hereinafter referred to as "ESCB",";\r
-(b) The text of paragraph 6 shall be replaced by the following:\r
-"6. The Council, acting by means of regulations in accordance with a special legislative procedure, may unanimously, and after consulting the European Parliament and the European Central Bank, confer specific tasks upon the European Central Bank concerning policies relating to the prudential supervision of credit institutions and other financial institutions with the exception of insurance undertakings.".\r
-92) Article 106 shall be amended as follows:\r
-(a) in paragraph 1, first sentence, the word "euro" shall be inserted before "banknotes";\r
-(b) in paragraph 2, first sentence, the word "euro" shall be inserted before "coins"; at the beginning of the second sentence, the words "The Council may, acting in accordance with the procedure referred to in Article 252 and after consulting the ECB" shall be replaced by: "The Council, on a proposal from the Commission and after consulting the European Parliament and the European Central Bank, may".\r
-93) Article 107 shall be amended as follows:\r
-(a) paragraphs 1 and 2 shall be deleted and paragraphs 3, 4, 5 and 6 shall be renumbered 1, 2, 3 and 4 respectively;\r
-(b) in paragraph 4, renumbered 2, the words "Statute of the ESCB" shall be replaced by the following: "Statute of the European System of Central Banks and of the European Central Bank, hereinafter referred to as 'Statute of the ESCB and of the ECB'";\r
-CIG 1/1/07 REV 1 78\r
-EN\r
-(c) paragraph 5, renumbered 3, shall be replaced by the following:\r
-"3. Articles 5.1, 5.2, 5.3, 17, 18, 19.1, 22, 23, 24, 26, 32.2, 32.3, 32.4, 32.6, 33.1(a) and 36 of the Statute of the ESCB may be amended by the European Parliament and the Council, acting in accordance with the ordinary legislative procedure. They shall act either on a recommendation from the European Central Bank and after consulting the Commission or on a proposal from the Commission and after consulting the European Central Bank.".\r
-94) In Article 109, the words ", at the latest at the date of the establishment of the ESCB," shall be deleted.\r
-95) In Article 110, the first four subparagraphs of paragraph 2 shall be deleted.\r
-Measures relating to use of the euro\r
-96) In Article 111, paragraphs 1 to 3 and 5 shall become, respectively, paragraphs 1 to 4 of Article 188o; they shall be amended as set out below in point 174. The text of paragraph 4 shall become paragraph 1 of Article 115a; it shall be amended as set out below in point 100.\r
-Article 111 shall be replaced by the following:\r
-"Without prejudice to the powers of the European Central Bank, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall lay down the measures necessary for use of the euro as the single currency. Such measures shall be adopted after consultation of the European Central Bank.".\r
-Institutional provisions (EMU)\r
-97) Articles 112 and 113 shall become Articles 245b and 245c respectively; they shall be amended as set out below in points 228 and 229.\r
-CIG 1/1/07 REV 1 79\r
-EN\r
-98) Article 114 shall be renumbered 112; it shall be amended as follows:\r
-(a) in paragraph 1, first subparagraph, the words "Monetary Committee with advisory status" shall be replaced by "Economic and Financial Committee";\r
-(b) in paragraph 1, the second and third subparagraphs shall be deleted;\r
-(c) in paragraph 2, the first subparagraph shall be deleted.\r
-99) Article 115 shall be renumbered 113.\r
-Provisions specific to Member States whose currency is the euro\r
-100) The following new Chapter 3a and new Articles 114, 115 and 115a shall be inserted:\r
-"CHAPTER 3a\r
-PROVISIONS SPECIFIC TO MEMBER STATES WHOSE CURRENCY IS THE EURO\r
-Article 114\r
-1. In order to ensure the proper functioning of economic and monetary union, and in accordance with the relevant provisions of the Treaties, the Council shall, in accordance with the relevant procedure from among those referred to in Articles 99 and 104, with the exception of the procedure set out in Article 104(14), adopt measures specific to those Member States whose currency is the euro:\r
-(a) to strengthen the coordination and surveillance of their budgetary discipline;\r
-(b) to set out economic policy guidelines for them, while ensuring that they are compatible with those adopted for the whole of the Union and are kept under surveillance.\r
-2. For those measures set out in paragraph 1, only members of the Council representing Member States whose currency is the euro shall take part in the vote.\r
-A qualified majority of the said members shall be defined in accordance with Article 205(3)(a).\r
-CIG 1/1/07 REV 1 80\r
-EN\r
-Article 115\r
-Arrangements for meetings between ministers of those Member States whose currency is the euro are laid down by the Protocol on the Euro Group.\r
-Article 115a\r
-1. In order to secure the euro's place in the international monetary system, the Council, on a proposal from the Commission, shall adopt a decision establishing common positions on matters of particular interest for economic and monetary union within the competent international financial institutions and conferences. The Council shall act after consulting the European Central Bank.\r
-2. The Council, on a proposal from the Commission, may adopt appropriate measures to ensure unified representation within the international financial institutions and conferences. The Council shall act after consulting the European Central Bank.\r
-3. For the measures referred to in paragraphs 1 and 2, only members of the Council representing Member States whose currency is the euro shall take part in the vote.\r
-A qualified majority of the said members shall be defined in accordance with Article 205(3)(a).".\r
-Transitional provisions relating to Member States with a derogation\r
-101) Article 116 shall be replaced by the following:\r
-"Article 116\r
-1. Member States in respect of which the Council has not decided that they fulfil the necessary conditions for the adoption of the euro shall hereinafter be referred to as "Member States with a derogation".\r
-2. The following provisions of the Treaties shall not apply to Member States with a derogation:\r
-(a) adoption of the parts of the broad economic policy guidelines which concern the euro area generally (Article 99(2));\r
-CIG 1/1/07 REV 1 81\r
-EN\r
-(b) coercive means of remedying excessive deficits (Article 104(9) and (11));\r
-(c) the objectives and tasks of the European System of Central Banks (Article 105(1), (2), (3) and (5));\r
-(d) issue of the euro (Article 106);\r
-(e) acts of the European Central Bank (Article 110);\r
-(f) measures governing the use of the euro (Article 111);\r
-(g) monetary agreements and other measures relating to exchange-rate policy (Article 188o);\r
-(h) appointment of members of the Executive Board of the European Central Bank (Article 245b(2));\r
-(i) decisions establishing common positions on issues of particular relevance for economic and monetary union within the competent international financial institutions and conferences (Article 115a(1));\r
-(j) measures to ensure unified representation within the international financial institutions and conferences (Article 115a(2)).\r
-In the Articles referred to in points (a) to (j), "Member States" shall therefore mean Member States whose currency is the euro.\r
-3. Under Chapter IX of the Statute of the European System of Central Banks and of the European Central Bank, Member States with a derogation and their national central banks are excluded from rights and obligations within the European System of Central Banks.\r
-4. The voting rights of members of the Council representing Member States with a derogation shall be suspended for the adoption by the Council of the measures referred to in the Articles listed in paragraph 2, and in the following instances:\r
-(a) recommendations made to those Member States whose currency is the euro in the framework of multilateral surveillance, including on stability programmes and warnings (Article 99(4));\r
-(b) measures relating to excessive deficits concerning those Member States whose currency is the euro (Article 104(6), (7), (8), (12) and (13)).\r
-A qualified majority of the other members of the Council shall be defined in accordance with Article 205(3)(a).".\r
-CIG 1/1/07 REV 1 82\r
-EN\r
-102) Article 117 shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by Article 121(1), with the following amendments:\r
-(i) at the beginning of the paragraph, the following shall be inserted: "At least once every two years, or at the request of a Member State with a derogation,";\r
-(ii) throughout the paragraph, the words "the EMI" shall be replaced by "the European Central Bank";\r
-(iii) in the first subparagraph, first sentence, the words "the progress made in the fulfilment by the Member States of their obligations" shall be replaced by "the progress made by the Member States with a derogation in fulfilling their obligations";\r
-(iv) in the first subparagraph, second sentence, the words "each Member State's national legislation" shall be replaced by "the national legislation of each of these Member States" and the words "of this Treaty" shall be deleted;\r
-(v) in the third indent, the words "against the currency of any other Member State" shall be replaced by "against the euro;";\r
-(vi) in the fourth indent, the words "the Member State" shall be replaced by "the Member State with a derogation" and the words "of the European Monetary System" shall be deleted;\r
-(vii) in the second subparagraph, the words "the development of the ecu" shall be deleted;\r
-(b) paragraph 2 shall be amended as follows:\r
-(i) the first five indents shall become the first five indents of the second paragraph of Article 118; they shall be amended as set out below in point 103. The sixth indent shall be repealed; CIG 1/1/07 REV 1 83\r
-EN\r
-(ii) Article 117(2) shall be replaced by the second sentence of Article 122(2); at the end of the first subparagraph, the words "laid down in Article 121(1)" shall be replaced by "laid down in paragraph 1" and the following new second and third subparagraphs shall be added:\r
-"The Council shall act having received a recommendation of a qualified majority of those among its members representing Member States whose currency is the euro. These members shall act within six months of the Council receiving the Commission's proposal.\r
-The qualified majority of the said members, as referred to in the second subparagraph, shall be defined in accordance with Article 205(3)(a).";\r
-(c) paragraph 3 shall be replaced by Article 123(5); it shall be amended as follows:\r
-(i) at the beginning of the paragraph, the words "If it is decided, according to the procedure set out in Article 122(2), to abrogate a derogation," shall be replaced by "If it is decided, in accordance with the procedure set out in paragraph 2, to abrogate a derogation,";\r
-(ii) the words "adopt the rate" shall be replaced by "irrevocably fix the rate";\r
-(d) paragraphs 4 to 9 shall be repealed.\r
-103) Article 118 shall be amended as follows:\r
-(a) the first subparagraph shall be numbered paragraph 1 and shall be replaced by the text of Article 123(3); the words "of this Treaty" shall be deleted;\r
-(b) the second subparagraph shall be numbered paragraph 2 and shall be replaced by the first five indents of Article 117(2); the five indents shall be amended as set out below and shall be preceded by the following introductory words:\r
-"If and as long as there are Member States with a derogation, the European Central Bank shall, as regards those Member States:"\r
-(i) in the third indent, the words "European Monetary System" shall be replaced by "exchange-rate mechanism";\r
-(ii) the fifth indent shall be replaced by the following: "carry out the former tasks of the European Monetary Cooperation Fund which had subsequently been taken over by the European Monetary Institute.".\r
-CIG 1/1/07 REV 1 84\r
-EN\r
-104) An Article 118a shall be inserted, with the wording of Article 124(1); it shall be amended as follows:\r
-(a) the words "Until the beginning of the third stage, each Member State shall treat" shall be replaced by "Each Member State with a derogation shall treat";\r
-(b) the words "of the European Monetary System (EMS) and in developing the ecu, and shall respect existing powers in this field" shall be replaced by "of the exchange-rate mechanism.".\r
-105) Article 119 shall be amended as follows:\r
-(a) in paragraph 1, the words "with a derogation" shall be inserted after "Member State" in the first and second subparagraphs and the word "progressive" in the first subparagraph shall be deleted;\r
-(b) in paragraph 2(a), the words "with a derogation" shall be inserted after "Member States" and in paragraph 2(b), the words "the State which is in difficulties" shall be replaced by "the Member State with a derogation which is in difficulties,";\r
-(c) in paragraph 3, the words "the Commission shall authorise the State which is in difficulties" shall be replaced by "the Commission shall authorise the Member State with a derogation, which is in difficulties,";\r
-(d) paragraph 4 shall be deleted.\r
-106) Article 120 shall be amended as follows:\r
-(a) in paragraph 1, the words "the Member State concerned" shall be replaced by "a Member State with a derogation";\r
-(b) in paragraph 3, the words "an opinion" shall be replaced by "a recommendation" and the work "Member" shall be inserted before "State";\r
-(c) paragraph 4 shall be deleted.\r
-107) Article 121(1) shall become Article 117(1); it shall be amended as set out above in point 102. The rest of Article 121 shall be repealed.\r
-CIG 1/1/07 REV 1 85\r
-EN\r
-108) In Article 122(2), the second sentence shall become the first subparagraph of Article 117(2); it shall be amended as set out above in point 102. The rest of Article 122 shall be repealed.\r
-109) Article 123(3) shall become Article 118(1) and Article 123(5) shall become Article 117(3); they shall be amended as set out above in points 103 and 102 respectively. The rest of Article 123 shall be repealed.\r
-110) Article 124(1) shall become the new Article 118a; it shall be amended as set out above in point 104. The rest of Article 124 shall be repealed.\r
-Employment\r
-111) In Article 125, the words "and in Article 2 of this Treaty" shall be deleted.\r
-Titles which have been moved\r
-112) Title IX "COMMON COMMERCIAL POLICY" shall become Title II in Part Five on the Union's external action and Articles 131 and 133 shall become Articles 188b and 188c respectively. Article 131 shall be amended as set out below in point 157 and Article 133 shall be replaced by Article 188c.\r
-Articles 132 and 134 shall be repealed.\r
-113) Title X "CUSTOMS COOPERATION" shall become Chapter 1a in Title Ia, "Free movement of goods" and Article 135 shall become Article 27a, as set out above in point 45.\r
-Social policy\r
-114) The heading of Title XI "SOCIAL POLICY, EDUCATION, VOCATIONAL TRAINING AND YOUTH" shall be replaced by the heading "SOCIAL POLICY", renumbered IX; the heading "Chapter 1 \96 Social provisions" shall be deleted.\r
-CIG 1/1/07 REV 1 86\r
-EN\r
-115) The following new Article 136a shall be inserted:\r
-"Article 136a\r
-The Union recognises and promotes the role of the social partners at its level, taking into account the diversity of national systems. It shall facilitate dialogue between the social partners, respecting their autonomy.\r
-The Tripartite Social Summit for Growth and Employment shall contribute to social dialogue.".\r
-116) Article 137 shall be amended as follows:\r
-(a) in paragraph 2, in the introductory words of the first subparagraph, the words "the Council:" shall be replaced by "the European Parliament and the Council:" and the first sentence of the second subparagraph shall be split into two subparagraphs which shall read as follows:\r
-"The European Parliament and the Council shall act in accordance with the ordinary legislative procedure after consulting the Economic and Social Committee and the Committee of the Regions.\r
-In the fields referred to in paragraph 1(c), (d), (f) and (g) of this Article, the Council shall act unanimously, in accordance with a special legislative procedure, after consulting the European Parliament and the said Committees.".\r
-The second sentence of the second subparagraph shall become the last subparagraph;\r
-(b) in paragraph 3, at the end of the first subparagraph, the following words shall be added "or, where appropriate, with the implementation of a Council decision adopted in accordance with Article 139"; in the second subparagraph, the words "a directive must be transposed in accordance with Article 249" shall be replaced by "a directive or a decision must be transposed or implemented," and the words "or that decision" shall be added at the end of the subparagraph.\r
-117) In Article 138(4), first sentence, the words "On the occasion of such consultation," shall be replaced by "On the occasion of the consultation referred to in paragraphs 2 and 3," and, in the second sentence, the words "the procedure" shall be replaced by "this process".\r
-CIG 1/1/07 REV 1 87\r
-EN\r
-118) Article 139(2) shall be amended as follows:\r
-(a) at the end of the first subparagraph, the following sentence shall be added: "The European Parliament shall be informed.";\r
-(b) in the second subparagraph, at the beginning of the first sentence, "The Council shall act by qualified majority, except where the agreement" shall be replaced by "The Council shall act unanimously where the agreement" and the second sentence shall be deleted.\r
-119) In Article 140, the following words shall be added at the end of the second subparagraph: ", in particular initiatives aiming at the establishment of guidelines and indicators, the organisation of exchange of best practice, and the preparation of the necessary elements for periodic monitoring and evaluation. The European Parliament shall be kept fully informed.".\r
-120) In Article 143, the second paragraph shall be deleted.\r
-European Social Fund\r
-121) Chapter 2 shall be renumbered TITLE X.\r
-122) In Article 148, the words "implementing decisions" shall be replaced by "implementing regulations".\r
-Education, vocational training, youth and sport\r
-123) Chapter 3 shall be renumbered TITLE XI and the words "AND YOUTH" at the end of the heading shall be replaced by ", YOUTH AND SPORT".\r
-124) Article 149 shall be amended as follows:\r
-(a) in paragraph 1, the following subparagraph shall be inserted:\r
-"The Union shall contribute to the promotion of European sporting issues, while taking account of the specific nature of sport, its structures based on voluntary activity and its social and educational function.";\r
-CIG 1/1/07 REV 1 88\r
-EN\r
-(b) in paragraph 2, fifth indent, the words "and encouraging the participation of young people in democratic life in Europe" shall be added at the end; the following shall be inserted as the last indent:\r
-"- developing the European dimension in sport, by promoting fairness and openness in sporting competitions and cooperation between bodies responsible for sports, and by protecting the physical and moral integrity of sportsmen and sportswomen, especially the youngest sportsmen and sportswomen.";\r
-(c) in paragraph 3, the words "and sport" shall be added after "in the field of education";\r
-(d) in paragraph 4, the words "the Council" shall be deleted from the introductory phrase and the first indent shall begin with the words "the European Parliament and the Council, acting"; the second indent shall begin with the words "the Council, on a proposal".\r
-125) In Article 150(4), the following words shall be added at the end: "and the Council, on a proposal from the Commission, shall adopt recommendations".\r
-Culture\r
-126) Article 151(5) shall be amended as follows:\r
-(a) in the introductory phrase, the words "the Council" shall be deleted;\r
-(b) the first sentence of the first indent shall begin with the words "the European Parliament and the Council, acting", and the second sentence of the first indent shall be deleted;\r
-(c) in the second indent, the words "acting unanimously" shall be deleted and the indent shall begin with the words "the Council, on a proposal".\r
-CIG 1/1/07 REV 1 89\r
-EN\r
-Public Health\r
-127) Article 152 shall be amended as follows:\r
-(a) in paragraph 1, second subparagraph, the word "human" shall be replaced by "physical and mental" and, at the end of that subparagraph, the following shall be added: ", and monitoring, early warning of and combating serious cross-border threats to health";\r
-(b) in paragraph 2, at the end of the first subparagraph, the following sentence shall be added: "It shall in particular encourage cooperation between the Member States to improve the complementarity of their health services in cross-border areas.";\r
-(c) In paragraph 2, the following shall be added at the end of the second subparagraph: ", in particular initiatives aiming at the establishment of guidelines and indicators, the organisation of exchange of best practice, and the preparation of the necessary elements for periodic monitoring and evaluation. The European Parliament shall be kept fully informed.";\r
-(d) paragraph 4 shall be amended as follows:\r
-(i) in the introductory wording, the following words shall be inserted at the beginning: "By way of derogation from Article 2(5) and Article 6(a) and in accordance with Article 4(2)(k)" and the following shall be added at the end: "in order to meet common safety concerns:";\r
-(ii) in point (b), the words "by way of derogation from Article 37," shall be deleted;\r
-(iii) the following new point (c) shall be inserted:\r
-"(c) measures setting high standards of quality and safety for medicinal products and devices for medical use.";\r
-CIG 1/1/07 REV 1 90\r
-EN\r
-(iv) the current point (c) shall be renumbered paragraph 5 and replaced by the following:\r
-"5. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure and after consulting the Committee of the Regions and the Economic and Social Committee, may also adopt incentive measures designed to protect and improve human health and in particular to combat the major cross-border health scourges, measures concerning monitoring, early warning of and combating serious cross-border threats to health, and measures which have as their direct objective the protection of public health regarding tobacco and the abuse of alcohol, excluding any harmonisation of the laws and regulations of the Member States.";\r
-(e) the last subparagraph of the current paragraph 4 shall become paragraph 6 and paragraph 5, renumbered 7, shall be replaced by the following:\r
-"7. Union action shall respect the responsibilities of the Member States for the definition of their health policy and for the organisation and delivery of health services and medical care. The responsibilities of the Member States shall include the management of health services and medical care and the allocation of the resources assigned to them. The measures referred to in paragraph 4(a) shall not affect national provisions on the donation or medical use of organs and blood.".\r
-Consumer protection\r
-128) Article 153(2) shall become Article 12; paragraph 2 shall be deleted and paragraphs 3, 4 and 5 shall be renumbered 2, 3 and 4 respectively.\r
-CIG 1/1/07 REV 1 91\r
-EN\r
-Industry\r
-129) Article 157 shall be amended as follows:\r
-(a) at the end of paragraph 2, the following words shall be added: ", in particular initiatives aiming at the establishment of guidelines and indicators, the organisation of exchange of best practice, and the preparation of the necessary elements for periodic monitoring and evaluation. The European Parliament shall be kept fully informed.";\r
-(b) in paragraph 3, first subparagraph, the following phrase shall be added at the end of the second sentence: ", excluding any harmonisation of the laws and regulations of the Member States".\r
-Economic, social and territorial cohesion\r
-130) The heading of Title XVII shall be replaced by: "ECONOMIC, SOCIAL AND TERRITORIAL COHESION".\r
-131) Article 158 shall be amended as follows:\r
-(a) in the first paragraph, the words "economic and social cohesion" shall be replaced by "economic, social and territorial cohesion";\r
-(b) in the second paragraph, the words "or islands, including rural areas" shall be deleted;\r
-(c) the following new paragraph shall be added: "Among the regions concerned, particular attention shall be paid to rural areas, areas affected by industrial transition, and regions which suffer from severe and permanent natural or demographic handicaps such as the northernmost regions with very low population density and island, cross-border and mountain regions.".\r
-132) In Article 159, second paragraph, the words "economic and social" shall be replaced by "economic, social and territorial".\r
-CIG 1/1/07 REV 1 92\r
-EN\r
-133) Article 161 shall be amended as follows:\r
-(a) at the beginning of the first paragraph, first sentence, the words "Without prejudice to Article 162, the Council, acting unanimously on a proposal from the Commission and after obtaining the assent of the European Parliament" shall be replaced by "Without prejudice to Article 162, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure" and in the second sentence the words "The Council, acting by the same procedure, shall also define" shall be deleted at the beginning and the words "shall also be defined by the same procedure" added at the end;\r
-(b) in the second paragraph the words "by the Council " shall be deleted;\r
-(c) the third paragraph shall be deleted.\r
-134) In Article 162, first paragraph, the words "implementing decisions" shall be replaced by "implementing regulations".\r
-Research and technological development\r
-135) The words "AND SPACE" shall be added to the heading of Title XVIII.\r
-136) Article 163 shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by the following:\r
-"1. The Union shall have the objective of strengthening its scientific and technological bases by achieving a European research area in which researchers, scientific knowledge and technology circulate freely, and encouraging it to become more competitive, including in its industry, while promoting all the research activities deemed necessary by virtue of other Chapters of the Treaties.";\r
-(b) in paragraph 2, the words "enabling undertakings to exploit the internal market potential to the full," shall be replaced by "permitting researchers to cooperate freely across borders and at enabling undertakings to exploit the internal market potential,".\r
-CIG 1/1/07 REV 1 93\r
-EN\r
-137) The following words shall be added at the end of Article 165(2): ", in particular initiatives aiming at the establishment of guidelines and indicators, the organisation of exchange of best practice, and the preparation of the necessary elements for periodic monitoring and evaluation. The European Parliament shall be kept fully informed.".\r
-138) In Article 166, the following new paragraph 5 shall be added:\r
-"5. As a complement to the activities planned in the multiannual framework programme, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure and after consulting the Economic and Social Committee, shall establish the measures necessary for the implementation of the European research area.".\r
-139) In Article 167, the words "the Council" shall be replaced by "the Union".\r
-140) In Article 168, second paragraph, the words "the Council" shall be replaced by "the Union".\r
-141) In Article 170, the last phrase ", which shall be negotiated and concluded in accordance with Article 300" shall be deleted.\r
-Space\r
-142) The following new Article 172a shall be inserted:\r
-"Article 172a\r
-1. To promote scientific and technical progress, industrial competitiveness and the implementation of its policies, the Union shall draw up a European space policy. To this end, it may promote joint initiatives, support research and technological development and coordinate the efforts needed for the exploration and exploitation of space.\r
-2. To contribute to attaining the objectives referred to in paragraph 1, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish the necessary measures, which may take the form of a European space programme, excluding any harmonisation of the laws and regulations of the Member States.\r
-CIG 1/1/07 REV 1 94\r
-EN\r
-3. The Union shall establish any appropriate relations with the European Space Agency.\r
-4. This Article shall be without prejudice to the other provisions of this Title.".\r
-Environment (climate change)\r
-143) Article 174 shall be amended as follows:\r
-(a) in paragraph 1, the fourth indent shall be replaced by the following:\r
-"\96 promoting measures at international level to deal with regional or worldwide environmental problems, and in particular combating climate change.";\r
-(b) in paragraph 2, second subparagraph, the words "Community inspection procedure" shall be replaced by "a procedure of inspection by the Union";\r
-(c) in paragraph 4, first subparagraph, the last phrase ", which shall be negotiated and concluded in accordance with Article 300" shall be deleted.\r
-144) Article 175 shall be amended as follows:\r
-(a) in paragraph 2, the second subparagraph shall be replaced by the following:\r
-"The Council, acting unanimously on a proposal from the Commission and after consulting the European Parliament, the Economic and Social Committee and the Committee of the Regions, may make the ordinary legislative procedure applicable to the matters referred to in the first subparagraph.";\r
-(b) in the first subparagraph of paragraph 3, the words "In other areas," shall be deleted and the second subparagraph shall be replaced by the following:\r
-"The measures necessary for the implementation of these programmes shall be adopted under the terms of paragraph 1 or 2, as the case may be.";\r
-(c) in paragraph 4, the words "certain measures of a Community nature," shall be replaced by "certain measures adopted by the Union";\r
-CIG 1/1/07 REV 1 95\r
-EN\r
-(d) in paragraph 5, the words "the Council shall, in the act adopting that measure, lay down" shall be replaced by "such measure shall lay down".\r
-Titles which have been moved\r
-145) Title XX "DEVELOPMENT COOPERATION" shall become Chapter I of Title III of Part Five on the Union's external action, and Articles 177 and 179 to 181 shall become Articles 188d to 188g respectively; those articles shall be amended as set out below in points 161 to 164. Article 178 shall be repealed.\r
-146) Title XXI "ECONOMIC, FINANCIAL AND TECHNICAL COOPERATION WITH THIRD COUNTRIES" shall become Chapter 2 of Title III of Part Five on the Union's external action and Article 181a shall become the new Article 188h; that Article shall be amended as set out below in point 166.\r
-Energy\r
-147) Title XX shall be replaced by the following new Title and new Article 176a:\r
-"TITLE XX ENERGY\r
-Article 176a\r
-1. In the context of the establishment and functioning of the internal market and with regard for the need to preserve and improve the environment, Union policy on energy shall aim, in a spirit of solidarity between Member States, to:\r
-(a) ensure the functioning of the energy market;\r
-(b) ensure security of energy supply in the Union; and\r
-(c) promote energy efficiency and energy saving and the development of new and renewable forms of energy; and\r
-(d) promote the interconnection of energy networks.\r
-CIG 1/1/07 REV 1 96\r
-EN\r
-2. Without prejudice to the application of other provisions of the Treaties, the European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish the measures necessary to achieve the objectives in paragraph 1. Such measures shall be adopted after consultation of the Committee of the Regions and the Economic and Social Committee.\r
-Such measures shall not affect a Member State's right to determine the conditions for exploiting its energy resources, its choice between different energy sources and the general structure of its energy supply, without prejudice to Article 175(2)(c).\r
-3. By way of derogation from paragraph 2, the Council, acting in accordance with a special legislative procedure, shall unanimously and after consulting the European Parliament, establish the measures referred to therein when they are primarily of a fiscal nature.".\r
-Tourism\r
-148) Title XXI shall be replaced by the following new Title and new Article 176b:\r
-"TITLE XXI TOURISM\r
-Article 176b\r
-1. The Union shall complement the action of the Member States in the tourism sector, in particular by promoting the competitiveness of Union undertakings in that sector.\r
-To that end, Union action shall be aimed at:\r
-(a) encouraging the creation of a favourable environment for the development of undertakings in this sector;\r
-(b) promoting cooperation between the Member States, particularly by the exchange of good practice.\r
-2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish specific measures to complement actions within the Member States to achieve the objectives referred to in this Article, excluding any harmonisation of the laws and regulations of the Member States.".\r
-CIG 1/1/07 REV 1 97\r
-EN\r
-Civil protection\r
-149) The following new Title XXII and new Article 176c shall be inserted:\r
-"TITLE XXII CIVIL PROTECTION\r
-Article 176c\r
-1. The Union shall encourage cooperation between Member States in order to improve the effectiveness of systems for preventing and protecting against natural or man-made disasters.\r
-Union action shall aim to:\r
-(a) support and complement Member States' action at national, regional and local level in risk prevention, in preparing their civil-protection personnel and in responding to natural or man-made disasters within the Union;\r
-(b) promote swift, effective operational cooperation within the Union between national civil-protection services;\r
-(c) promote consistency in international civil-protection work.\r
-2. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish the measures necessary to help achieve the objectives referred to in paragraph 1, excluding any harmonisation of the laws and regulations of the Member States.".\r
-CIG 1/1/07 REV 1 98\r
-EN\r
-Administrative cooperation\r
-150) The following new Title XXIII and new Article 176d shall be inserted:\r
-"TITLE XXIII ADMINISTRATIVE COOPERATION\r
-Article 176d\r
-1. Effective implementation of Union law by the Member States, which is essential for the proper functioning of the Union, shall be regarded as a matter of common interest.\r
-2. The Union may support the efforts of Member States to improve their administrative capacity to implement Union law. Such action may include facilitating the exchange of information and of civil servants as well as supporting training schemes. No Member State shall be obliged to avail itself of such support. The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish the necessary measures to this end, excluding any harmonisation of the laws and regulations of the Member States.\r
-3. This Article shall be without prejudice to the obligations of the Member States to implement Union law or to the prerogatives and duties of the Commission. It shall also be without prejudice to other provisions of the Treaties providing for administrative cooperation among the Member States and between them and the Union.".\r
-Association of the overseas countries and territories\r
-151) At the end of Article 182, first paragraph, the words "to this Treaty" shall be deleted.\r
-152) At the end of Article 186, the words "shall be governed by agreements to be concluded subsequently with the unanimous approval of Member States" shall be replaced by "shall be regulated by acts adopted in accordance with Article 187".\r
-153) In Article 187, the words "acting unanimously" shall be replaced by "acting unanimously on a proposal from the Commission" and the following sentence shall be added at the end of the Article: "Where the provisions in question are adopted by the Council in accordance with a special legislative procedure, it shall act unanimously on a proposal from the Commission and after consulting the European Parliament.".\r
-CIG 1/1/07 REV 1 99\r
-EN\r
-External action by the Union\r
-154) A new Part Five shall be inserted. Its heading shall be "EXTERNAL ACTION BY THE UNION" and it shall contain the following Titles and Chapters:\r
-Title I: General provisions on the Union's external action\r
-Title II: Common commercial policy\r
-Title III: Cooperation with third countries and humanitarian aid\r
-Chapter 1: Development cooperation\r
-Chapter 2: Economic, financial and technical cooperation with third countries\r
-Chapter 3: Humanitarian aid\r
-Title IV: Restrictive measures\r
-Title V: International agreements\r
-Title VI: The Union's relations with international organisations and third countries\r
-and Union delegations\r
-Title VII: Solidarity clause.\r
-General provisions\r
-155) The following new Title I and new Article 188a shall be inserted:\r
-"TITLE I GENERAL PROVISONS ON THE UNION'S EXTERNAL ACTION\r
-Article 188a\r
-The Union's action on the international scene, pursuant to this Part, shall be guided by the principles, pursue the objectives and be conducted in accordance with the general provisions laid down in Chapter 1 of Title V of the Treaty on European Union.".\r
-Common commercial policy\r
-156) A Title II "COMMON COMMERCIAL POLICY" shall be inserted, taking over the heading of Title IX of Part 3.\r
-CIG 1/1/07 REV 1 100\r
-EN\r
-157) An Article 188b shall be inserted, with the wording of Article 131; it shall be amended as follows:\r
-(a) the first paragraph shall be replaced by the following:\r
-"By establishing a customs union in accordance with Articles 23 to 27, the Union shall contribute, in the common interest, to the harmonious development of world trade, the progressive abolition of restrictions on international trade and on foreign direct investment, and the lowering of customs and other barriers.";\r
-(b) the second paragraph shall be deleted.\r
-158) An Article 188c shall be inserted, replacing Article 133:\r
-"Article 188c\r
-1. The common commercial policy shall be based on uniform principles, particularly with regard to changes in tariff rates, the conclusion of tariff and trade agreements relating to trade in goods and services, and the commercial aspects of intellectual property, foreign direct investment, the achievement of uniformity in measures of liberalisation, export policy and measures to protect trade such as those to be taken in the event of dumping or subsidies. The common commercial policy shall be conducted in the context of the principles and objectives of the Union's external action.\r
-2. The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall adopt the measures defining the framework for implementing the common commercial policy.\r
-3. Where agreements with one or more third countries or international organisations need to be negotiated and concluded, Article 188n shall apply, subject to the special provisions of this Article.\r
-The Commission shall make recommendations to the Council, which shall authorise it to open the necessary negotiations. The Council and the Commission shall be responsible for ensuring that the agreements negotiated are compatible with internal Union policies and rules.\r
-The Commission shall conduct these negotiations in consultation with a special committee appointed by the Council to assist the Commission in this task and within the framework of such directives as the Council may issue to it. The Commission shall report regularly to the special committee and to the European Parliament on the progress of negotiations.\r
-CIG 1/1/07 REV 1 101\r
-EN\r
-4. For the negotiation and conclusion of the agreements referred to in paragraph 3, the Council shall act by a qualified majority.\r
-For the negotiation and conclusion of agreements in the fields of trade in services and the commercial aspects of intellectual property, as well as foreign direct investment, the Council shall act unanimously where such agreements include provisions for which unanimity is required for the adoption of internal rules.\r
-The Council shall also act unanimously for the negotiation and conclusion of agreements:\r
-(a) in the field of trade in cultural and audiovisual services, where these agreements risk prejudicing the Union's cultural and linguistic diversity;\r
-(b) in the field of trade in social, education and health services, where these agreements risk seriously disturbing the national organisation of such services and prejudicing the responsibility of Member States to deliver them.\r
-5. The negotiation and conclusion of international agreements in the field of transport shall be subject to Section 7 of Chapter III of Title III and to Article 188n.\r
-6. The exercise of the competences conferred by this Article in the field of the common commercial policy shall not affect the delimitation of competences between the Union and the Member States, and shall not lead to harmonisation of legislative or regulatory provisions of the Member States insofar as the Treaties exclude such harmonisation.".\r
-Development cooperation\r
-159) A Title III "COOPERATION WITH THIRD COUNTRIES AND HUMANITARIAN AID" shall be inserted.\r
-160) A Chapter 1 "DEVELOPMENT COOPERATION" shall be inserted, taking over the heading of Title XX of Part 3.\r
-CIG 1/1/07 REV 1 102\r
-EN\r
-161) An Article 188d shall be inserted, with the wording of Article 177; it shall be amended as follows:\r
-(a) paragraphs 1 and 2 shall be replaced by the following:\r
-"1. Union policy in the field of development cooperation shall be conducted within the framework of the principles and objectives of the Union's external action. The Union's development cooperation policy and that of the Member States complement and reinforce each other.\r
-Union development cooperation policy shall have as its primary objective the reduction and, in the long term, the eradication of poverty. The Union shall take account of the objectives of development cooperation in the policies that it implements which are likely to affect developing countries.";\r
-(b) Paragraph 3 shall be renumbered "2".\r
-162) An Article 188e shall be inserted, with the wording of Article 179; it shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by the following:\r
-"1. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures necessary for the implementation of development cooperation policy, which may relate to multiannual cooperation programmes with developing countries or programmes with a thematic approach.";\r
-(b) the following new paragraph 2 shall be inserted:\r
-"2. The Union may conclude with third countries and competent international organisations any agreement helping to achieve the objectives referred to in Article 10a of the Treaty on European Union and Article 188d of this Treaty.\r
-The first subparagraph shall be without prejudice to Member States' competence to negotiate in international bodies and to conclude agreements.";\r
-(c) the current paragraph 2 shall be renumbered "3" and the current paragraph 3 shall be deleted.\r
-163) An Article 188f shall be inserted, with the wording of Article 180; it shall be amended as follows:\r
-At the beginning of paragraph 1, the following words shall be inserted: "In order to promote the complementarity and efficiency of their action, the Union".\r
-CIG 1/1/07 REV 1 103\r
-EN\r
-164) An Article 188g shall be inserted, with the wording of Article 181; the second sentence of the first paragraph and the second paragraph shall be deleted.\r
-Economic, financial and technical cooperation with third countries\r
-165) A Chapter 2 "ECONOMIC, FINANCIAL AND TECHNICAL COOPERATION WITH THIRD COUNTRIES" shall be inserted, taking over the heading of Title XXI of Part 3.\r
-166) An Article 188h shall be inserted, with the wording of Article 181a; it shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by the following:\r
-"1. Without prejudice to the other provisions of the Treaties, and in particular Articles 188d to 188g, the Union shall carry out economic, financial and technical cooperation measures, including assistance, in particular financial assistance, with third countries other than developing countries. Such measures shall be consistent with the development policy of the Union and shall be carried out within the framework of the principles and objectives of its external action. The Union's operations and those of the Member States shall complement and reinforce each other.";\r
-(b) paragraph 2 shall be replaced by the following:\r
-"The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall adopt the measures necessary for the implementation of paragraph 1.";\r
-(c) at the end of the second sentence of the first subparagraph of paragraph 3, the words ", which shall be negotiated and concluded in accordance with Article 300" shall be deleted.\r
-167) The following new Article 188i shall be inserted:\r
-"Article 188i\r
-When the situation in a third country requires urgent financial assistance from the Union, the Council shall adopt the necessary decisions on a proposal from the Commission.".\r
-CIG 1/1/07 REV 1 104\r
-EN\r
-Humanitarian aid\r
-168) The following new Chapter 3 and new Article 188j shall be inserted:\r
-"CHAPTER 3 HUMANITARIAN AID\r
-Article 188j\r
-1. The Union's operations in the field of humanitarian aid shall be conducted within the framework of the principles and objectives of the external action of the Union. Such operations shall be intended to provide ad hoc assistance and relief and protection for people in third countries who are victims of natural or man-made disasters, in order to meet the humanitarian needs resulting from these different situations. The Union's measures and those of the Member States shall complement and reinforce each other.\r
-2. Humanitarian aid operations shall be conducted in compliance with the principles of international law and with the principles of impartiality, neutrality and non-discrimination.\r
-3. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, shall establish the measures defining the framework within which the Union's humanitarian aid operations shall be implemented.\r
-4. The Union may conclude with third countries and competent international organisations any agreement helping to achieve the objectives referred to in paragraph 1 and in Article 10a of the Treaty on European Union.\r
-The first subparagraph shall be without prejudice to Member States' competence to negotiate in international bodies and to conclude agreements.\r
-5. In order to establish a framework for joint contributions from young Europeans to the humanitarian aid operations of the Union, a European Voluntary Humanitarian Aid Corps shall be set up. The European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall determine the rules and procedures for the operation of the Corps.\r
-6. The Commission may take any useful initiative to promote coordination between actions of the Union and those of the Member States, in order to enhance the efficiency and complementarity of Union and national humanitarian aid measures.\r
-7. The Union shall ensure that its humanitarian aid operations are coordinated and consistent with those of international organisations and bodies, in particular those forming part of the United Nations system.".\r
-CIG 1/1/07 REV 1 105\r
-EN\r
-Restrictive measures\r
-169) The following Title IV and Article 188k shall be inserted, replacing Article 301:\r
-"TITLE IV RESTRICTIVE MEASURES\r
-Article 188k\r
-1. Where a decision, adopted in accordance with Chapter 2 of Title V of the Treaty on European Union, provides for the interruption or reduction, in part or completely, of economic and financial relations with one or more third countries, the Council, acting by a qualified majority on a joint proposal from the High Representative of the Union for Foreign Affairs and Security Policy and the Commission, shall adopt the necessary measures. It shall inform the European Parliament thereof.\r
-2. Where a decision adopted in accordance with Chapter 2 of Title V of the Treaty on European Union so provides, the Council may adopt restrictive measures under the procedure referred to in paragraph 1 against natural or legal persons and groups or non-State entities.\r
-3. The acts referred to in this Article shall include necessary provisions on legal safeguards.".\r
-International agreements\r
-170) A Title V "INTERNATIONAL AGREEMENTS" shall be inserted.\r
-171) The following Article 188 shall be inserted:\r
-"Article 188l\r
-1. The Union may conclude an agreement with one or more third countries or international organisations where the Treaties so provide or where the conclusion of an agreement is necessary in order to achieve, within the framework of the Union's policies, one of the objectives referred to in the Treaties, or is provided for in a legally binding Union act or is likely to affect common rules or alter their scope.\r
-2. Agreements concluded by the Union are binding upon the institutions of the Union and on its Member States.".\r
-CIG 1/1/07 REV 1 106\r
-EN\r
-172) An Article 188m shall be inserted, with the wording of Article 310. The word "States" shall be replaced by "third countries".\r
-173) An Article 188n shall be inserted, replacing Article 300:\r
-"Article 188n\r
-1. Without prejudice to the specific provisions laid down in Article 188c, agreements between the Union and third countries or international organisations shall be negotiated and concluded in accordance with the following procedure.\r
-2. The Council shall authorise the opening of negotiations, adopt negotiating directives, authorise the signing of agreements and conclude them.\r
-3. The Commission, or the High Representative of the Union for Foreign Affairs and Security Policy where the agreement envisaged relates exclusively or principally to the common foreign and security policy, shall submit recommendations to the Council, which shall adopt a decision authorising the opening of negotiations and, depending on the subject of the agreement envisaged, nominating the Union negotiator or head of the Union's negotiating team.\r
-4. The Council may address directives to the negotiator and designate a special committee in consultation with which the negotiations must be conducted.\r
-5. The Council, on a proposal by the negotiator, shall adopt a decision authorising the signing of the agreement and, if necessary, its provisional application before entry into force.\r
-6. The Council, on a proposal by the negotiator, shall adopt a decision concluding the agreement.\r
-Except where agreements relate exclusively to the common foreign and security policy, the Council shall adopt the decision concluding the agreement:\r
-(a) after obtaining the consent of the European Parliament in the following cases:\r
-(i) association agreements;\r
-(ii) agreement on Union accession to the European Convention for the Protection of Human Rights and Fundamental Freedoms;\r
-(iii) agreements establishing a specific institutional framework by organising cooperation procedures;\r
-CIG 1/1/07 REV 1 107\r
-EN\r
-(iv) agreements with important budgetary implications for the Union;\r
-(v) agreements covering fields to which either the ordinary legislative procedure applies, or the special legislative procedure where consent by the European Parliament is required.\r
-The European Parliament and the Council may, in an urgent situation, agree upon a time-limit for consent.\r
-(b) after consulting the European Parliament in other cases. The European Parliament shall deliver its opinion within a time-limit which the Council may set depending on the urgency of the matter. In the absence of an opinion within that time-limit, the Council may act.\r
-7. When concluding an agreement, the Council may, by way of derogation from paragraphs 5, 6 and 9, authorise the negotiator to approve on the Union's behalf modifications to the agreement where it provides for them to be adopted by a simplified procedure or by a body set up by the agreement. The Council may attach specific conditions to such authorisation.\r
-8. The Council shall act by a qualified majority throughout the procedure.\r
-However, it shall act unanimously when the agreement covers a field for which unanimity is required for the adoption of a Union act as well as for association agreements and the agreements referred to in Article 188h with the States which are candidates for accession. The Council shall also act unanimously for the agreement on accession of the Union to the European Convention for the Protection of Human Rights and Fundamental Freedoms; the decision concluding this agreement shall enter into force after it has been approved by the Member States in accordance with their respective constitutional requirements.\r
-9. The Council, on a proposal from the Commission or the High Representative of the Union for Foreign Affairs and Security Policy, shall adopt a decision suspending application of an agreement and establishing the positions to be adopted on the Union's behalf in a body set up by an agreement, when that body is called upon to adopt acts having legal effects, with the exception of acts supplementing or amending the institutional framework of the agreement.\r
-10. The European Parliament shall be immediately and fully informed at all stages of the procedure.\r
-11. A Member State, the European Parliament, the Council or the Commission may obtain the opinion of the Court of Justice as to whether an agreement envisaged is compatible with the Treaties. Where the opinion of the Court of Justice is adverse, the agreement envisaged may not enter into force unless it is amended or the Treaties are revised.".\r
-CIG 1/1/07 REV 1 108\r
-EN\r
-174) An Article 188o shall be inserted, with the wording of paragraphs 1 to 3 and 5 of Article 111 and paragraph 1 shall be split into two subparagraphs, the last two sentences becoming the second subparagraph; the Article shall be amended as follows:\r
-(a) paragraph 1, first subparagraph, shall be replaced by the following:\r
-"By way of derogation from Article 188n, the Council, either on a recommendation from the European Central Bank or on a recommendation from the Commission and after consulting the European Central Bank, in an endeavour to reach a consensus consistent with the objective of price stability, may conclude formal agreements on an exchange-rate system for the euro in relation to the currencies of third States. The Council shall act unanimously after consulting the European Parliament and in accordance with the procedure provided for in paragraph 3.".\r
-In the second subparagraph, the words "on a recommendation from the ECB or from the Commission and after consulting the ECB in an endeavour to" shall be replaced by the following: "either on a recommendation from the European Central Bank or on a recommendation from the Commission, and after consulting the European Central Bank, in an endeavour to";\r
-(b) in paragraph 2, the words "non-Community currencies" shall be replaced by "currencies of third States";\r
-(c) in paragraph 3, in the first sentence of the first subparagraph the word "States" shall be replaced by "third States", and the second subparagraph shall be deleted;\r
-(d) paragraph 5 shall be renumbered "4".\r
-The Union's relations with international organisations and third countries and Union delegations\r
-175) The following Title VI and Articles 188p and 188q shall be inserted, with Article 188p replacing Articles 302 to 304:\r
-"TITLE VI THE UNION'S RELATIONS WITH INTERNATIONAL ORGANISATIONS AND THIRD COUNTRIES AND UNION DELEGATIONS\r
-Article 188p\r
-1. The Union shall establish all appropriate forms of cooperation with the organs of the United Nations and its specialised agencies, the Council of Europe, the Organisation for Security and Cooperation in Europe and the Organisation for Economic Cooperation and Development.\r
-The Union shall also maintain such relations as are appropriate with other international organisations.\r
-CIG 1/1/07 REV 1 109\r
-EN\r
-2. The High Representative of the Union for Foreign Affairs and Security Policy and the Commission shall be instructed to implement this Article.\r
-Article 188q\r
-1. Union delegations in third countries and at international organisations shall represent the Union.\r
-2. Union delegations shall be placed under the authority of the High Representative of the Union for Foreign Affairs and Security Policy. They shall act in close cooperation with Member States' diplomatic and consular missions.".\r
-Solidarity clause\r
-176) The following new Title VII and new Article 188r shall be inserted:\r
-"TITLE VII SOLIDARITY CLAUSE\r
-Article 188r\r
-1. The Union and its Member States shall act jointly in a spirit of solidarity if a Member State is the object of a terrorist attack or the victim of a natural or man-made disaster. The Union shall mobilise all the instruments at its disposal, including the military resources made available by the Member States, to:\r
-(a) - prevent the terrorist threat in the territory of the Member States;\r
-- protect democratic institutions and the civilian population from any terrorist attack;\r
-- assist a Member State in its territory, at the request of its political authorities, in the event of a terrorist attack;\r
-(b) assist a Member State in its territory, at the request of its political authorities, in the event of a natural or man-made disaster.\r
-2. Should a Member State be the object of a terrorist attack or the victim of a natural or man-made disaster, the other Member States shall assist it at the request of its political authorities. To that end, the Member States shall coordinate between themselves in the Council.\r
-CIG 1/1/07 REV 1 110\r
-EN\r
-3. The arrangements for the implementation by the Union of the solidarity clause shall be defined by a decision adopted by the Council acting on a joint proposal by the Commission and the High Representative of the Union for Foreign Affairs and Security Policy. The Council shall act in accordance with Article 17(1) of the Treaty on European Union where this decision has defence implications. The European Parliament shall be informed.\r
-For the purposes of this paragraph and without prejudice to Article 207, the Council shall be assisted by the Political and Security Committee with the support of the structures developed in the context of the common security and defence policy and by the Committee referred to in Article 65; the two committees shall, if necessary, submit joint opinions.\r
-4. The European Council shall regularly assess the threats facing the Union in order to enable the Union and its Member States to take effective action.".\r
-Institutional and budgetary provisions\r
-177) Part Five shall be renumbered "Part Six" and its heading shall be replaced by "INSTITUTIONAL AND BUDGETARY PROVISIONS".\r
-European Parliament\r
-178) Article 189 shall be repealed.\r
-179) Article 190 shall be amended as follows:\r
-(a) paragraphs 1, 2 and 3 shall be deleted and paragraphs 4 and 5 shall be renumbered 1 and 2 respectively;\r
-(b) paragraph 4, renumbered 1, shall be amended as follows:\r
-(i) in the first subparagraph, the words "for elections by direct universal suffrage" shall be replaced by the following: "to lay down the provisions necessary for the election of its members by direct universal suffrage";\r
-CIG 1/1/07 REV 1 111\r
-EN\r
-(ii) the second subparagraph shall be replaced by the following:\r
-"The Council, acting unanimously in accordance with a special legislative procedure and after obtaining the consent of the European Parliament, which shall act by a majority of its component members, shall lay down the necessary provisions. These provisions shall enter into force following their approval by the Member States in accordance with their respective constitutional requirements.";\r
-(c) in paragraph 5, renumbered 2, the words ", acting by means of regulations on its own initiative in accordance with a special legislative procedure" shall be inserted after "The European Parliament".\r
-180) In Article 191, the first paragraph shall be deleted; in the second paragraph, the words "acting in accordance" shall be replaced by "acting by means of regulations in accordance" and the words "referred to in Article 8a(4) of the Treaty on European Union" shall be inserted after "at European level".\r
-181) In Article 192, the first paragraph shall be deleted; in the second paragraph, the words "of its Members" shall be replaced by "of its component members" and the following sentence shall be added at the end of the paragraph: "If the Commission does not submit a proposal, it shall inform the European Parliament of the reasons".\r
-182) Article 193 shall be amended as follows:\r
-(a) in the first paragraph, the words "of its Members" shall be replaced by "of its component Members";\r
-(b) the third paragraph shall be replaced by the following:\r
-"The detailed provisions governing the exercise of the right of inquiry shall be determined by the European Parliament, acting by means of regulations on its own initiative in accordance with a special legislative procedure, after obtaining the consent of the Council and the Commission.".\r
-183) Article 195 shall be amended as follows:\r
-(a) in the first subparagraph of paragraph 1, the words at the beginning "The European Parliament shall appoint an Ombudsman, empowered to receive complaints" shall be replaced by "A European Ombudsman, elected by the European Parliament, shall be empowered to receive complaints"; in the last part of the sentence, the words "and the Court of First Instance acting in their judicial role" shall be replaced by: "acting in its judicial role" and the following final sentence shall be added: "He or she shall examine such complaints and report on them.";\r
-CIG 1/1/07 REV 1 112\r
-EN\r
-(b) in the first subparagraph of paragraph 2, the word "appointed" shall be replaced by "elected";\r
-(c) in paragraph 3, the words "from any body" shall be replaced by "from any institution, body, office or agency";\r
-(d) in paragraph 4, the words "acting by means of regulations on its own initiative in accordance with a special legislative procedure" shall be inserted after "The European Parliament \85".\r
-184) In the second paragraph of Article 196, the words "in extraordinary session" shall be replaced by "in extraordinary part-session" and the words "of its Members" shall be replaced by "of its component members".\r
-185) Article 197 shall be amended as follows:\r
-(a) the first paragraph shall be deleted;\r
-(b) the second paragraph shall be replaced by the following: "The Commission may attend all the meetings and shall, at its request, be heard.";\r
-(c) the fourth paragraph shall be replaced by the following: "The European Council and the Council shall be heard by the European Parliament in accordance with the conditions laid down in the Rules of Procedure of the European Council and those of the Council.".\r
-186) In the first paragraph of Article 198, the word "absolute" shall be deleted.\r
-187) In the second paragraph of Article 199, the words "... manner laid down in its Rules of Procedure" shall be replaced by "manner laid down in the Treaties and in its Rules of Procedure".\r
-188) In Article 201, the second paragraph shall be replaced by the following:\r
-"If the motion of censure is carried by a two-thirds majority of the votes cast, representing a majority of the component members of the European Parliament, the members of the Commission shall resign as a body and the High Representative of the Union for Foreign Affairs and Security Policy shall resign from duties that he or she carries out in the Commission. They shall remain in office and continue to deal with current business until they are replaced in accordance with Article 9d of the Treaty on European Union. In this case, the term of office of the members of the Commission appointed to replace them shall expire on the date on which the term of office of the members of the Commission obliged to resign as a body would have expired.".\r
-CIG 1/1/07 REV 1 113\r
-EN\r
-European Council\r
-189) The following new Section 1a and new Articles 201a and 201b shall be inserted:\r
-"SECTION 1a THE EUROPEAN COUNCIL\r
-Article 201a\r
-1. Where a vote is taken, any member of the European Council may also act on behalf of not more than one other member.\r
-Paragraph 4 of Article 9c of the Treaty on European Union and paragraph 2 of Article 205 of this Treaty shall apply to the European Council when it is acting by a qualified majority. Where the European Council decides by vote, its President and the President of the Commission shall not take part in the vote.\r
-Abstentions by members present in person or represented shall not prevent the adoption by the European Council of acts which require unanimity.\r
-2. The President of the European Parliament may be invited to be heard by the European Council.\r
-3. The European Council shall act by a simple majority for procedural questions and for the adoption of its Rules of Procedure.\r
-4. The European Council shall be assisted by the General Secretariat of the Council.\r
-Article 201b\r
-The European Council shall adopt by a qualified majority:\r
-(a) a decision establishing the list of Council configurations other than those referred to in second and third subparagraphs of Article 9c(6) of the Treaty on European Union;\r
-(b) a decision on the Presidency of Council configurations, other than that of Foreign Affairs, in accordance with Article 9c(9) of the Treaty on European Union.".\r
-CIG 1/1/07 REV 1 114\r
-EN\r
-Council\r
-190) Articles 202 and 203 shall be repealed.\r
-191) Article 205 shall be amended as follows:\r
-(a) paragraphs 1 and 2 shall be replaced by the following:\r
-"1. Where it is required to act by a simple majority, the Council shall act by a majority of its component members.\r
-2. By way of derogation from paragraph 4 of Article 9c of the Treaty on European Union, as from 1 November 2014 and subject to the provisions laid down in the Protocol on transitional provisions, where the Council does not act on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, the qualified majority shall be defined as at least 72 % of the members of the Council, representing Member States comprising at least 65 % of the population of the Union.\r
-3. As from 1 November 2014 and subject to the provisions laid down in the Protocol on transitional provisions, in cases where not all the members of the Council participate in voting, a qualified majority shall be defined as follows:\r
-(a) A qualified majority shall be defined as at least 55 % of the members of the Council representing the participating Member States, comprising at least 65 % of the population of these States.\r
-A blocking minority must include at least the minimum number of Council members representing more than 35 % of the population of the participating Member States, plus one member, failing which the qualified majority shall be deemed attained;\r
-(b) By way of derogation from point (a), where the Council does not act on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, the qualified majority shall be defined as at least 72 % of the members of the Council representing the participating Member States, comprising at least 65 % of the population of these States.".\r
-(b) paragraph 4 shall be deleted and paragraph 3 shall be renumbered 4.\r
-CIG 1/1/07 REV 1 115\r
-EN\r
-192) Article 207 shall be replaced by the following:\r
-"Article 207\r
-1. A committee consisting of the Permanent Representatives of the Governments of the Member States shall be responsible for preparing the work of the Council and for carrying out the tasks assigned to it by the latter. The Committee may adopt procedural decisions in cases provided for in the Council's Rules of Procedure.\r
-2. The Council shall be assisted by a General Secretariat, under the responsibility of a Secretary-General appointed by the Council.\r
-The Council shall decide on the organisation of the General Secretariat by a simple majority.\r
-3. The Council shall act by a simple majority regarding procedural matters and for the adoption of its Rules of Procedure.".\r
-193) In Article 208, the following sentence shall be added at the end of the Article: "If the Commission does not submit a proposal, it shall inform the Council of the reasons.".\r
-194) In Article 209, the words "receiving an opinion from" shall be replaced by "consulting".\r
-195) Article 210 shall be replaced by the following:\r
-"The Council shall determine the salaries, allowances and pensions of the President of the European Council, the President of the Commission, the High Representative of the Union for Foreign Affairs and Security Policy, the members of the Commission, the Presidents, members and Registrars of the Court of Justice of the European Union, and the Secretary-General of the Council. It shall also determine any payment to be made instead of remuneration.".\r
-CIG 1/1/07 REV 1 116\r
-EN\r
-Commission\r
-196) Article 211 shall be replaced by the following:\r
-"In accordance with Article 9d(5) of the Treaty on European Union, the members of the Commission shall be chosen on the basis of a system of rotation established unanimously by the European Council and on the basis of the following principles:\r
-(a) Member States shall be treated on a strictly equal footing as regards determination of the sequence of, and the time spent by, their nationals as members of the Commission; consequently, the difference between the total number of terms of office held by nationals of any given pair of Member States may never be more than one;\r
-(b) subject to point (a), each successive Commission shall be so composed as to reflect satisfactorily the demographic and geographical range of all the Member States.".\r
-197) Article 212 shall become a new paragraph 2 of Article 218.\r
-198) In Article 213, paragraph 1 shall be deleted and paragraph 2 shall not be numbered; its first two paragraphs shall be merged and shall read as follows:\r
-"The Members of the Commission shall refrain from any action incompatible with their duties. Member States shall respect their independence and shall not seek to influence them in the performance of their tasks.".\r
-199) Article 214 shall be repealed.\r
-200) Article 215 shall be amended as follows:\r
-(a) the second paragraph shall be replaced by the following two paragraphs:\r
-"A vacancy caused by resignation, compulsory retirement or death shall be filled for the remainder of the member's term of office by a new member of the same nationality appointed by the Council, by common accord with the President of the Commission, after consulting the European Parliament and in accordance with the criteria set out in the second subparagraph of Article 9d(3) of the Treaty on European Union.\r
-CIG 1/1/07 REV 1 117\r
-EN\r
-The Council may, acting unanimously on a proposal from the President of the Commission, decide that such a vacancy need not be filled, in particular when the remainder of the member's term of office is short.";\r
-(b) the following new fifth paragraph shall be inserted:\r
-"In the event of resignation, compulsory retirement or death, the High Representative of the Union for Foreign Affairs and Security Policy shall be replaced, for the remainder of his or her term of office, in accordance with Article 9e(1) of the Treaty on European Union";\r
-(c) the last paragraph shall be replaced by the following:\r
-"In the case of the resignation of all the members of the Commission, they shall remain in office and continue to deal with current business until they have been replaced, for the remainder of their term of office, in accordance with Article 9d of the Treaty on European Union.".\r
-201) In Article 217, paragraphs 1, 3 and 4 shall be deleted and paragraph 2 shall not be numbered. Its first sentence shall be replaced by the following: "Without prejudice to Article 9e(4) of the Treaty on European Union, the responsibilities incumbent upon the Commission shall be structured and allocated among its members by its President, in accordance with Article 9d(6) of that Treaty".\r
-202) In Article 218, paragraph 1 shall be deleted; paragraph 2 shall be renumbered 1 and the words "in accordance with the provisions of this Treaty" shall be deleted. A paragraph 2 shall be inserted, with the wording of Article 212.\r
-203) In Article 219, first paragraph, the words "of the number of Members provided for in Article 213" shall be replaced by "of its members" and the second paragraph shall be replaced by "Its Rules of Procedure shall determine the quorum.".\r
-CIG 1/1/07 REV 1 118\r
-EN\r
-Court of Justice\r
-204) In the heading of Section 4, the words "OF THE EUROPEAN UNION" shall be added.\r
-205) Article 220 shall be repealed.\r
-206) In Article 221, the first paragraph shall be deleted.\r
-207) In Article 223, the words ", after consultation of the panel provided for in Article 224a" shall be added at the end of the first paragraph.\r
-208) In Article 224, first paragraph, the first sentence shall be deleted and the words "of the Court" shall be inserted after "The number of Judges". In the second paragraph, the words ", after consultation of the panel provided for in Article 224a" shall be inserted at the end of the second sentence.\r
-209) The following new Article 224a shall be inserted:\r
-"Article 224a\r
-A panel shall be set up in order to give an opinion on candidates' suitability to perform the duties of Judge and Advocate-General of the Court of Justice and the General Court before the governments of the Member States make the appointments referred to in Articles 223 and 224.\r
-The panel shall comprise seven persons chosen from among former members of the Court of Justice and the General Court, members of national supreme courts and lawyers of recognised competence, one of whom shall be proposed by the European Parliament. The Council shall adopt a decision establishing the panel's operating rules and a decision appointing its members. It shall act on the initiative of the President of the Court of Justice.".\r
-210) In Article 225, paragraph 1, first subparagraph, first sentence, the words "assigned to a judicial panel and those" shall be replaced by "assigned to a specialised court set up under Article 225a and those" and in paragraph 2, first subparagraph, the words "set up under Article 225a" shall be deleted.\r
-CIG 1/1/07 REV 1 119\r
-EN\r
-211) Article 225a shall be amended as follows:\r
-(a) the first paragraph shall be replaced by the following text: "The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may establish specialised courts attached to the General Court to hear and determine at first instance certain classes of action or proceeding brought in specific areas. The European Parliament and the Council shall act by means of regulations either on a proposal from the Commission after consultation of the Court of Justice or at the request of the Court of Justice after consultation of the Commission.";\r
-(b) in the second paragraph, the words "the decision" shall be replaced by "the regulation" and the words "the panel" shall be replaced by "the court";\r
-(c) in the third paragraph, the words "the panel" shall be replaced by "the specialised court";\r
-(d) in the sixth paragraph, the words "the decision" shall be replaced by "the regulation" and the following sentence shall be added at the end: "Title I of the Statute and Article 64 thereof shall in any case apply to the specialised courts.".\r
-212) Article 228 shall be amended as follows:\r
-(a) in paragraph 2, the first and second subparagraphs shall be replaced by the following wording, which shall become the first subparagraph:\r
-"If the Commission considers that the Member State concerned has not taken the necessary measures to comply with judgment of the Court, it may bring the case before the Court of Justice of the European Union after giving that State the opportunity to submit its observations. It shall specify the amount of the lump sum or penalty payment to be paid by the Member State concerned which it considers appropriate in the circumstances."\r
-In the third subparagraph, which shall become the second, the words "of Justice" shall be deleted after "Court";\r
-(b) the following new paragraph 3 shall be added:\r
-"3. When the Commission brings a case before the Court of Justice of the European Union pursuant to Article 226 on the grounds that the Member State concerned has failed to fulfil its obligation to notify measures transposing a directive adopted under a legislative procedure, it may, when it deems appropriate, specify the amount of the lump sum or penalty payment to be paid by the Member State concerned which it considers appropriate in the circumstances.\r
-If the Court finds that there is an infringement it may impose a lump sum or penalty payment on the Member State concerned not exceeding the amount specified by the Commission. The payment obligation shall take effect on the date set by the Court in its judgment."\r
-CIG 1/1/07 REV 1 120\r
-EN\r
-213) In Article 229a, the words "the Council, acting unanimously on a proposal from the Commission and after consulting the European Parliament," shall be replaced by "the Council, acting unanimously in accordance with a special legislative procedure and after consulting the European Parliament," and the words "Community industrial property rights" shall be replaced by "European intellectual property rights". The last sentence shall be replaced by the following: "These provisions shall enter into force after their approval by the Member States in accordance with their respective constitutional requirements.".\r
-214) Article 230 shall be amended as follows:\r
-(a) in the first paragraph, the words "acts adopted jointly by the European Parliament and the Council," shall be replaced by "legislative acts," the words "and of the European Council" shall be inserted after "European Parliament" and the following sentence shall be added at the end: "It shall also review the legality of acts of bodies, offices or agencies of the Union intended to produce legal effects vis-à-vis third parties.";\r
-(b) in the third paragraph, the words "by the Court of Auditors and by the ECB for the purpose of protecting their prerogatives" shall be replaced by "by the Court of Auditors, by the European Central Bank and by the Committee of the Regions for the purpose of protecting their prerogatives";\r
-(c) the fourth paragraph shall be replaced by the following:\r
-"Any natural or legal person may, under the conditions laid down in the first and second paragraphs, institute proceedings against an act addressed to that person or which is of direct and individual concern to him or her, and against a regulatory act which is of direct concern to him or her and does not entail implementing measures.";\r
-(d) the following new fifth paragraph shall be inserted, and the present fifth paragraph shall become the sixth paragraph:\r
-"Acts setting up bodies, offices and agencies of the Union may lay down specific conditions and arrangements concerning actions brought by natural or legal persons against acts of these bodies, offices or agencies intended to produce legal effects in relation to them.".\r
-CIG 1/1/07 REV 1 121\r
-EN\r
-215) In Article 231, the second paragraph shall be replaced by the following: "However, the Court shall, if it considers this necessary, state which of the effects of the act which it has declared void shall be considered as definitive.".\r
-216) Article 232 shall be amended as follows:\r
-(a) in the first paragraph, the words "the European Council," shall be inserted after "European Parliament", the words "or the European Central Bank" shall be inserted after "Commission", the word "or" before "the Commission" shall be replaced by a comma and the following sentence shall be added at the end of the paragraph: "This Article shall apply, under the same conditions, to bodies, offices and agencies of the Union which fail to act.";\r
-(b) in the third paragraph, the words ", body, office or agency" shall be inserted after "an institution";\r
-(c) the fourth paragraph shall be deleted.\r
-217) In Article 233, first paragraph, the words "or institutions" shall be deleted; the third paragraph shall be deleted.\r
-218) In Article 234, first paragraph, point (b), the words "and of the ECB" shall be deleted and point (c) shall be deleted. The following paragraph shall be added at the end of the Article: "If such a question is raised in a case pending before a court or tribunal of a Member State with regard to a person in custody, the Court of Justice of the European Union shall act with the minimum of delay.".\r
-219) In Article 235, the reference to the second paragraph of Article 288 shall be replaced by a reference to the second and third paragraphs of Article 288.\r
-220) The following new Article 235a shall be inserted:\r
-"Article 235a\r
-The Court of Justice shall have jurisdiction to decide on the legality of an act adopted by the European Council or by the Council pursuant to Article 7 of the Treaty on European Union solely at the request of the Member State concerned by a determination of the European Council or of the Council and in respect solely of the procedural stipulations contained in that Article.\r
-Such a request must be made within one month from the date of such determination. The Court shall rule within one month from the date of the request.".\r
-CIG 1/1/07 REV 1 122\r
-EN\r
-221) In Article 236, the words "in the Staff Regulations or the Conditions of employment" shall be replaced by "in the Staff Regulations of Officials and the Conditions of Employment of other servants of the Union".\r
-222) In Article 237(d), at the beginning of the second sentence, the word "Governing" shall be inserted before "Council" and the words "of Justice" shall be deleted at the end, after the word "Court".\r
-223) The following two new Articles 240a and 240b shall be inserted:\r
-"Article 240a\r
-The Court of Justice of the European Union shall not have jurisdiction with respect to the provisions relating to the common foreign and security policy nor with respect to acts adopted on the basis of those provisions.\r
-However, the Court shall have jurisdiction to monitor compliance with Article 25 of the Treaty on European Union and to rule on proceedings, brought in accordance with the conditions laid down in the fourth paragraph of Article 230 of this Treaty, reviewing the legality of decisions providing for restrictive measures against natural or legal persons adopted by the Council on the basis of Chapter 2 of Title V of the Treaty on European Union.\r
-Article 240b\r
-In exercising its powers regarding the provisions of Sections 4 and 5 of Chapter IV of Title III relating to the area of freedom, security and justice, the Court of Justice of the European Union shall have no jurisdiction to review the validity or proportionality of operations carried out by the police or other law-enforcement services of a Member State or the exercise of the responsibilities incumbent upon Member States with regard to the maintenance of law and order and the safeguarding of internal security.".\r
-224) Article 241 shall be replaced by the following:\r
-"Article 241\r
-Notwithstanding the expiry of the period laid down in Article 230, fifth paragraph, any party may, in proceedings in which an act of general application adopted by an institution, body, office or agency of the Union is at issue, plead the grounds specified in Article 230, second paragraph, in order to invoke before the Court of Justice of the European Union the inapplicability of that act.".\r
-CIG 1/1/07 REV 1 123\r
-EN\r
-225) In Article 242, second sentence, the words "of Justice" after "Court" shall be deleted.\r
-226) In Article 245, the second paragraph shall be replaced by the following:\r
-"The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, may amend the provisions of the Statute, with the exception of Title I and Article 64. The European Parliament and the Council shall act either at the request of the Court of Justice and after consultation of the Commission, or on a proposal from the Commission and after consultation of the Court of Justice.".\r
-European Central Bank\r
-227) The following Section 4a and Article 245a shall be inserted:\r
-"SECTION 4a\r
-THE EUROPEAN CENTRAL BANK\r
-Article 245a\r
-1. The European Central Bank, together with the national central banks, shall constitute the European System of Central Banks. The European Central Bank, together with the national central banks of the Member States whose currency is the euro, which constitute the Eurosystem, shall conduct the monetary policy of the Union.\r
-2. The European System of Central Banks shall be governed by the decision-making bodies of the European Central Bank. The primary objective of the European System of Central Banks shall be to maintain price stability. Without prejudice to that objective, it shall support the general economic policies in the Union in order to contribute to the achievement of the latter's objectives.\r
-3. The European Central Bank shall have legal personality. It alone may authorise the issue of the euro. It shall be independent in the exercise of its powers and in the management of its finances. Union institutions, bodies, offices and agencies and the governments of the Member States shall respect that independence.\r
-CIG 1/1/07 REV 1 124\r
-EN\r
-4. The European Central Bank shall adopt such measures as are necessary to carry out its tasks in accordance with Articles 105 to 111 and Article 115a, and with the conditions laid down in the Statute of the ESCB and of the ECB. In accordance with these same Articles, those Member States whose currency is not the euro, and their central banks, shall retain their powers in monetary matters.\r
-5. Within the areas falling within its responsibilities, the European Central Bank shall be consulted on all proposed Union acts, and all proposals for regulation at national level, and may give an opinion.".\r
-228) An Article 245b shall be inserted, with the wording of Article 112; it shall be amended as follows:\r
-(a) in paragraph 1, the words "of the Member States whose currency is the euro" shall be inserted at the end after "national central banks";\r
-(b) in paragraph 2 the numbering (a) and (b) shall be deleted, the present point (a) shall become the first subparagraph and the three subparagraphs of the present point (b) shall respectively become the second, third and fourth subparagraphs of the paragraph; in the second subparagraph, the words "from among persons of recognised standing and professional experience in monetary or banking matters by common accord of the governments of the Member States at the level of Heads of State or Government," shall be replaced by "by the European Council, acting by a qualified majority, from among persons of recognised standing and professional experience in monetary or banking matters,".\r
-229) An Article 245c shall be inserted, with the wording of Article 113.\r
-Court of Auditors\r
-230) In Article 246, the word "Union's" shall be inserted before "audit" and the following new paragraph shall be added as a second paragraph:\r
-It shall consist of one national of each Member State. Its members shall be completely independent in the performance of their duties, in the Union's general interest.".\r
-231) Article 247 shall be amended as follows:\r
-(a) paragraph 1 and the first subparagraph of paragraph 4 shall be deleted. Paragraphs 2 to 9 shall be renumbered 1 to 8 respectively;\r
-(b) in paragraph 2, renumbered 1, the word "countries" shall be replaced by "States";\r
-(c) in paragraph 4, renumbered 3, the word "they" shall be replaced by "the Members of the Court of Auditors".\r
-CIG 1/1/07 REV 1 125\r
-EN\r
-232) In Article 248, the word "bodies" shall be replaced by "bodies, offices or agencies", singular or plural as the case may be.\r
-Legal acts of the Union\r
-233) The heading of Chapter 2 shall be replaced by the following "LEGAL ACTS OF THE UNION, ADOPTION PROCEDURES AND OTHER PROVISIONS".\r
-234) A Section 1 shall be inserted above Article 249:\r
-"SECTION 1 THE LEGAL ACTS OF THE UNION".\r
-235) Article 249 shall be amended as follows:\r
-(a) the first paragraph shall be replaced by the following:\r
-"To exercise the Union's competences, the institutions shall adopt regulations, directives, recommendations and opinions.";\r
-(b) the fourth paragraph shall be replaced by the following:\r
-"A decision shall be binding in its entirety. A decision which specifies those to whom it is addressed shall be binding only on them.".\r
-236) The following new Articles 249a to 249d shall be inserted:\r
-"Article 249a\r
-1. The ordinary legislative procedure shall consist in the joint adoption by the European Parliament and the Council of a regulation, directive or decision on a proposal from the Commission. This procedure is defined in Article 251.\r
-2. In the specific cases provided for by the Treaties, the adoption of a regulation, directive or decision by the European Parliament with the participation of the Council, or by the latter with the participation of the European Parliament, shall constitute a special legislative procedure.\r
-CIG 1/1/07 REV 1 126\r
-EN\r
-3. Legal acts adopted by legislative procedure shall constitute legislative acts.\r
-4. In the specific cases provided for by the Treaties, legislative acts may be adopted on the initiative of a group of Member States or of the European Parliament, on a recommendation from the European Central Bank or at the request of the Court of Justice or the European Investment Bank.\r
-Article 249b\r
-1. A legislative act may delegate to the Commission the power to adopt non-legislative acts of general application to supplement or amend certain non-essential elements of the legislative act.\r
-The objectives, content, scope and duration of the delegation of power shall be explicitly defined in the legislative acts. The essential elements of an area shall be reserved for the legislative act and accordingly shall not be the subject of a delegation of power.\r
-2. Legislative acts shall explicitly lay down the conditions to which the delegation is subject; these conditions may be as follows:\r
-(a) the European Parliament or the Council may decide to revoke the delegation;\r
-(b) the delegated act may enter into force only if no objection has been expressed by the European Parliament or the Council within a period set by the legislative act.\r
-For the purposes of (a) and (b), the European Parliament shall act by a majority of its component members, and the Council by a qualified majority.\r
-3. The adjective "delegated" shall be inserted in the title of delegated acts.\r
-Article 249c\r
-1. Member States shall adopt all measures of national law necessary to implement legally binding Union acts.\r
-2. Where uniform conditions for implementing legally binding Union acts are needed, those acts shall confer implementing powers on the Commission, or, in duly justified specific cases and in the cases provided for in Articles 11 and 13 of the Treaty on European Union, on the Council.\r
-CIG 1/1/07 REV 1 127\r
-EN\r
-3. For the purposes of paragraph 2, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall lay down in advance the rules and general principles concerning mechanisms for control by Member States of the Commission's exercise of implementing powers.\r
-4. The word "implementing" shall be inserted in the title of implementing acts.\r
-Article 249d\r
-The Council shall adopt recommendations. It shall act on a proposal from the Commission in all cases where the Treaties provide that it shall adopt acts on a proposal from the Commission. It shall act unanimously in those areas in which unanimity is required for the adoption of a Union act. The Commission, and the European Central Bank in the specific cases provided for in the Treaties, shall adopt recommendations.".\r
-Procedures for the adoption of acts and other provisions\r
-237) A Section 2 "PROCEDURES FOR THE ADOPTION OF ACTS AND OTHER PROVISIONS" shall be inserted before Article 250.\r
-238) In Article 250, paragraph 1 shall be replaced by the following:\r
-"1. Where, pursuant to the Treaties, the Council acts on a proposal from the Commission, the Council may amend that proposal only by acting unanimously, except in the cases referred to in Articles 270a and 268, Article 251(10) and (13), Article 272 and the second paragraph of Article 273.".\r
-239) Article 251 shall be amended as follows:\r
-(a) in paragraph 1 the words "to this Article" shall be replaced by "to the ordinary legislative procedure";\r
-(b) as from the second subparagraph of paragraph 2, the wording of the Article shall be replaced by the following:\r
-"First reading\r
-3. The European Parliament shall adopt its position at first reading and communicate it to the Council.\r
-CIG 1/1/07 REV 1 128\r
-EN\r
-4. If the Council approves the European Parliament's position, the act concerned shall be adopted in the wording which corresponds to the position of the European Parliament.\r
-5. If the Council does not approve the European Parliament's position, it shall adopt its position at first reading and communicate it to the European Parliament.\r
-6. The Council shall inform the European Parliament fully of the reasons which led it to adopt its position at first reading. The Commission shall inform the European Parliament fully of its position.\r
-Second reading\r
-7. If, within three months of such communication, the European Parliament:\r
-(a) approves the Council's position at first reading or has not taken a decision, the act concerned shall be deemed to have been adopted in the wording which corresponds to the position of the Council;\r
-(b) rejects, by a majority of its component members, the Council's position at first reading, the proposed act shall be deemed not to have been adopted;\r
-(c) proposes, by a majority of its component members, amendments to the Council's position at first reading, the text thus amended shall be forwarded to the Council and to the Commission, which shall deliver an opinion on those amendments.\r
-8. If, within three months of receiving the European Parliament's amendments, the Council, acting by a qualified majority:\r
-(a) approves all those amendments, the act in question shall be deemed to have been adopted;\r
-(b) does not approve all the amendments, the President of the Council, in agreement with the President of the European Parliament, shall within six weeks convene a meeting of the Conciliation Committee.\r
-9. The Council shall act unanimously on the amendments on which the Commission has delivered a negative opinion.\r
-Conciliation\r
-10. The Conciliation Committee, which shall be composed of the members of the Council or their representatives and an equal number of members representing the European Parliament, shall have the task of reaching agreement on a joint text, by a qualified majority of the members of the Council or their representatives and by a majority of the members representing the European Parliament within six weeks of its being convened, on the basis of the positions of the European Parliament and the Council at second reading.\r
-CIG 1/1/07 REV 1 129\r
-EN\r
-11. The Commission shall take part in the Conciliation Committee's proceedings and shall take all necessary initiatives with a view to reconciling the positions of the European Parliament and the Council.\r
-12. If, within six weeks of its being convened, the Conciliation Committee does not approve the joint text, the proposed act shall be deemed not to have been adopted.\r
-Third reading\r
-13. If, within that period, the Conciliation Committee approves a joint text, the European Parliament, acting by a majority of the votes cast, and the Council, acting by a qualified majority, shall each have a period of six weeks from that approval in which to adopt the act in question in accordance with the joint text. If they fail to do so, the proposed act shall be deemed not to have been adopted.\r
-14. The periods of three months and six weeks referred to in this Article shall be extended by a maximum of one month and two weeks respectively at the initiative of the European Parliament or the Council.\r
-Special provisions\r
-15. Where, in the cases provided for in the Treaties, a legislative act is submitted to the ordinary legislative procedure on the initiative of a group of Member States, on a recommendation by the European Central Bank, or at the request of the Court of Justice, paragraph 2, the second sentence of paragraph 6, and paragraph 9 shall not apply.\r
-In such cases, the European Parliament and the Council shall communicate the proposed act to the Commission with their positions at first and second readings. The European Parliament or the Council may request the opinion of the Commission throughout the procedure, which the Commission may also deliver on its own initiative. It may also, if it deems it necessary, take part in the Conciliation Committee in accordance with paragraph 11.".\r
-240) Article 252 shall be replaced by the following:\r
-"The European Parliament, the Council and the Commission shall consult each other and by common agreement make arrangements for their cooperation. To that end, they may, in compliance with the Treaties, conclude interinstitutional agreements which may be of a binding nature.".\r
-CIG 1/1/07 REV 1 130\r
-EN\r
-241) Article 253 shall be replaced by the following:\r
-"Where the Treaties do not specify the type of act to be adopted, the institutions shall select it on a case-by-case basis, in compliance with the applicable procedures and with the principle of proportionality.\r
-Legal acts shall state the reasons on which they are based and shall refer to any proposals, initiatives, recommendations, requests or opinions required by the Treaties.\r
-When considering draft legislative acts, the European Parliament and the Council shall refrain from adopting acts not provided for by the relevant legislative procedure in the area in question.".\r
-242) Article 254 shall be replaced by the following:\r
-"1. Legislative acts adopted under the ordinary legislative procedure shall be signed by the President of the European Parliament and by the President of the Council.\r
-Legislative acts adopted under a special legislative procedure shall be signed by the President of the institution which adopted them.\r
-Legislative acts shall be published in the Official Journal of the European Union. They shall enter into force on the date specified in them or, in the absence thereof, on the twentieth day following that of their publication.\r
-2. Non-legislative acts adopted in the form of regulations, directives or decisions, when the latter do not specify to whom they are addressed, shall be signed by the President of the institution which adopted them.\r
-Regulations and directives which are addressed to all Member States, as well as decisions which do not specify to whom they are addressed, shall be published in the Official Journal of the European Union. They shall enter into force on the date specified in them or, in the absence thereof, on the twentieth day following that of their publication.\r
-Other directives, and decisions which specify to whom they are addressed, shall be notified to those to whom they are addressed and shall take effect upon such notification.".\r
-243) The following new Article 254a shall be inserted:\r
-"Article 254a\r
-1. In carrying out their missions, the institutions, bodies, offices and agencies of the Union shall have the support of an open, efficient and independent European administration.\r
-CIG 1/1/07 REV 1 131\r
-EN\r
-2. In compliance with the Staff Regulations and the Conditions of Employment adopted on the basis of Article 283, the European Parliament and the Council, acting by means of regulations in accordance with the ordinary legislative procedure, shall establish provisions to that end.".\r
-244) Article 255 shall become Article 15; it shall be amended as set out above in point 28.\r
-245) In Article 256, first paragraph, the words "Decisions of the Council or of the Commission which impose" shall be replaced by "Acts of the Council, the Commission or the European Central Bank which impose".\r
-Advisory bodies\r
-246) The following new Chapter 3 and Article shall be inserted; Chapters 3 and 4 shall become Section 1 and Section 2 respectively and Chapter 5 shall be renumbered 4:\r
-"CHAPTER 3 THE UNION'S ADVISORY BODIES\r
-Article 256a\r
-1. The European Parliament, the Council and the Commission shall be assisted by a Committee of the Regions and an Economic and Social Committee, exercising advisory functions.\r
-2. The Committee of the Regions shall consist of representatives of regional and local bodies who either hold a regional or local authority electoral mandate or are politically accountable to an elected assembly.\r
-3. The Economic and Social Committee shall consist of representatives of organisations of employers, of the employed, and of other parties representative of civil society, notably in socio-economic, civic, professional and cultural areas.\r
-4. The members of the Committee of the Regions and the Economic and Social Committee shall not be bound by any mandatory instructions. They shall be completely independent in the performance of their duties, in the Union's general interest.\r
-5. The rules referred to in paragraphs 2 and 3 governing the nature of the composition of the Committees shall be reviewed at regular intervals by the Council to take account of economic, social and demographic developments within the Union. The Council, on a proposal from the Commission, shall adopt decisions to that end.".\r
-CIG 1/1/07 REV 1 132\r
-EN\r
-Economic and Social Committee\r
-247) Articles 257 and 261 shall be repealed.\r
-248) In Article 258, the second and third paragraphs shall be replaced by the following paragraph:\r
-"The Council, acting unanimously on a proposal from the Commission, shall adopt a decision determining the Committee's composition.".\r
-249) Article 259 shall be amended as follows:\r
-(a) in paragraph 1, the first sentence shall be replaced by the following sentence: "The members of the Committee shall be appointed for five years.";\r
-(b) paragraph 2 shall be replaced by the following:\r
-"2. The Council shall act after consulting the Commission. It may obtain the opinion of European bodies which are representative of the various economic and social sectors and of civil society to which the Union's activities are of concern.".\r
-250) In Article 260, in the first paragraph, the words "two years" shall be replaced by "two and a half years" and in the third paragraph, the words "of the European Parliament," shall be inserted before "of the Council".\r
-251) Article 262 shall be amended as follows:\r
-(a) a reference to the European Parliament shall be inserted before the reference to the Council in the first, second and third paragraphs;\r
-(b) in the first paragraph, the word "must" shall be replaced by "shall";\r
-(c) in the third paragraph, the words "and that of the specialised section" shall be deleted.\r
-(d) the fourth paragraph shall be deleted.\r
-CIG 1/1/07 REV 1 133\r
-EN\r
-Committee of the Regions\r
-252) Article 263 shall be amended as follows:\r
-(a) the first paragraph shall be deleted;\r
-(b) the third paragraph, which shall become the second, shall be replaced by the following:\r
-"The Council, acting unanimously on a proposal from the Commission, shall adopt a decision determining the Committee's composition.";\r
-(c) in the fourth paragraph, which shall become the third, in the first sentence, the words "on proposals from the respective Member States" shall be deleted and the figure "four" shall be replaced by "five"; in the fourth sentence, the reference to "the first paragraph" shall be replaced by a reference to "Article 256a(2),";\r
-(d) the last paragraph shall be deleted.\r
-253) In Article 264, first paragraph, the words "two years" shall be replaced by "two and a half years" and in the third paragraph, the words "of the European Parliament," shall be inserted before "of the Council".\r
-254) Article 265 shall be amended as follows:\r
-(a) in the first paragraph, the word "two" shall be deleted;\r
-(b) the fourth paragraph shall be deleted;\r
-(c) a reference to the European Parliament shall be inserted before the reference to the Council in the first, second, third and last paragraphs;\r
-European Investment Bank\r
-255) In Article 266, third paragraph, the words "at the request of the Commission" shall be replaced by "on a proposal from the Commission" and the words "in accordance with a special legislative procedure" shall be inserted after "unanimously" and the reference to Articles 4, 11, and 12 and Article 18(5) of the Statute of the Bank shall be deleted.\r
-CIG 1/1/07 REV 1 134\r
-EN\r
-256) In Article 267(b), the word "progressive" shall be deleted and the words "or functioning" shall be inserted after "establishment".\r
-Financial provisions\r
-257) Article 268 shall be amended as follows:\r
-(a) in the first paragraph, the words "\85, including those relating to the European Social Fund, \85" shall be deleted and the three paragraphs shall become paragraph 1;\r
-(b) the second subparagraph shall be replaced by the following:\r
-"The Union's annual budget shall be established by the European Parliament and the Council in accordance with Article 272.";\r
-(c) the following new paragraphs shall be inserted:\r
-"2. The expenditure shown in the budget shall be authorised for the annual budgetary period in accordance with the regulation referred to in Article 279.\r
-3. The implementation of expenditure shown in the budget shall require the prior adoption of a legally binding Union act providing a legal basis for its action and for the implementation of the corresponding expenditure in accordance with the regulation referred to in Article 279, except in cases for which that law provides.\r
-4. With a view to maintaining budgetary discipline, the Union shall not adopt any act which is likely to have appreciable implications for the budget without providing an assurance that the expenditure arising from such an act is capable of being financed within the limit of the Union's own resources and in compliance with the multiannual financial framework referred to in Article 270a.\r
-5. The budget shall be implemented in accordance with the principle of sound financial management. Member States shall cooperate with the Union to ensure that the appropriations entered in the budget are used in accordance with this principle.\r
-6. The Union and the Member States, in accordance with Article 280, shall counter fraud and any other illegal activities affecting the financial interests of the Union.".\r
-CIG 1/1/07 REV 1 135\r
-EN\r
-The Union's own resources\r
-258) A Chapter 1 "THE UNION'S OWN RESOURCES" shall be inserted before Article 269.\r
-259) Article 269 shall be amended as follows:\r
-(a) the following new first paragraph shall be inserted:\r
-"The Union shall provide itself with the means necessary to attain its objectives and carry through its policies.";\r
-(b) the last paragraph shall be replaced by the following two paragraphs:\r
-"The Council, acting in accordance with a special legislative procedure, shall unanimously and after consulting the European Parliament adopt a decision laying down the provisions relating to the system of own resources of the Union. In this context it may establish new categories of own resources or abolish an existing category. That decision shall not enter into force until it is approved by the Member States in accordance with their respective constitutional requirements.\r
-The Council, acting by means of regulations in accordance with a special legislative procedure, shall lay down implementing measures for the Union's own resources system insofar as this is provided for in the decision adopted on the basis of the third paragraph. The Council shall act after obtaining the consent of the European Parliament.".\r
-260) Article 270 shall be repealed.\r
-CIG 1/1/07 REV 1 136\r
-EN\r
-Multiannual financial framework\r
-261) The following new Chapter 2 and new Article 270a shall be inserted:\r
-"CHAPTER 2 THE MULTIANNUAL FINANCIAL FRAMEWORK\r
-Article 270a\r
-1. The multiannual financial framework shall ensure that Union expenditure develops in an orderly manner and within the limits of its own resources.\r
-It shall be established for a period of at least five years.\r
-The annual budget of the Union shall comply with the multiannual financial framework.\r
-2. The Council, acting in accordance with a special legislative procedure, shall adopt a regulation laying down the multiannual financial framework. The Council shall act unanimously after obtaining the consent of the European Parliament, which shall be given by a majority of its component members.\r
-The European Council may, unanimously, adopt a decision authorising the Council to act by a qualified majority when adopting the regulation referred to in the first paragraph.\r
-3. The financial framework shall determine the amounts of the annual ceilings on commitment appropriations by category of expenditure and of the annual ceiling on payment appropriations. The categories of expenditure, limited in number, shall correspond to the Union's major sectors of activity.\r
-The financial framework shall lay down any other provisions required for the annual budgetary procedure to run smoothly.\r
-4. Where no Council regulation determining a new financial framework has been adopted by the end of the previous financial framework, the ceilings and other provisions corresponding to the last year of that framework shall be extended until such time as that act is adopted.\r
-5. Throughout the procedure leading to the adoption of the financial framework, the European Parliament, the Council and the Commission shall take any measure necessary to facilitate its adoption.".\r
-CIG 1/1/07 REV 1 137\r
-EN\r
-The Union's annual budget\r
-262) A Chapter 3 "THE UNION'S ANNUAL BUDGET" shall be inserted after Article 270a.\r
-263) An Article 270b shall be inserted, with the wording of Article 272(1).\r
-264) Article 271 shall become the new Article 273a; it shall be amended as set out below in point 267.\r
-265) Article 272(1) shall become Article 270b and paragraphs 2 to 10 shall be replaced by the following:\r
-"The European Parliament and the Council, acting in accordance with a special legislative procedure, shall establish the Union's annual budget in accordance with the following provisions.\r
-1. With the exception of the European Central Bank, each institution shall, before 1 July, draw up estimates of its expenditure for the following financial year. The Commission shall consolidate these estimates in a draft budget which may contain different estimates.\r
-The draft budget shall contain an estimate of revenue and an estimate of expenditure.\r
-2. The Commission shall submit a proposal containing the draft budget to the European Parliament and to the Council not later than 1 September of the year preceding that in which the budget is to be implemented.\r
-The Commission may amend the draft budget during the procedure until such time as the Conciliation Committee, referred to in paragraph 5, is convened.\r
-3. The Council shall adopt its position on the draft budget and forward it to the European Parliament not later than 1 October of the year preceding that in which the budget is to be implemented. The Council shall inform the European Parliament in full of the reasons which led it to adopt its position.\r
-4. If, within forty-two days of such communication, the European Parliament:\r
-(a) approves the position of the Council, the budget shall be adopted;\r
-(b) has not taken a decision, the budget shall be deemed to have been adopted;\r
-CIG 1/1/07 REV 1 138\r
-EN\r
-(c) adopts amendments by a majority of its component members, the amended draft shall be forwarded to the Council and to the Commission. The President of the European Parliament, in agreement with the President of the Council, shall immediately convene a meeting of the Conciliation Committee. However, if within ten days of the draft being forwarded the Council informs the European Parliament that it has approved all its amendments, the Conciliation Committee shall not meet.\r
-5. The Conciliation Committee, which shall be composed of the members of the Council or their representatives and an equal number of members representing the European Parliament, shall have the task of reaching agreement on a joint text, by a qualified majority of the members of the Council or their representatives and by a majority of the representatives of the European Parliament within twenty-one days of its being convened, on the basis of the positions of the European Parliament and the Council.\r
-The Commission shall take part in the Conciliation Committee's proceedings and shall take all the necessary initiatives with a view to reconciling the positions of the European Parliament and the Council.\r
-6. If, within the twenty-one days referred to in paragraph 5, the Conciliation Committee agrees on a joint text, the European Parliament and the Council shall each have a period of fourteen days from the date of that agreement in which to approve the joint text.\r
-7. If, within the period of fourteen days referred to in paragraph 6:\r
-(a) the European Parliament and the Council both approve the joint text or fail to take a decision, or if one of these institutions approves the joint text while the other one fails to take a decision, the budget shall be deemed to be definitively adopted in accordance with the joint text; or\r
-(b) the European Parliament, acting by a majority of its component members, and the Council both reject the joint text, or if one of these institutions rejects the joint text while the other one fails to take a decision, a new draft budget shall be submitted by the Commission; or\r
-(c) the European Parliament, acting by a majority of its component members, rejects the joint text while the Council approves it, a new draft budget shall be submitted by the Commission; or\r
-CIG 1/1/07 REV 1 139\r
-EN\r
-(d) the European Parliament approves the joint text whilst the Council rejects it, the European Parliament may, within fourteen days from the date of the rejection by the Council and acting by a majority of its component members and three-fifths of the votes cast, decide to confirm all or some of the amendments referred to in paragraph 4(c). Where a European Parliament amendment is not confirmed, the position agreed in the Conciliation committee on the budget heading which is the subject of the amendment shall be retained. The budget shall be deemed to be definitively adopted on this basis.\r
-8. If, within the twenty-one days referred to in paragraph 5, the Conciliation Committee does not agree on a joint text, a new draft budget shall be submitted by the Commission.\r
-9. When the procedure provided for in this Article has been completed, the President of the European Parliament shall declare that the budget has been definitively adopted.\r
-10. Each institution shall exercise the powers conferred upon it under this Article in compliance with the Treaties and the acts adopted thereunder, with particular regard to the Union's own resources and the balance between revenue and expenditure.".\r
-266) Article 273 shall be amended as follows:\r
-(a) in the first paragraph, the word "voted" shall be replaced by "definitively adopted", the words "or other subdivision" shall be deleted and, at the end of the sentence, the words "this arrangement shall not, however, have the effect of placing at the disposal of the Commission appropriations in excess of one twelfth of those provided for in the draft budget in course of preparation" shall be replaced by "that sum shall not, however, exceed one twelfth of the appropriations provided for in the same chapter of the draft budget.";\r
-(b) in the second paragraph, the words "on a proposal from the Commission," shall be inserted after "The Council" and the following shall be added at the end:"in accordance with the Regulations made pursuant to Article 279. The Council shall forward the decision immediately to the European Parliament.";\r
-(c) the third paragraph shall be deleted;\r
-CIG 1/1/07 REV 1 140\r
-EN\r
-(d) the last paragraph shall be replaced by the following:\r
-"The decision referred to in the second paragraph shall lay down the necessary measures relating to resources to ensure application of this Article, in accordance with the acts referred to in Article 269.\r
-It shall enter into force thirty days following its adoption if the European Parliament, acting by a majority of its component members, has not decided to reduce this expenditure within that time-limit.".\r
-267) An Article 273a shall be inserted, with the wording of Article 271; it shall be amended as follows:\r
-(a) the first paragraph shall be deleted;\r
-(b) In the third paragraph, which has become the second, the words "as far as may be necessary" shall be deleted;\r
-(c) in the last paragraph, the words "the Council, the Commission and the Court of Justice" shall be replaced by "the European Council and the Council, the Commission and the Court of Justice of the European Union".\r
-Implementation of the budget and discharge\r
-268) A Chapter 4 "IMPLEMENTATION OF THE BUDGET AND DISCHARGE", shall be inserted before Article 274, which shall be amended as follows:\r
-(a) in the first paragraph, the words at the beginning "The Commission shall implement the budget" shall be replaced by "The Commission shall implement the budget in cooperation with the Member States";\r
-(b) the second paragraph shall be replaced by the following: "The regulations shall lay down the control and audit obligations of the Member States in the implementation of the budget and the resulting responsibilities. They shall also lay down the responsibilities and detailed rules for each institution concerning its part in effecting its own expenditure.".\r
-CIG 1/1/07 REV 1 141\r
-EN\r
-269) In Article 275, first paragraph, the order of the Council and the European Parliament shall be reversed. The following new second paragraph shall be inserted:\r
-"The Commission shall also submit to the European Parliament and to the Council an evaluation report on the Union's finances based on the results achieved, in particular in relation to the indications given by the European Parliament and the Council pursuant to Article 276".\r
-270) In Article 276(1), the words "the accounts and the financial statement referred to in Article 275" shall be replaced by "the accounts, the financial statement and the evaluation report referred to in Article 275.".\r
-Common financial provisions\r
-271) A Chapter 5 "COMMON PROVISIONS" shall be inserted before Article 277.\r
-272) Article 277 shall be replaced by the following: "The multiannual financial framework and the annual budget shall be drawn up in euro.".\r
-273) Article 279 shall be amended as follows:\r
-(a) paragraph 1 shall be replaced by the following:\r
-"1. The European Parliament and the Council, acting in accordance with the ordinary legislative procedure, and after consulting the Court of Auditors, shall adopt by means of regulations:\r
-(a) the financial rules which determine in particular the procedure to be adopted for establishing and implementing the budget and for presenting and auditing accounts;\r
-(b) rules providing for checks on the responsibility of financial actors, in particular authorising officers and accounting officers.";\r
-(b) in paragraph 2, the word "unanimously" and the words "obtaining the opinion of" shall be deleted.\r
-CIG 1/1/07 REV 1 142\r
-EN\r
-274) The following new Articles 279a and 279b shall be inserted:\r
-"Article 279a\r
-The European Parliament, the Council and the Commission shall ensure that the financial means are made available to allow the Union to fulfil its legal obligations in respect of third parties.\r
-Article 279b\r
-Regular meetings between the Presidents of the European Parliament, the Council and the Commission shall be convened, on the initiative of the Commission, under the budgetary procedures referred to in this Chapter. The Presidents shall take all the necessary steps to promote consultation and the reconciliation of the positions of the institutions over which they preside in order to facilitate the implementation of this Title.".\r
-Combating fraud\r
-275) A Chapter 6 "COMBATING FRAUD" shall be inserted before Article 280.\r
-276) Article 280 shall be amended as follows:\r
-(a) the following words shall be added at the end of paragraph 1: ", and in all the Union's institutions, bodies, offices and agencies.";\r
-(b) the following words: "and in all the Union's institutions, bodies, offices and agencies" shall be inserted in paragraph 4, after the words: "in the Member States" and the last sentence in the paragraph shall be deleted.\r
-Enhanced cooperation\r
-277) A Title III "ENHANCED COOPERATION" shall be inserted after Article 280.\r
-CIG 1/1/07 REV 1 143\r
-EN\r
-278) The following new Articles 280a to 280i shall be inserted:\r
-"Article 280a\r
-Any enhanced cooperation shall comply with the Treaties and the law of the Union.\r
-Such cooperation shall not undermine the internal market or economic, social and territorial cohesion. It shall not constitute a barrier to or discrimination in trade between Member States, nor shall it distort competition between them.\r
-Article 280b\r
-Any enhanced cooperation shall respect the competences, rights and obligations of those Member States which do not participate in it. Those Member States shall not impede its implementation by the participating Member States.\r
-Article 280c\r
-1. When enhanced cooperation is being established, it shall be open to all Member States, subject to compliance with any conditions of participation laid down by the authorising decision. It shall also be open to them at any other time, subject to compliance with the acts already adopted within that framework, in addition to those conditions.\r
-The Commission and the Member States participating in enhanced cooperation shall ensure that they promote participation by as many Member States as possible.\r
-2. The Commission and, where appropriate, the High Representative of the Union for Foreign Affairs and Security Policy shall keep the European Parliament and the Council regularly informed regarding developments in enhanced cooperation.\r
-Article 280d\r
-1. Member States which wish to establish enhanced cooperation between themselves in one of the areas covered by the Treaties, with the exception of fields of exclusive competence and the common foreign and security policy, shall address a request to the Commission, specifying the scope and objectives of the enhanced cooperation proposed. The Commission may submit a proposal to the Council to that effect. In the event of the Commission not submitting a proposal, it shall inform the Member States concerned of the reasons for not doing so.\r
-Authorisation to proceed with the enhanced cooperation referred to in the first subparagraph shall be granted by the Council, on a proposal from the Commission and after obtaining the consent of the European Parliament.\r
-CIG 1/1/07 REV 1 144\r
-EN\r
-2. The request of the Member States which wish to establish enhanced cooperation between themselves within the framework of the common foreign and security policy shall be addressed to the Council. It shall be forwarded to the High Representative of the Union for Foreign Affairs and Security Policy, who shall give an opinion on whether the enhanced cooperation proposed is consistent with the Union's common foreign and security policy, and to the Commission, which shall give its opinion in particular on whether the enhanced cooperation proposed is consistent with other Union policies. It shall also be forwarded to the European Parliament for information.\r
-Authorisation to proceed with enhanced cooperation shall be granted by a decision of the Council acting unanimously.\r
-Article 280e\r
-All members of the Council may participate in its deliberations, but only members of the Council representing the Member States participating in enhanced cooperation shall take part in the vote.\r
-Unanimity shall be constituted by the votes of the representatives of the participating Member States only.\r
-A qualified majority shall be defined in accordance with Article 205(3).\r
-Article 280f\r
-1. Any Member State which wishes to participate in enhanced cooperation in progress in one of the areas referred to in Article 280d(1) shall notify its intention to the Council and the Commission. The Commission shall, within four months of the date of receipt of the notification, confirm the participation of the Member State concerned. It shall note where necessary that the conditions of participation have been fulfilled and shall adopt any transitional measures necessary with regard to the application of the acts already adopted within the framework of enhanced cooperation.\r
-However, if the Commission considers that the conditions of participation have not been fulfilled, it shall indicate the arrangements to be adopted to fulfil those conditions and shall set a deadline for re-examining the request. On the expiry of that deadline, it shall re-examine the request, in accordance with the procedure set out in the second subparagraph. If the Commission considers that the conditions of participation have still not been met, the Member State concerned may refer the matter to the Council, which shall decide on the request. The Council shall act in accordance with Article 280e. It may also adopt the transitional measures referred to in the second subparagraph on a proposal from the Commission.\r
-CIG 1/1/07 REV 1 145\r
-EN\r
-2. Any Member State which wishes to participate in enhanced cooperation in progress in the framework of the common foreign and security policy shall notify its intention to the Council, the High Representative of the Union for Foreign Affairs and Security Policy and the Commission.\r
-The Council shall confirm the participation of the Member State concerned, after consulting the High Representative of the Union for Foreign Affairs and Security Policy and after noting, where necessary, that the conditions of participation have been fulfilled. The Council, on a proposal from the High Representative, may also adopt any transitional measures necessary with regard to the application of the acts already adopted within the framework of enhanced cooperation. However, if the Council considers that the conditions of participation have not been fulfilled, it shall indicate the arrangements to be adopted to fulfil those conditions and shall set a deadline for re-examining the request for participation.\r
-For the purposes of this paragraph, the Council shall act unanimously and in accordance with Article 280e.\r
-Article 280g\r
-Expenditure resulting from implementation of enhanced cooperation, other than administrative costs entailed for the institutions, shall be borne by the participating Member States, unless all members of the Council, acting unanimously after consulting the European Parliament, decide otherwise.\r
-Article 280h\r
-1. Where a provision of the Treaties which may be applied in the context of enhanced cooperation stipulates that the Council shall act unanimously, the Council, acting unanimously in accordance with the arrangements laid down in Article 280e, may adopt a decision stipulating that it will act by a qualified majority.\r
-2. Where a provision of the Treaties which may be applied in the context of enhanced cooperation stipulates that the Council shall adopt acts under a special legislative procedure, the Council, acting unanimously in accordance with the arrangements laid down in Article 280e, may adopt a decision stipulating that it will act under the ordinary legislative procedure. The Council shall act after consulting the European Parliament.\r
-3. Paragraphs 1 and 2 shall not apply to decisions having military or defence implications.\r
-CIG 1/1/07 REV 1 146\r
-EN\r
-Article 280i\r
-The Council and the Commission shall ensure the consistency of activities undertaken in the context of enhanced cooperation and the consistency of such activities with the policies of the Union, and shall cooperate to that end.".\r
-General and final provisions\r
-279) Part Six shall be renumbered "Part Seven".\r
-280) Articles 281, 286, 293 and 305 shall be repealed.\r
-281) In Article 282, the following sentence shall be added at the end: "However, the Union shall be represented by each of the institutions, by virtue of their administrative autonomy, in matters relating to their respective operation.".\r
-282) At the beginning of Article 283, the words "The Council shall, acting by a qualified majority on a proposal from the Commission and after consulting" shall be replaced by "The European Parliament and the Council shall, acting by means of regulations in accordance with the ordinary legislative procedure on a proposal from the Commission and after consulting" and at the end the words "servants of those Communities" shall be replaced by the words "servants of the Union".\r
-283) In Article 288, the third paragraph shall be replaced by the following:\r
-"Notwithstanding the second paragraph, the European Central Bank shall, in accordance with the general principles common to the laws of the Member States, make good any damage caused by it or by its servants in the performance of their duties.".\r
-284) In Article 290, the words "by means of regulations" shall be added at the end.\r
-285) In Article 291, the words ", the European Monetary Institute" shall be deleted.\r
-286) Article 294 shall become Article 48a.\r
-CIG 1/1/07 REV 1 147\r
-EN\r
-287) Article 299 shall be amended as follows:\r
-(a) paragraph 1 shall be deleted. The first subparagraph of paragraph 2 and paragraphs 3 to s6 shall become Article 311; they shall be amended as set out below in point 293.\r
-Paragraph 2 shall not be numbered;\r
-(b) at the beginning of the first paragraph, the word "However," shall be deleted and the words "the French overseas departments" shall be replaced by "Guadeloupe, French Guiana, Martinique, Réunion, Saint Barthélemy, Saint Martin"; the following sentence shall be added at the end of the paragraph: "Where the specific measures in question are adopted by the Council in accordance with a special legislative procedure, it shall also act on a proposal from the Commission and after consulting the European Parliament.";\r
-(c) at the beginning of the second paragraph, the words "The Council shall, when adopting the relevant measures referred to in the second subparagraph, take into account areas such as" shall be replaced by "The measures referred to in the first paragraph concern in particular areas such as";\r
-(d) at the beginning of the third paragraph, the reference to the second subparagraph shall be replaced by a reference to the first paragraph.\r
-288) Articles 300 and 301 shall be replaced by Articles 188n and 188k respectively and Articles 302 to 304 shall be replaced by Article 188p.\r
-289) Article 308 shall be replaced by the following:\r
-"Article 308\r
-1. If action by the Union should prove necessary, within the framework of the policies defined in the Treaties, to attain one of the objectives set out in the Treaties, and the Treaties have not provided the necessary powers, the Council, acting unanimously on a proposal from the Commission and after obtaining the consent of the European Parliament, shall adopt the appropriate measures. Where the measures in question are adopted by the Council in accordance with a special legislative procedure, it shall also act unanimously on a proposal from the Commission and after obtaining the consent of the European Parliament.\r
-CIG 1/1/07 REV 1 148\r
-EN\r
-2. Using the procedure for monitoring the subsidiarity principle referred to in Article 5(3) of the Treaty on European Union, the Commission shall draw national Parliaments' attention to proposals based on this Article.\r
-3. Measures based on this Article shall not entail harmonisation of Member States' laws or regulations in cases where the Treaties exclude such harmonisation.\r
-4. This Article cannot serve as a basis for attaining objectives pertaining to the common foreign and security policy and shall respect the limits set out in Article 25, second paragraph, of the Treaty on European Union.".\r
-290) The following new Article 308a shall be inserted:\r
-"Article 308a\r
-Article 33 of the Treaty on European Union shall not apply to the following Articles:\r
-- 269, third and fourth paragraphs,\r
-- 270a(2), first subparagraph,\r
-- 308, and\r
-- 309.".\r
-291) Article 309 shall be replaced by the following:\r
-"Article 309\r
-For the purposes of Article 7 of the Treaty on European Union on the suspension of certain rights resulting from Union membership, the member of the European Council or of the Council representing the Member State in question shall not take part in the vote and the Member State in question shall not be counted in the calculation of the one third or four fifths of Member States referred to in paragraphs 1 and 2 of that Article. Abstentions by members present in person or represented shall not prevent the adoption of decisions referred to in paragraph 2 of that Article.\r
-For the adoption of the decisions referred to in paragraphs 3 and 4 of that Article, a qualified majority shall be defined in accordance with Article 205(3)(b).\r
-Where, following a decision to suspend voting rights adopted pursuant to paragraph 3 of that Article, the Council acts by a qualified majority on the basis of a provision of the Treaties, that qualified majority shall be defined in accordance with Article 205(3)(b), or, where the Council acts on a proposal from the Commission or from the High Representative of the Union for Foreign Affairs and Security Policy, in accordance with Article 205(3)(a). CIG 1/1/07 REV 1 149\r
-EN\r
-For the purposes of that Article, the European Parliament shall act by a two-thirds majority of the votes cast, representing the majority of its component members.".\r
-292) Article 310 shall become Article 188m.\r
-293) Article 311 shall be replaced by a text combining Article 299(2), first subparagraph, and Article 299(3) to (6); the text shall be amended as follows:\r
-(a) the first subparagraph of paragraph 2 and paragraphs 3 to 6 shall be renumbered 1 to 5 and the following new introductory wording shall be inserted at the beginning of the Article:\r
-"In addition to the provisions of Article 37 of the Treaty on European Union relating to the territorial scope of the Treaties, the following provisions shall apply:";\r
-(b) at the beginning of the first subparagraph of paragraph 2, renumbered 1, the words "the French overseas departments, \85" shall be replaced by "Guadeloupe, French Guiana, Martinique, Réunion, Saint Barthélemy, Saint Martin" and the words "in accordance with Article 299" shall be added at the end;\r
-(c) in paragraph 3, renumbered 2, the words "of this Treaty" shall be deleted;\r
-(d) in paragraph 6, renumbered 5, the introductory words "Notwithstanding the preceding paragraphs:" shall be replaced by "Notwithstanding Article 37 of the Treaty on European Union and paragraphs 1 to 4:";\r
-(e) the following new paragraph shall be inserted at the end of the Article:\r
-"6. The European Council may, on the initiative of the Member State concerned, adopt a decision amending the status, with regard to the Union, of a Danish, French or Netherlands country or territory referred to in paragraphs 1 and 2. The European Council shall act unanimously after consulting the Commission.".\r
-294) Article 314 shall be replaced by the following:\r
-"The provisions of Article 40 of the Treaty on European Union shall apply to this Treaty.".\r
-CIG 1/1/07 REV 1 150\r
-EN\r
-FINAL PROVISIONS\r
-Article 3\r
-This Treaty is concluded for an unlimited period.\r
-Article 4\r
-1. Protocol No 11 annexed to this Treaty contains the amendments to the Protocols annexed to the Treaty on European Union, to the Treaty establishing the European Community and to the Treaty establishing the European Atomic Energy Community.\r
-2. Protocol No 12 annexed to this Treaty contains the amendments to the Treaty establishing the European Atomic Energy Community.\r
-Article 5\r
-1. The articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union, as amended by this Treaty, shall be renumbered in accordance with the tables of equivalences set out in the Annex to this Treaty.\r
-2. The cross references to the articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union, as well as between them, shall be adapted accordingly. The same shall apply as regards references to the articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union contained in the other treaties and acts of primary legislation on which the Union is founded.\r
-3. The references to the articles, parts, titles, chapters and sections of the Treaty on European Union and of the Treaty on the Functioning of the European Union contained in other instruments or acts shall be understood as referring to the articles, parts, titles, chapters and sections of those Treaties as renumbered pursuant to paragraph 1 and, respectively, to the paragraphs of the said articles, as renumbered by certain provisions of this Treaty.\r
-Article 6\r
-1. This Treaty shall be ratified by the High Contracting Parties in accordance with their respective constitutional requirements. The instruments of ratification shall be deposited with the Government of the Italian Republic.\r
-CIG 1/1/07 REV 1 151\r
-EN\r
-CIG 1/1/07 REV 1 152\r
-EN\r
-2. This Treaty shall enter into force on 1 January 2009, provided that all the instruments of ratification have been deposited, or, failing that, on the first day of the month following the deposit of the instrument of ratification by the last signatory State to take this step.\r
-Article 7\r
-This Treaty, drawn up in a single original in the Bulgarian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hungarian, Irish, Italian, Latvian, Lithuanian, Maltese, Polish, Portuguese, Romanian, Slovak, Slovenian, Spanish and Swedish languages, the texts in each of these languages being equally authentic, shall be deposited in the archives of the Government of the Italian Republic, which will transmit a certified copy to each of the governments of the other signatory States.\r
-IN WITNESS WHEREOF the undersigned Plenipotentiaries have signed this Treaty.\r
-Done at, \85
\ No newline at end of file
diff --git a/org.argeo.slc/src/test/slc/work/data/input/nato-in.txt b/org.argeo.slc/src/test/slc/work/data/input/nato-in.txt
deleted file mode 100644 (file)
index caa8dfe..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-\r
-The North Atlantic Treaty\r
-Washington D.C. - 4 April 1949\r
-\r
-The Parties to this Treaty reaffirm their faith in the purposes and principles of the Charter of the United Nations and their desire to live in peace with all peoples and all governments.\r
-\r
-They are determined to safeguard the freedom, common heritage and civilisation of their peoples, founded on the principles of democracy, individual liberty and the rule of law. They seek to promote stability and well-being in the North Atlantic area.\r
-\r
-They are resolved to unite their efforts for collective defence and for the preservation of peace and security. They therefore agree to this North Atlantic Treaty :\r
-Article 1CHANGE\r
-\r
-The Parties undertake, as set forth in the Charter of the United Nations, to settle any international dispute in which they may be involved by peaceful means in such a manner that international peace and security and justice are not endangered, and to refrain in their international relations from the threat or use of force in any manner inconsistent with the purposes of the United Nations.\r
-Article 2\r
-\r
-The Parties will contribute toward the further development of peaceful and friendly international relations by strengthening their free institutions, by bringing about a better understanding of the principles upon which these institutions are founded, and by promoting conditions of stability and well-being. They will seek to eliminate conflict in their international economic policies and will encourage economic collaboration between any or all of them.\r
-Article 3\r
-\r
-In order more effectively to achieve the objectives of this Treaty, the Parties, separately and jointly, by means of continuous and effective self-help and mutual aid, will maintain and develop their individual and collective capacity to resist armed attack.\r
-Article 4\r
-\r
-The Parties will consult together whenever, in the opinion of any of them, the territorial integrity, political independence or security of any of the Parties is threatened.\r
-Article 5\r
-\r
-The Parties agree that an armed attack against one or more of them in Europe or North America shall be considered an attack against them all and consequently they agree that, if such an armed attack occurs, each of them, in exercise of the right of individual or collective self-defence recognised by Article 51 of the Charter of the United Nations, will assist the Party or Parties so attacked by taking forthwith, individually and in concert with the other Parties, such action as it deems necessary, including the use of armed force, to restore and maintain the security of the North Atlantic area.\r
-\r
-Any such armed attack and all measures taken as a result thereof shall immediately be reported to the Security Council. Such measures shall be terminated when the Security Council has taken the measures necessary to restore and maintain international peace and security .\r
-Article 6 (1)\r
-\r
-For the purpose of Article 5, an armed attack on one or more of the Parties is deemed to include an armed attack:\r
-\r
-    * on the territory of any of the Parties in Europe or North America, on the Algerian Departments of France (2), on the territory of or on the Islands under the jurisdiction of any of the Parties in the North Atlantic area north of the Tropic of Cancer;\r
-    * on the forces, vessels, or aircraft of any of the Parties, when in or over these territories or any other area in Europe in which occupation forces of any of the Parties were stationed on the date when the Treaty entered into force or the Mediterranean Sea or the North Atlantic area north of the Tropic of Cancer.\r
-\r
-Article 7\r
-\r
-This Treaty does not affect, and shall not be interpreted as affecting in any way the rights and obligations under the Charter of the Parties which are members of the United Nations, or the primary responsibility of the Security Council for the maintenance of international peace and security.\r
-Article 8\r
-\r
-Each Party declares that none of the international engagements now in force between it and any other of the Parties or any third State is in conflict with the provisions of this Treaty, and undertakes not to enter into any international engagement in conflict with this Treaty.\r
-Article 9\r
-\r
-The Parties hereby establish a Council, on which each of them shall be represented, to consider matters concerning the implementation of this Treaty. The Council shall be so organised as to be able to meet promptly at any time. The Council shall set up such subsidiary bodies as may be necessary; in particular it shall establish immediately a defence committee which shall recommend measures for the implementation of Articles 3 and 5.\r
-Article 10\r
-\r
-The Parties may, by unanimous agreement, invite any other European State in a position to further the principles of this Treaty and to contribute to the security of the North Atlantic area to accede to this Treaty. Any State so invited may become a Party to the Treaty by depositing its instrument of accession with the Government of the United States of America. The Government of the United States of America will inform each of the Parties of the deposit of each such instrument of accession.\r
-Article 11\r
-\r
-This Treaty shall be ratified and its provisions carried out by the Parties in accordance with their respective constitutional processes. The instruments of ratification shall be deposited as soon as possible with the Government of the United States of America, which will notify all the other signatories of each deposit. The Treaty shall enter into force between the States which have ratified it as soon as the ratifications of the majority of the signatories, including the ratifications of Belgium, Canada, France, Luxembourg, the Netherlands, the United Kingdom and the United States, have been deposited and shall come into effect with respect to other States on the date of the deposit of their ratifications. (3)\r
-Article 12\r
-\r
-After the Treaty has been in force for ten years, or at any time thereafter, the Parties shall, if any of them so requests, consult together for the purpose of reviewing the Treaty, having regard for the factors then affecting peace and security in the North Atlantic area, including the development of universal as well as regional arrangements under the Charter of the United Nations for the maintenance of international peace and security.\r
-Article 13\r
-\r
-After the Treaty has been in force for twenty years, any Party may cease to be a Party one year after its notice of denunciation has been given to the Government of the United States of America, which will inform the Governments of the other Parties of the deposit of each notice of denunciation.\r
-Article 14\r
-\r
-This Treaty, of which the English and French texts are equally authentic, shall be deposited in the archives of the Government of the United States of America. Duly certified copies will be transmitted by that Government to the Governments of other signatories.\r
diff --git a/org.argeo.slc/src/test/slc/work/data/input/un-in.txt b/org.argeo.slc/src/test/slc/work/data/input/un-in.txt
deleted file mode 100644 (file)
index e8f6d3a..0000000
+++ /dev/null
@@ -1,769 +0,0 @@
-Preamble\r
-\r
-WE THE PEOPLES OF THE UNITED NATIONS DETERMINED\r
-\r
-    * to save succeeding generations from the scourge of war, which twice in our lifetime has brought untold sorrow to mankind, and\r
-\r
-    * to reaffirm faith in fundamental human rights, in the dignity and worth of the human person, in the equal rights of men and women and of nations large and small, and\r
-\r
-    * to establish conditions under which justice and respect for the obligations arising from treaties and other sources of international law can be maintained, and\r
-\r
-    * to promote social progress and better standards of life in larger freedom,\r
-\r
-AND FOR THESE ENDS\r
-\r
-    * to practice tolerance and live together in peace with one another as good neighbours, and\r
-\r
-    * to unite our strength to maintain international peace and security, and\r
-\r
-    * to ensure, by the acceptance of principles and the institution of methods, that armed force shall not be used, save in the common interest, and\r
-\r
-    * to employ international machinery for the promotion of the economic and social advancement of all peoples,\r
-\r
-HAVE RESOLVED TO COMBINE OUR EFFORTS TO ACCOMPLISH THESE AIMS\r
-\r
-Accordingly, our respective Governments, through representatives assembled in the city of San Francisco, who have exhibited their full powers found to be in good and due form, have agreed to the present Charter of the United Nations and do hereby establish an international organization to be known as the United Nations.\r
-\r
-Chapter I - Purposes and Principles\r
-\r
-Article 1\r
-\r
-The Purposes of the United Nations are:\r
-\r
-1. To maintain international peace and security, and to that end: to take effective collective measures for the prevention and removal of threats to the peace, and for the suppression of acts of aggression or other breaches of the peace, and to bring about by peaceful means, and in conformity with the principles of justice and international law, adjustment or settlement of international disputes or situations which might lead to a breach of the peace;\r
-\r
-2. To develop friendly relations among nations based on respect for the principle of equal rights and self-determination of peoples, and to take other appropriate measures to strengthen universal peace;\r
-\r
-3. To achieve international co-operation in solving international problems of an economic, social, cultural, or humanitarian character, and in promoting and encouraging respect for human rights and for fundamental freedoms for all without distinction as to race, sex, language, or religion; and\r
-\r
-4. To be a centre for harmonizing the actions of nations in the attainment of these common ends.\r
-\r
-Article 2\r
-\r
-The Organization and its Members, in pursuit of the Purposes stated in Article 1, shall act in accordance with the following Principles.\r
-\r
-1. The Organization is based on the principle of the sovereign equality of all its Members.\r
-\r
-2. All Members, in order to ensure to all of them the rights and benefits resulting from membership, shall fulfill in good faith the obligations assumed by them in accordance with the present Charter.\r
-\r
-3. All Members shall settle their international disputes by peaceful means in such a manner that international peace and security, and justice, are not endangered.\r
-\r
-4. All Members shall refrain in their international relations from the threat or use of force against the territorial integrity or political independence of any state, or in any other manner inconsistent with the Purposes of the United Nations.\r
-\r
-5. All Members shall give the United Nations every assistance in any action it takes in accordance with the present Charter, and shall refrain from giving assistance to any state against which the United Nations is taking preventive or enforcement action.\r
-\r
-6. The Organization shall ensure that states which are not Members of the United Nations act in accordance with these Principles so far as may be necessary for the maintenance of international peace and security.\r
-\r
-7. Nothing contained in the present Charter shall authorize the United Nations to intervene in matters which are essentially within the domestic jurisdiction of any state or shall require the Members to submit such matters to settlement under the present Charter; but this principle shall not prejudice the application of enforcement measures under Chapter Vll.\r
-\r
-Chapter II - Membership\r
-\r
-Article 3\r
-\r
-The original Members of the United Nations shall be the states which, having participated in the United Nations Conference on International Organization at San Francisco, or having previously signed the Declaration by United Nations of 1 January 1942, sign the present Charter and ratify it in accordance with Article 110.\r
-\r
-Article 4\r
-\r
-1. Membership in the United Nations is open to all other peace-loving states which accept the obligations contained in the present Charter and, in the judgment of the Organization, are able and willing to carry out these obligations.\r
-\r
-2. The admission of any such state to membership in the United Nations will be effected by a decision of the General Assembly upon the recommendation of the Security Council.\r
-\r
-Article 5\r
-\r
-A Member of the United Nations against which preventive or enforcement action has been taken by the Security Council may be suspended from the exercise of the rights and privileges of membership by the General Assembly upon the recommendation of the Security Council. The exercise of these rights and privileges may be restored by the Security Council.\r
-\r
-Article 6\r
-\r
-A Member of the United Nations which has persistently violated the Principles contained in the present Charter may be expelled from the Organization by the General Assembly upon the recommendation of the Security Council.\r
-\r
-Chapter III - Organs\r
-\r
-Article 7\r
-\r
-1. There are established as the principal organs of the United Nations:\r
-\r
-    * a General Assembly\r
-\r
-    * a Security Council\r
-\r
-    * an Economic and Social Council\r
-\r
-    * a Trusteeship Council\r
-\r
-    * an International Court of Justice\r
-\r
-    * and a Secretariat.\r
-\r
-2. Such subsidiary organs as may be found necessary may be established in accordance with the present Charter.\r
-\r
-Article 8\r
-\r
-The United Nations shall place no restrictions on the eligibility of men and women to participate in any capacity and under conditions of equality in its principal and subsidiary organs.\r
-\r
-Chapter IV - The General Assembly\r
-\r
-Composition\r
-\r
-Article 9\r
-\r
-1. The General Assembly shall consist of all the Members of the United Nations.\r
-\r
-2. Each Member shall have not more than five representatives in the General Assembly.\r
-\r
-Functions and Powers\r
-\r
-Article 10\r
-\r
-The General Assembly may discuss any questions or any matters within the scope of the present Charter or relating to the powers and functions of any organs provided for in the present Charter, and, except as provided in Article 12, may make recommendations to the Members of the United Nations or to the Security Council or to both on any such questions or matters.\r
-\r
-Article 11\r
-\r
-1. The General Assembly may consider the general principles of co-operation in the maintenance of international peace and security, including the principles governing disarmament and the regulation of armaments, and may make recommendations with regard to such principles to the Members or to the Security Council or to both.\r
-\r
-2. The General Assembly may discuss any questions relating to the maintenance of international peace and security brought before it by any Member of the United Nations, or by the Security Council, or by a state which is not a Member of the United Nations in accordance with Article 35, paragraph 2, and, except as provided in Article 12, may make recommendations with regard to any such questions to the state or states concerned or to the Security Council or to both. Any such question on which action is necessary shall be referred to the Security Council by the General Assembly either before or after discussion.\r
-\r
-3. The General Assembly may call the attention of the Security Council to situations which are likely to endanger international peace and security.\r
-\r
-4. The powers of the General Assembly set forth in this Article shall not limit the general scope of Article 10.\r
-\r
-Article 12\r
-\r
-1. While the Security Council is exercising in respect of any dispute or situation the functions assigned to it in the present Charter, the General Assembly shall not make any recommendation with regard to that dispute or situation unless the Security Council so requests.\r
-\r
-2. The Secretary-General, with the consent of the Security Council, shall notify the General Assembly at each session of any matters relative to the maintenance of international peace and security which are being dealt with by the Security Council and shall similarly notify the General Assembly, or the Members of the United Nations if the General Assembly is not in session, immediately the Security Council ceases to deal with suchmatters.\r
-\r
-Article 13\r
-\r
-1. The General Assembly shall initiate studies and make recommendations for the purpose of:\r
-\r
-    a. promoting international co-operation in the political field and encouraging the progressive development of international law and its codification;\r
-\r
-    b. promoting international co-operation in the economic, social, cultural, educational, and health fields, and assisting in the realization of human rights and fundamental freedoms for all without distinction as to race, sex, language, or religion.\r
-\r
-2. The further responsibilities, functions and powers of the General Assembly with respect to matters mentioned in paragraph 1 (b) above are set forth in Chapters IX and X.\r
-\r
-Article 14\r
-\r
-Subject to the provisions of Article 12, the General Assembly may recommend measures for the peaceful adjustment of any situation, regardless of origin, which it deems likely to impair the general welfare or friendly relations among nations, including situations resulting from a violation of the provisions of the present Charter setting forth the Purposes and Principles of the United Nations.\r
-\r
-Article 15\r
-\r
-1. The General Assembly shall receive and consider annual and special reports from the Security Council; these reports shall include an account of the measures that the Security Council has decided upon or taken to maintain international peace and security.\r
-\r
-2. The General Assembly shall receive and consider reports from the other organs of the United Nations.\r
-\r
-Article 16\r
-\r
-The General Assembly shall perform such functions with respect to the international trusteeship system as are assigned to it under Chapters XII and XIII, including the approval of the trusteeship agreements for areas not designated as strategic.\r
-\r
-Article 17\r
-\r
-1. The General Assembly shall consider and approve the budget of the Organization.\r
-\r
-2. The expenses of the Organization shall be borne by the Members as apportioned by the General Assembly.\r
-\r
-3. The General Assembly shall consider and approve any financial and budgetary arrangements with specialized agencies referred to in Article 57 and shall examine the administrative budgets of such specialized agencies with a view to making recommendations to the agencies concerned.\r
-\r
-Voting\r
-\r
-Article 18\r
-\r
-1. Each member of the General Assembly shall have one vote.\r
-\r
-2. Decisions of the General Assembly on important questions shall be made by a two-thirds majority of the members present and voting. These questions shall include: recommendations with respect to the maintenance of international peace and security, the election of the non-permanent members of the Security Council, the election of the members of the Economic and Social Council, the election of members of the Trusteeship Council in accordance with paragraph 1 (c) of Article 86, the admission of new Members to the United Nations, the suspension of the rights and privileges of membership, the expulsion of Members, questions relating to the operation of the trusteeship system, and budgetary questions.\r
-\r
-3. Decisions on other questions, including the determination of additional categories of questions to be decided by a two-thirds majority, shall be made by a majority of the members present and voting.\r
-\r
-Article 19\r
-\r
-A Member of the United Nations which is in arrears in the payment of its financial contributions to the Organization shall have no vote in the General Assembly if the amount of its arrears equals or exceeds the amount of the contributions due from it for the preceding two full years. The General Assembly may, nevertheless, permit such a Member to vote if it is satisfied that the failure to pay is due to conditions beyond the control of the Member.\r
-\r
-Procedure\r
-\r
-Article 20\r
-\r
-The General Assembly shall meet in regular annual sessions and in such special sessions as occasion may require. Special sessions shall be convoked by the Secretary-General at the request of the Security Council or of a majority of the Members of the United Nations.\r
-\r
-Article 21\r
-\r
-The General Assembly shall adopt its own rules of procedure. It shall elect its President for each session.\r
-\r
-Article 22\r
-\r
-The General Assembly may establish such subsidiary organs as it deems necessary for the performance of its functions.\r
-\r
-Chapter V - The Security Council\r
-\r
-Composition\r
-\r
-Article 23\r
-\r
-1. The Security Council shall consist of fifteen Members of the United Nations. The Republic of China, France, the Union of Soviet Socialist Republics, the United Kingdom of Great Britain and Northern Ireland, and the United States of America shall be permanent members of the Security Council. The General Assembly shall elect ten other Members of the United Nations to be non-permanent members of the Security Council, due regard being specially paid, in the first instance to the contribution of Members of the United Nations to the maintenance of international peace and security and to the other purposes of the Organization, and also to equitable geographical distribution.\r
-\r
-2. The non-permanent members of the Security Council shall be elected for a term of two years. In the first election of the non-permanent members after the increase of the membership of the Security Council from eleven to fifteen, two of the four additional members shall be chosen for a term of one year. A retiring member shall not be eligible for immediate re-election.\r
-\r
-3. Each member of the Security Council shall have one representative.\r
-\r
-Functions and Powers\r
-\r
-Article 24\r
-\r
-1. In order to ensure prompt and effective action by the United Nations, its Members confer on the Security Council primary responsibility for the maintenance of international peace and security, and agree that in carrying out its duties under this responsibility the Security Council acts on their behalf.\r
-\r
-2. In discharging these duties the Security Council shall act in accordance with the Purposes and Principles of the United Nations. The specific powers granted to the Security Council for the discharge of these duties are laid down in Chapters VI, VII, VIII, and XII.\r
-\r
-3. The Security Council shall submit annual and, when necessary, special reports to the General Assembly for its consideration.\r
-\r
-Article 25\r
-\r
-The Members of the United Nations agree to accept and carry out the decisions of the Security Council in accordance with the present Charter.\r
-\r
-Article 26\r
-\r
-In order to promote the establishment and maintenance of international peace and security with the least diversion for armaments of the world's human and economic resources, the Security Council shall be responsible for formulating, with the assistance of the Military Staff Committee referred to in Article 47, plans to be submitted to the Members of the United Nations for the establishment of a system for the regulation of armaments.\r
-\r
-Voting\r
-\r
-Article 27\r
-\r
-1. Each member of the Security Council shall have one vote.\r
-\r
-2. Decisions of the Security Council on procedural matters shall be made by an affirmative vote of nine members.\r
-\r
-3. Decisions of the Security Council on all other matters shall be made by an affirmative vote of nine members including the concurring votes of the permanent members; provided that, in decisions under Chapter VI, and under paragraph 3 of Article 52, a party to a dispute shall abstain from voting.\r
-\r
-Procedure\r
-\r
-Article 28\r
-\r
-1. The Security Council shall be so organized as to be able to function continuously. Each member of the Security Council shall for this purpose be represented at all times at the seat of the Organization.\r
-\r
-2. The Security Council shall hold periodic meetings at which each of its members may, if it so desires, be represented by a member of the government or by some other specially designated representative.\r
-\r
-3. The Security Council may hold meetings at such places other than the seat of the Organization as in its judgment will best facilitate its work.\r
-\r
-Article 29\r
-\r
-The Security Council may establish such subsidiary organs as it deems necessary for the performance of its functions.\r
-\r
-Article 30\r
-\r
-The Security Council shall adopt its own rules of procedure, including the method of selecting its President.\r
-\r
-Article 31\r
-\r
-Any Member of the United Nations which is not a member of the Security Council may participate, without vote, in the discussion of any question brought before the Security Council whenever the latter considers that the interests of that Member are specially affected.\r
-\r
-Article 32\r
-\r
-Any Member of the United Nations which is not a member of the Security Council or any state which is not a Member of the United Nations, if it is a party to a dispute under consideration by the Security Council, shall be invited to participate, without vote, in the discussion relating to the dispute. The Security Council shall lay down such conditions as it deems just for the participation of a state which is not a Member of the United Nations.\r
-\r
-Chapter VI - Pacific Settlement of Disputes\r
-\r
-Article 33\r
-\r
-1. The parties to any dispute, the continuance of which is likely to endanger the maintenance of international peace and security, shall, first of all, seek a solution by negotiation, enquiry, mediation, conciliation, arbitration, judicial settlement, resort to regional agencies or arrangements, or other peaceful means of their own choice.\r
-\r
-2. The Security Council shall, when it deems necessary, call upon the parties to settle their dispute by such means.\r
-\r
-Article 34\r
-\r
-The Security Council may investigate any dispute, or any situation which might lead to international friction or give rise to a dispute, in order to determine whether the continuance of the dispute or situation is likely to endanger the maintenance of international peace and security.\r
-\r
-Article 35\r
-\r
-1. Any Member of the United Nations may bring any dispute, or any situation of the nature referred to in Article 34, to the attention of the Security Council or of the General Assembly.\r
-\r
-2. A state which is not a Member of the United Nations may bring to the attention of the Security Council or of the General Assembly any dispute to which it is a party if it accepts in advance, for the purposes of the dispute, the obligations of pacific settlement provided in the present Charter.\r
-\r
-3. The proceedings of the General Assembly in respect of matters brought to its attention under this Article will be subject to the provisions of Articles 11 and 12.\r
-\r
-Article 36\r
-\r
-1. The Security Council may, at any stage of a dispute of the nature referred to in Article 33 or of a situation of like nature, recommend appropriate procedures or methods of adjustment.\r
-\r
-2. The Security Council should take into consideration any procedures for the settlement of the dispute which have already been adopted by the parties.\r
-\r
-3. In making recommendations under this Article the Security Council should also take into consideration that legal disputes should as a general rule be referred by the parties to the International Court of Justice in accordance with the provisions of the Statute of the Court.\r
-\r
-Article 37\r
-\r
-1. Should the parties to a dispute of the nature referred to in Article 33 fail to settle it by the means indicated in that Article, they shall refer it to the Security Council.\r
-\r
-2. If the Security Council deems that the continuance of the dispute is in fact likely to endanger the maintenance of international peace and security, it shall decide whether to take action under Article 36 or to recommend such terms of settlement as it may consider appropriate.\r
-\r
-Article 38\r
-\r
-Without prejudice to the provisions of Articles 33 to 37, the Security Council may, if all the parties to any dispute so request, make recommendations to the parties with a view to a pacific settlement of the dispute.\r
-\r
-Chapter VII - Action with Respect to Threats to the Peace, Breaches of the Peace and Acts of Aggression\r
-\r
-Article 39\r
-\r
-The Security Council shall determine the existence of any threat to the peace, breach of the peace, or act of aggression and shall make recommendations, or decide what measures shall be taken in accordance with Articles 41 and 42, to maintain or restore international peace and security.\r
-\r
-Article 40\r
-\r
-In order to prevent an aggravation of the situation, the Security Council may, before making the recommendations or deciding upon the measures provided for in Article 39, call upon the parties concerned to comply with such provisional measures as it deems necessary or desirable. Such provisional measures shall be without prejudice to the rights, claims, or position of the parties concerned. The Security Council shall duly take account of failure to comply with such provisional measures.\r
-\r
-Article 41\r
-\r
-The Security Council may decide what measures not involving the use of armed force are to be employed to give effect to its decisions, and it may call upon the Members of the United Nations to apply such measures. These may include complete or partial interruption of economic relations and of rail, sea, air, postal, telegraphic, radio, and other means of communication, and the severance of diplomatic relations.\r
-\r
-Article 42\r
-\r
-Should the Security Council consider that measures provided for in Article 41 would be inadequate or have proved to be inadequate, it may take such action by air, sea, or land forces as may be necessary to maintain or restore international peace and security. Such action may include demonstrations, blockade, and other operations by air, sea, or land forces of Members of the United Nations.\r
-\r
-Article 43\r
-\r
-1. All Members of the United Nations, in order to contribute to the maintenance of international peace and security, undertake to make available to the Security Council, on its call and in accordance with a special agreement or agreements, armed forces, assistance, and facilities, including rights of passage, necessary for the purpose of maintaining international peace and security.\r
-\r
-2. Such agreement or agreements shall govern the numbers and types of forces, their degree of readiness and general location, and the nature of the facilities and assistance to be provided.\r
-\r
-3. The agreement or agreements shall be negotiated as soon as possible on the initiative of the Security Council. They shall be concluded between the Security Council and Members or between the Security Council and groups of Members and shall be subject to ratification by the signatory states in accordance with their respective constitutional processes.\r
-\r
-Article 44\r
-\r
-When the Security Council has decided to use force it shall, before calling upon a Member not represented on it to provide armed forces in fulfilment of the obligations assumed under Article 43, invite that Member, if the Member so desires, to participate in the decisions of the Security Council concerning the employment of contingents of that Member's armed forces.\r
-\r
-Article 45\r
-\r
-In order to enable the United Nations to take urgent military measures, Members shall hold immediately available national air-force contingents for combined international enforcement action. The strength and degree of readiness of these contingents and plans for their combined action shall be determined within the limits laid down in the special agreement or agreements referred to in Article 43, by the Security Council with the assistance of the Military Staff Committee.\r
-\r
-Article 46\r
-\r
-Plans for the application of armed force shall be made by the Security Council with the assistance of the Military Staff Committee.\r
-\r
-Article 47\r
-\r
-1. There shall be established a Military Staff Committee to advise and assist the Security Council on all questions relating to the Security Council's military requirements for the maintenance of international peace and security, the employment and command of forces placed at its disposal, the regulation of armaments, and possible disarmament.\r
-\r
-2. The Military Staff Committee shall consist of the Chiefs of Staff of the permanent members of the Security Council or their representatives. Any Member of the United Nations not permanently represented on the Committee shall be invited by the Committee to be associated with it when the efficient discharge of the Committee's responsibilities requires the participation of that Member in its work.\r
-\r
-3. The Military Staff Committee shall be responsible under the Security Council for the strategic direction of any armed forces placed at the disposal of the Security Council. Questions relating to the command of such forces shall be worked out subsequently.\r
-\r
-4. The Military Staff Committee, with the authorization of the Security Council and after consultation with appropriate regional agencies, may establish regional sub-committees.\r
-\r
-Article 48\r
-\r
-1. The action required to carry out the decisions of the Security Council for the maintenance of international peace and security shall be taken by all the Members of the United Nations or by some of them, as the Security Council may determine.\r
-\r
-2. Such decisions shall be carried out by the Members of the United Nations directly and through their action in the appropriate international agencies of which they are members.\r
-\r
-Article 49\r
-\r
-The Members of the United Nations shall join in affording mutual assistance in carrying out the measures decided upon by the Security Council.\r
-\r
-Article 50\r
-\r
-If preventive or enforcement measures against any state are taken by the Security Council, any other state, whether a Member of the United Nations or not, which finds itself confronted with special economic problems arising from the carrying out of those measures shall have the right to consult the Security Council with regard to a solution of those problems.\r
-\r
-Article 51\r
-\r
-Nothing in the present Charter shall impair the inherent right of individual or collective self-defence if an armed attack occurs against a Member of the United Nations, until the Security Council has taken measures necessary to maintain international peace and security. Measures taken by Members in the exercise of this right of self-defence shall be immediately reported to the Security Council and shall not in any way affect the authority and responsibility of the Security Council under the present Charter to take at any time such action as it deems necessary in order to maintain or restore international peace and security.\r
-\r
-Chapter VIII - Regional Arrangements\r
-\r
-Article 52\r
-\r
-1. Nothing in the present Charter precludes the existence of regional arrangements or agencies for dealing with such matters relating to the maintenance of international peace and security as are appropriate for regional action provided that such arrangements or agencies and their activities are consistent with the Purposes and Principles of the United Nations.\r
-\r
-2. The Members of the United Nations entering into such arrangements or constituting such agencies shall make every effort to achieve pacific settlement of local disputes through such regional arrangements or by such regional agencies before referring them to the Security Council.\r
-\r
-3. The Security Council shall encourage the development of pacific settlement of local disputes through such regional arrangements or by such regional agencies either on the initiative of the states concerned or by reference from the Security Council.\r
-\r
-4. This Article in no way impairs the application of Articles 34 and 35.\r
-\r
-Article 53\r
-\r
-1. The Security Council shall, where appropriate, utilize such regional arrangements or agencies for enforcement action under its authority. But no enforcement action shall be taken under regional arrangements or by regional agencies without the authorization of the Security Council, with the exception of measures against any enemy state, as defined in paragraph 2 of this Article, provided for pursuant to Article 107 or in regional arrangements directed against renewal of aggressive policy on the part of any such state, until such time as the Organization may, on request of the Governments concerned, be charged with the responsibility for preventing further aggression by such a state.\r
-\r
-2. The term enemy state as used in paragraph 1 of this Article applies to any state which during the Second World War has been an enemy of any signatory of the present Charter.\r
-\r
-Article 54\r
-\r
-The Security Council shall at all times be kept fully informed of activities undertaken or in contemplation under regional arrangements or by regional agencies for the maintenance of international peace and security.\r
-\r
-Chapter IX - International Economic and Social Co-operation\r
-\r
-Article 55\r
-\r
-With a view to the creation of conditions of stability and well-being which are necessary for peaceful and friendly relations among nations based on respect for the principle of equal rights and self-determination of peoples, the United Nations shall promote:\r
-\r
-    a. higher standards of living, full employment, and conditions of economic and social progress and development;\r
-\r
-    b. solutions of international economic, social, health, and related problems; and international cultural and educational cooperation; and\r
-\r
-    c. universal respect for, and observance of, human rights and fundamental freedoms for all without distinction as to race, sex, language, or religion.\r
-\r
-Article 56\r
-\r
-All Members pledge themselves to take joint and separate action in co-operation with the Organization for the achievement of the purposes set forth in Article 55.\r
-\r
-Article 57\r
-\r
-1. The various specialized agencies, established by intergovernmental agreement and having wide international responsibilities, as defined in their basic instruments, in economic, social, cultural, educational, health, and related fields, shall be brought into relationship with the United Nations in accordance with the provisions of Article 63.\r
-\r
-2. Such agencies thus brought into relationship with the United Nations are hereinafter referred to as specialized agencies.\r
-\r
-Article 58\r
-\r
-The Organization shall make recommendations for the co-ordination of the policies and activities of the specialized agencies.\r
-\r
-Article 59\r
-\r
-The Organization shall, where appropriate, initiate negotiations among the states concerned for the creation of any new specialized agencies required for the accomplishment of the purposes set forth in Article 55.\r
-\r
-Article 60\r
-\r
-Responsibility for the discharge of the functions of the Organization set forth in this Chapter shall be vested in the General Assembly and, under the authority of the General Assembly, in the Economic and Social Council, which shall have for this purpose the powers set forth in Chapter X.\r
-\r
-Chapter X - The Economic and Social Council\r
-\r
-Composition\r
-\r
-Article 61\r
-\r
-1. The Economic and Social Council shall consist of fifty-four Members of the United Nations elected by the General Assembly.\r
-\r
-2. Subject to the provisions of paragraph 3, eighteen members of the Economic and Social Council shall be elected each year for a term of three years. A retiring member shall be eligible for immediate re-election.\r
-\r
-3. At the first election after the increase in the membership of the Economic and Social Council from twenty-seven to fifty-four members, in addition to the members elected in place of the nine members whose term of office expires at the end of that year, twenty-seven additional members shall be elected. Of these twenty-seven additional members, the term of office of nine members so elected shall expire at the end of one year, and of nine other members at the end of two years, in accordance with arrangements made by the General Assembly.\r
-\r
-4. Each member of the Economic and Social Council shall have one representative.\r
-\r
-Functions and Powers\r
-\r
-Article 62\r
-\r
-1. The Economic and Social Council may make or initiate studies and reports with respect to international economic, social, cultural, educational, health, and related matters and may make recommendations with respect to any such matters to the General Assembly to the Members of the United Nations, and to the specialized agencies concerned.\r
-\r
-2. It may make recommendations for the purpose of promoting respect for, and observance of, human rights and fundamental freedoms for all.\r
-\r
-3. It may prepare draft conventions for submission to the General Assembly, with respect to matters falling within its competence.\r
-\r
-4. It may call, in accordance with the rules prescribed by the United Nations,international conferences on matters falling within its competence.\r
-\r
-Article 63\r
-\r
-1. The Economic and Social Council may enter into agreements with any of the agencies referred to in Article 57, defining the terms on which the agency concerned shall be brought into relationship with the United Nations. Such agreements shall be subject to approval by the General Assembly.\r
-\r
-2. It may co-ordinate the activities of the specialized agencies through consultation with and recommendations to such agencies and through recommendations to the General Assembly and to the Members of the United Nations.\r
-\r
-Article 64\r
-\r
-1. The Economic and Social Council may take appropriate steps to obtain regular reports from the specialized agencies. It may make arrangements with the Members of the United Nations and with the specialized agencies to obtain reports on the steps taken to give effect to its own recommendations and to recommendations on matters falling within its competence made by the General Assembly.\r
-\r
-2. It may communicate its observations on these reports to the General Assembly.\r
-\r
-Article 65\r
-\r
-The Economic and Social Council may furnish information to the Security Council and shall assist the Security Council upon its request.\r
-\r
-Article 66\r
-\r
-1. The Economic and Social Council shall perform such functions as fall within its competence in connexion with the carrying out of the recommendations of the General Assembly.\r
-\r
-2. It may, with the approval of the General Assembly, perform services at the request of Members of the United Nations and at the request of specialized agencies.\r
-\r
-3. It shall perform such other functions as are specified elsewhere in the present Charter or as may be assigned to it by the General Assembly.\r
-\r
-Voting\r
-\r
-Article 67\r
-\r
-1. Each member of the Economic and Social Council shall have one vote.\r
-\r
-2. Decisions of the Economic and Social Council shall be made by a majority of the members present and voting.\r
-\r
-Procedure\r
-\r
-Article 68\r
-\r
-The Economic and Social Council shall set up commissions in economic and social fields and for the promotion of human rights, and such other commissions as may be required for the performance of its functions.\r
-\r
-Article 69\r
-\r
-The Economic and Social Council shall invite any Member of the United Nations to participate, without vote, in its deliberations on any matter of particular concern to that Member.\r
-\r
-Article 70\r
-\r
-The Economic and Social Council may make arrangements for representatives of the specialized agencies to participate, without vote, in its deliberations and in those of the commissions established by it, and for its representatives to participate in the deliberations of the specialized agencies.\r
-\r
-Article 71\r
-\r
-The Economic and Social Council may make suitable arrangements for consultation with non-governmental organizations which are concerned with matters within its competence. Such arrangements may be made with international organizations and, where appropriate, with national organizations after consultation with the Member of the United Nations concerned.\r
-\r
-Article 72\r
-\r
-1. The Economic and Social Council shall adopt its own rules of procedure, including the method of selecting its President.\r
-\r
-2. The Economic and Social Council shall meet as required in accordance with its rules, which shall include provision for the convening of meetings on the request of a majority of its members.\r
-\r
-Chapter XI - Declaration Regarding Non-Self-Governing Territories\r
-\r
-Article 73\r
-\r
-Members of the United Nations which have or assume responsibilities for the administration of territories whose peoples have not yet attained a full measure of self-government recognize the principle that the interests of the inhabitants of these territories are paramount, and accept as a sacred trust the obligation to promote to the utmost, within the system of international peace and security established by the present Charter, the well-being of the inhabitants of these territories, and, to this end:\r
-\r
-    a. to ensure, with due respect for the culture of the peoples concerned, their political, economic, social, and educational advancement, their just treatment, and their protection against abuses;\r
-\r
-    b. to develop self-government, to take due account of the political aspirations of the peoples, and to assist them in the progressive development of their free political institutions, according to the particular circumstances of each territory and its peoples and their varying stages of advancement;\r
-\r
-    c. to further international peace and security;\r
-\r
-    d. to promote constructive measures of development, to encourage research, and to co-operate with one another and, when and where appropriate, with specialized international bodies with a view to the practical achievement of the social, economic, and scientific purposes set forth in this Article; and\r
-\r
-    e. to transmit regularly to the Secretary-General for information purposes, subject to such limitation as security and constitutional considerations may require, statistical and other information of a technical nature relating to economic, social, and educational conditions in the territories for which they are respectively responsible other than those territories to which Chapters XII and XIII apply.\r
-\r
-Article 74\r
-\r
-Members of the United Nations also agree that their policy in respect of the territories to which this Chapter applies, no less than in respect of their metropolitan areas, must be based on the general principle of good-neighbourliness, due account being taken of the interests and well-being of the rest of the world, in social, economic, and commercial matters.\r
-\r
-Chapter XII - International Trusteeship System\r
-\r
-Article 75\r
-\r
-The United Nations shall establish under its authority an international trusteeship system for the administration and supervision of such territories as may be placed thereunder by subsequent individual agreements. These territories are hereinafter referred to as trust territories.\r
-\r
-Article 76\r
-\r
-The basic objectives of the trusteeship system, in accordance with the Purposes of the United Nations laid down in Article 1 of the present Charter, shall be:\r
-\r
-    a. to further international peace and security;\r
-\r
-    b. to promote the political, economic, social, and educational advancement of the inhabitants of the trust territories, and their progressive development towards self-government or independence as may be appropriate to the particular circumstances of each territory and its peoples and the freely expressed wishes of the peoples concerned, and as may be provided by the terms of each trusteeship agreement;\r
-\r
-    c. to encourage respect for human rights and for fundamental freedoms for all without distinction as to race, sex, language, or religion, and to encourage recognition of the interdependence of the peoples of the world; and\r
-\r
-    d. to ensure equal treatment in social, economic, and commercial matters for all Members of the United Nations and their nationals, and also equal treatment for the latter in the administration of justice, without prejudice to the attainment of the foregoing objectives and subject to the provisions of Article 80.\r
-\r
-Article 77\r
-\r
-1. The trusteeship system shall apply to such territories in the following categories as may be placed thereunder by means of trusteeship agreements:\r
-\r
-    a. territories now held under mandate;\r
-\r
-    b. territories which may be detached from enemy states as a result of the Second World War; and\r
-\r
-    c. territories voluntarily placed under the system by states responsiblefor their administration.\r
-\r
-2. It will be a matter for subsequent agreement as to which territories in the foregoing categories will be brought under the trusteeship system and upon what terms.\r
-\r
-Article 78\r
-\r
-The trusteeship system shall not apply to territories which have become Members of the United Nations, relationship among which shall be based on respect for the principle of sovereign equality.\r
-\r
-Article 79\r
-\r
-The terms of trusteeship for each territory to be placed under the trusteeship system, including any alteration or amendment, shall be agreed upon by the states directly concerned, including the mandatory power in the case of territories held under mandate by a Member of the United Nations, and shall be approved as provided for in Articles 83 and 85.\r
-\r
-Article 80\r
-\r
-1. Except as may be agreed upon in individual trusteeship agreements, made under Articles 77, 79, and 81, placing each territory under the trusteeship system, and until such agreements have been concluded, nothing in this Chapter shall be construed in or of itself to alter in any manner the rights whatsoever of any states or any peoples or the terms of existing international instruments to which Members of the United Nations may respectively be parties.\r
-\r
-2. Paragraph 1 of this Article shall not be interpreted as giving grounds for delay or postponement of the negotiation and conclusion of agreements for placing mandated and other territories under the trusteeship system as provided for in Article 77.\r
-\r
-Article 81\r
-\r
-The trusteeship agreement shall in each case include the terms under which the trust territory will be administered and designate the authority which will exercise the administration of the trust territory. Such authority, hereinafter called the administering authority, may be one or more states or the Organization itself.\r
-\r
-Article 82\r
-\r
-There may be designated, in any trusteeship agreement, a strategic area or areas which may include part or all of the trust territory to which the agreement applies, without prejudice to any special agreement or agreements made under Article 43.\r
-\r
-Article 83\r
-\r
-1. All functions of the United Nations relating to strategic areas, including the approval of the terms of the trusteeship agreements and of their alteration or amendment shall be exercised by the Security Council.\r
-\r
-2. The basic objectives set forth in Article 76 shall be applicable to the people of each strategic area.\r
-\r
-3. The Security Council shall, subject to the provisions of the trusteeship agreements and without prejudice to security considerations, avail itself of the assistance of the Trusteeship Council to perform those functions of the United Nations under the trusteeship system relating to political, economic, social, and educational matters in the strategic areas.\r
-\r
-Article 84\r
-\r
-It shall be the duty of the administering authority to ensure that the trust territory shall play its part in the maintenance of international peace and security. To this end the administering authority may make use of volunteer forces, facilities, and assistance from the trust territory in carrying out the obligations towards the Security Council undertaken in this regard by the administering authority, as well as for local defence and the maintenance of law and order within the trust territory.\r
-\r
-Article 85\r
-\r
-1. The functions of the United Nations with regard to trusteeship agreements for all areas not designated as strategic, including the approval of the terms of the trusteeship agreements and of their alteration or amendment, shall be exercised by the General Assembly.\r
-\r
-2. The Trusteeship Council, operating under the authority of the General Assembly shall assist the General Assembly in carrying out these functions.\r
-\r
-Chapter XIII - The Trusteeship Council\r
-\r
-Composition\r
-\r
-Article 86\r
-\r
-1. The Trusteeship Council shall consist of the following Members of the United Nations:\r
-\r
-    a. those Members administering trust territories;\r
-\r
-    b. such of those Members mentioned by name in Article 23 as are not administering trust territories; and\r
-\r
-    c. as many other Members elected for three-year terms by the General Assembly as may be necessary to ensure that the total number of members of the Trusteeship Council is equally divided between those Members of the United Nations which administer trust territories and those which do not.\r
-\r
-2. Each member of the Trusteeship Council shall designate one specially qualified person to represent it therein.\r
-\r
-Functions and Powers\r
-\r
-Article 87\r
-\r
-The General Assembly and, under its authority, the Trusteeship Council, in carrying out their functions, may:\r
-\r
-a. consider reports submitted by the administering authority;\r
-\r
-b. accept petitions and examine them in consultation with the administering authority;\r
-\r
-c. provide for periodic visits to the respective trust territories at times agreed upon with the administering authority; and\r
-\r
-d. take these and other actions in conformity with the terms of the trusteeship agreements.\r
-\r
-Article 88\r
-\r
-The Trusteeship Council shall formulate a questionnaire on the political, economic, social, and educational advancement of the inhabitants of each trust territory, and the administering authority for each trust territory within the competence of the General Assembly shall make an annual report to the General Assembly upon the basis of such questionnaire.\r
-\r
-Voting\r
-\r
-Article 89\r
-\r
-1. Each member of the Trusteeship Council shall have one vote.\r
-\r
-2. Decisions of the Trusteeship Council shall be made by a majority of the members present and voting.\r
-\r
-Procedure\r
-\r
-Article 90\r
-\r
-1. The Trusteeship Council shall adopt its own rules of procedure, including the method of selecting its President.\r
-\r
-2. The Trusteeship Council shall meet as required in accordance with its rules, which shall include provision for the convening of meetings on the request of a majority of its members.\r
-\r
-Article 91\r
-\r
-The Trusteeship Council shall, when appropriate, avail itself of the assistance of the Economic and Social Council and of the specialized agencies in regard to matters with which they are respectively concerned.\r
-\r
-Chapter XIV - The International Court of Justice\r
-\r
-Article 92\r
-\r
-The International Court of Justice shall be the principal judicial organ of the United Nations. It shall function in accordance with the annexed Statute, which is based upon the Statute of the Permanent Court of International Justice and forms an integral part of the present Charter.\r
-\r
-Article 93\r
-\r
-1. All Members of the United Nations are ipso facto parties to the Statute of the International Court of Justice.\r
-\r
-2. A state which is not a Member of the United Nations may become a party to the Statute of the International Court of Justice on conditions to be determined in each case by the General Assembly upon the recommendation of the Security Council.\r
-\r
-Article 94\r
-\r
-1. Each Member of the United Nations undertakes to comply with the decision of the International Court of Justice in any case to which it is a party.\r
-\r
-2. If any party to a case fails to perform the obligations incumbent upon it under a judgment rendered by the Court, the other party may have recourse to the Security Council, which may, if it deems necessary, make recommendations or decide upon measures to be taken to give effect to the judgment.\r
-\r
-Article 95\r
-\r
-Nothing in the present Charter shall prevent Members of the United Nations from entrusting the solution of their differences to other tribunals by virtue of agreements already in existence or which may be concluded in the future.\r
-\r
-Article 96\r
-\r
-1. The General Assembly or the Security Council may request the International Court of Justice to give an advisory opinion on any legal question.\r
-\r
-2. Other organs of the United Nations and specialized agencies, which may at any time be so authorized by the General Assembly, may also request advisory opinions of the Court on legal questions arising within the scope of their activities.\r
-\r
-Chapter XV - The Secretariat\r
-\r
-Article 97\r
-\r
-The Secretariat shall comprise a Secretary-General and such staff as the Organization may require. The Secretary-General shall be appointed by the General Assembly upon the recommendation of the Security Council. He shall be the chief administrative officer of the Organization.\r
-\r
-Article 98\r
-\r
-The Secretary-General shall act in that capacity in all meetings of the General Assembly, of the Security Council, of the Economic and Social Council, and of the Trusteeship Council, and shall perform such other functions as are entrusted to him by these organs. The Secretary-General shall make an annual report to the General Assembly on the work of the Organization.\r
-\r
-Article 99\r
-\r
-The Secretary-General may bring to the attention of the Security Council any matter which in his opinion may threaten the maintenance of international peace and security.\r
-\r
-Article 100\r
-\r
-1. In the performance of their duties the Secretary-General and the staff shall not seek or receive instructions from any government or from any other authority external to the Organization. They shall refrain from any action which might reflect on their position as international officials responsible only to the Organization.\r
-\r
-2. Each Member of the United Nations undertakes to respect the exclusively international character of the responsibilities of the Secretary-General and the staff and not to seek to influence them in the discharge of their responsibilities.\r
-\r
-Article 101\r
-\r
-1. The staff shall be appointed by the Secretary-General under regulations established by the General Assembly.\r
-\r
-2. Appropriate staffs shall be permanently assigned to the Economic and Social Council, the Trusteeship Council, and, as required, to other organs of the United Nations. These staffs shall form a part of the Secretariat.\r
-\r
-3. The paramount consideration in the employment of the staff and in the determination of the conditions of service shall be the necessity of securing the highest standards of efficiency, competence, and integrity. Due regard shall be paid to the importance of recruiting the staff on as wide a geographical basis as possible.\r
-\r
-Chapter XVI - Miscellaneous Provisions\r
-\r
-Article 102\r
-\r
-1. Every treaty and every international agreement entered into by any Member of the United Nations after the present Charter comes into force shall as soon as possible be registered with the Secretariat and published by it.\r
-\r
-2. No party to any such treaty or international agreement which has not been registered in accordance with the provisions of paragraph 1 of this Article may invoke that treaty or agreement before any organ of the United Nations.\r
-\r
-Article 103\r
-\r
-In the event of a conflict between the obligations of the Members of the United Nations under the present Charter and their obligations under any other international agreement, their obligations under the present Charter shall prevail.\r
-\r
-Article 104\r
-\r
-The Organization shall enjoy in the territory of each of its Members such legal capacity as may be necessary for the exercise of its functions and the fulfilment of its purposes.\r
-\r
-Article 105\r
-\r
-1. The Organization shall enjoy in the territory of each of its Members such privileges and immunities as are necessary for the fulfilment of its purposes.\r
-\r
-2. Representatives of the Members of the United Nations and officials of the Organization shall similarly enjoy such privileges and immunities as are necessary for the independent exercise of their functions in connexion with the Organization.\r
-\r
-3. The General Assembly may make recommendations with a view to determining the details of the application of paragraphs 1 and 2 of this Article or may propose conventions to the Members of the United Nations for this purpose.\r
-\r
-Chapter XVII - Transitional Security Arrangements\r
-\r
-Article 106\r
-\r
-Pending the coming into force of such special agreements referred to in Article 43 as in the opinion of the Security Council enable it to begin the exercise of its responsibilities under Article 42, the parties to the Four-Nation Declaration, signed at Moscow, 30 October 1943, and France, shall, in accordance with the provisions of paragraph 5 of that Declaration, consult with one another and as occasion requires with other Members of the United Nations with a view to such joint action on behalf of the Organization as may be necessary for the purpose of maintaining international peace and security.\r
-\r
-Article 107\r
-\r
-Nothing in the present Charter shall invalidate or preclude action, in relation to any state which during the Second World War has been an enemy of any signatory to the present Charter, taken or authorized as a result of that war by the Governments having responsibility for such action.\r
-\r
-Chapter XVIII - Amendments\r
-\r
-Article 108\r
-\r
-Amendments to the present Charter shall come into force for all Members of the United Nations when they have been adopted by a vote of two thirds of the members of the General Assembly and ratified in accordance with their respective constitutional processes by two thirds of the Members of the United Nations, including all the permanent members of the Security Council.\r
-\r
-Article 109\r
-\r
-1. A General Conference of the Members of the United Nations for the purpose of reviewing the present Charter may be held at a date and place to be fixed by a two-thirds vote of the members of the General Assembly and by a vote of any nine members of the Security Council. Each Member of the United Nations shall have one vote in the conference.\r
-\r
-2. Any alteration of the present Charter recommended by a two-thirds vote of the conference shall take effect when ratified in accordance with their respective constitutional processes by two thirds of the Members of the United Nations including all the permanent members of the Security Council.\r
-\r
-3. If such a conference has not been held before the tenth annual session of the General Assembly following the coming into force of the present Charter, the proposal to call such a conference shall be placed on the agenda of that session of the General Assembly, and the conference shall be held if so decided by a majority vote of the members of the General Assembly and by a vote of any seven members of the Security Council.\r
-\r
-Chapter XIX - Ratification and Signature\r
-\r
-Article 110\r
-\r
-1. The present Charter shall be ratified by the signatory states in accordance with their respective constitutional processes.\r
-\r
-2. The ratifications shall be deposited with the Government of the United States of America, which shall notify all the signatory states of each deposit as well as the Secretary-General of the Organization when he has been appointed.\r
-\r
-3. The present Charter shall come into force upon the deposit of ratifications by the Republic of China, France, the Union of Soviet Socialist Republics, the United Kingdom of Great Britain and Northern Ireland, and the United States of America, and by a majority of the other signatory states. A protocol of the ratifications deposited shall thereupon be drawn up by the Government of the United States of America which shall communicate copies thereof to all the signatory states.\r
-\r
-4. The states signatory to the present Charter which ratify it after it has come into force will become original Members of the United Nations on the date of the deposit of their respective ratifications.\r
-\r
-Article 111\r
-\r
-The present Charter, of which the Chinese, French, Russian, English, and Spanish texts are equally authentic, shall remain deposited in the archives of the Government of the United States of America. Duly certified copies thereof shall be transmitted by that Government to the Governments of the other signatory states.\r
-\r
-IN FAITH WHEREOF the representatives of the Governments of the United Nations have signed the present Charter.\r
-\r
-DONE at the city of San Francisco the twenty-sixth day of June, one thousand nine hundred and forty-five
\ No newline at end of file