Remove unused non-java files under ojluni/src/main/java.

The files that are meant to be included as resources are already
present in ojluni/src/resources/.

Change-Id: Icf5d9971daaec3dc2d02e92615ba3a7e92c59201
diff --git a/ojluni/src/main/java/java/lang/UNIXProcess.java.bsd b/ojluni/src/main/java/java/lang/UNIXProcess.java.bsd
deleted file mode 100755
index 4093908..0000000
--- a/ojluni/src/main/java/java/lang/UNIXProcess.java.bsd
+++ /dev/null
@@ -1,318 +0,0 @@
-/*
- * Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package java.lang;
-
-import java.io.BufferedInputStream;
-import java.io.BufferedOutputStream;
-import java.io.ByteArrayInputStream;
-import java.io.FileDescriptor;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.util.Arrays;
-import java.util.concurrent.Executors;
-import java.util.concurrent.Executor;
-import java.util.concurrent.ThreadFactory;
-import java.security.AccessController;
-import static java.security.AccessController.doPrivileged;
-import java.security.PrivilegedAction;
-import java.security.PrivilegedActionException;
-import java.security.PrivilegedExceptionAction;
-
-/**
- * java.lang.Process subclass in the UNIX environment.
- *
- * @author Mario Wolczko and Ross Knippel.
- * @author Konstantin Kladko (ported to Bsd)
- * @author Martin Buchholz
- */
-final class UNIXProcess extends Process {
-    private static final sun.misc.JavaIOFileDescriptorAccess fdAccess
-        = sun.misc.SharedSecrets.getJavaIOFileDescriptorAccess();
-
-    private final int pid;
-    private int exitcode;
-    private boolean hasExited;
-
-    private /* final */ OutputStream stdin;
-    private /* final */ InputStream  stdout;
-    private /* final */ InputStream  stderr;
-
-    /* this is for the reaping thread */
-    private native int waitForProcessExit(int pid);
-
-    /**
-     * Create a process using fork(2) and exec(2).
-     *
-     * @param fds an array of three file descriptors.
-     *        Indexes 0, 1, and 2 correspond to standard input,
-     *        standard output and standard error, respectively.  On
-     *        input, a value of -1 means to create a pipe to connect
-     *        child and parent processes.  On output, a value which
-     *        is not -1 is the parent pipe fd corresponding to the
-     *        pipe which has been created.  An element of this array
-     *        is -1 on input if and only if it is <em>not</em> -1 on
-     *        output.
-     * @return the pid of the subprocess
-     */
-    private native int forkAndExec(byte[] prog,
-                                   byte[] argBlock, int argc,
-                                   byte[] envBlock, int envc,
-                                   byte[] dir,
-                                   int[] fds,
-                                   boolean redirectErrorStream)
-        throws IOException;
-
-    /**
-     * The thread factory used to create "process reaper" daemon threads.
-     */
-    private static class ProcessReaperThreadFactory implements ThreadFactory {
-        private final static ThreadGroup group = getRootThreadGroup();
-
-        private static ThreadGroup getRootThreadGroup() {
-            return doPrivileged(new PrivilegedAction<ThreadGroup> () {
-                public ThreadGroup run() {
-                    ThreadGroup root = Thread.currentThread().getThreadGroup();
-                    while (root.getParent() != null)
-                        root = root.getParent();
-                    return root;
-                }});
-        }
-
-        public Thread newThread(Runnable grimReaper) {
-            // Our thread stack requirement is quite modest.
-            Thread t = new Thread(group, grimReaper, "process reaper", 32768);
-            t.setDaemon(true);
-            // A small attempt (probably futile) to avoid priority inversion
-            t.setPriority(Thread.MAX_PRIORITY);
-            return t;
-        }
-    }
-
-    /**
-     * The thread pool of "process reaper" daemon threads.
-     */
-    private static final Executor processReaperExecutor =
-        doPrivileged(new PrivilegedAction<Executor>() {
-            public Executor run() {
-                return Executors.newCachedThreadPool
-                    (new ProcessReaperThreadFactory());
-            }});
-
-    UNIXProcess(final byte[] prog,
-                final byte[] argBlock, final int argc,
-                final byte[] envBlock, final int envc,
-                final byte[] dir,
-                final int[] fds,
-                final boolean redirectErrorStream)
-            throws IOException {
-
-        pid = forkAndExec(prog,
-                          argBlock, argc,
-                          envBlock, envc,
-                          dir,
-                          fds,
-                          redirectErrorStream);
-
-        try {
-            doPrivileged(new PrivilegedExceptionAction<Void>() {
-                public Void run() throws IOException {
-                    initStreams(fds);
-                    return null;
-                }});
-        } catch (PrivilegedActionException ex) {
-            throw (IOException) ex.getException();
-        }
-    }
-
-    static FileDescriptor newFileDescriptor(int fd) {
-        FileDescriptor fileDescriptor = new FileDescriptor();
-        fdAccess.set(fileDescriptor, fd);
-        return fileDescriptor;
-    }
-
-    void initStreams(int[] fds) throws IOException {
-        stdin = (fds[0] == -1) ?
-            ProcessBuilder.NullOutputStream.INSTANCE :
-            new ProcessPipeOutputStream(fds[0]);
-
-        stdout = (fds[1] == -1) ?
-            ProcessBuilder.NullInputStream.INSTANCE :
-            new ProcessPipeInputStream(fds[1]);
-
-        stderr = (fds[2] == -1) ?
-            ProcessBuilder.NullInputStream.INSTANCE :
-            new ProcessPipeInputStream(fds[2]);
-
-        processReaperExecutor.execute(new Runnable() {
-            public void run() {
-                int exitcode = waitForProcessExit(pid);
-                UNIXProcess.this.processExited(exitcode);
-            }});
-    }
-
-    void processExited(int exitcode) {
-        synchronized (this) {
-            this.exitcode = exitcode;
-            hasExited = true;
-            notifyAll();
-        }
-
-        if (stdout instanceof ProcessPipeInputStream)
-            ((ProcessPipeInputStream) stdout).processExited();
-
-        if (stderr instanceof ProcessPipeInputStream)
-            ((ProcessPipeInputStream) stderr).processExited();
-
-        if (stdin instanceof ProcessPipeOutputStream)
-            ((ProcessPipeOutputStream) stdin).processExited();
-    }
-
-    public OutputStream getOutputStream() {
-        return stdin;
-    }
-
-    public InputStream getInputStream() {
-        return stdout;
-    }
-
-    public InputStream getErrorStream() {
-        return stderr;
-    }
-
-    public synchronized int waitFor() throws InterruptedException {
-        while (!hasExited) {
-            wait();
-        }
-        return exitcode;
-    }
-
-    public synchronized int exitValue() {
-        if (!hasExited) {
-            throw new IllegalThreadStateException("process hasn't exited");
-        }
-        return exitcode;
-    }
-
-    private static native void destroyProcess(int pid);
-    public void destroy() {
-        // There is a risk that pid will be recycled, causing us to
-        // kill the wrong process!  So we only terminate processes
-        // that appear to still be running.  Even with this check,
-        // there is an unavoidable race condition here, but the window
-        // is very small, and OSes try hard to not recycle pids too
-        // soon, so this is quite safe.
-        synchronized (this) {
-            if (!hasExited)
-                destroyProcess(pid);
-        }
-        try { stdin.close();  } catch (IOException ignored) {}
-        try { stdout.close(); } catch (IOException ignored) {}
-        try { stderr.close(); } catch (IOException ignored) {}
-    }
-
-    /* This routine initializes JNI field offsets for the class */
-    private static native void initIDs();
-
-    static {
-        initIDs();
-    }
-
-    /**
-     * A buffered input stream for a subprocess pipe file descriptor
-     * that allows the underlying file descriptor to be reclaimed when
-     * the process exits, via the processExited hook.
-     *
-     * This is tricky because we do not want the user-level InputStream to be
-     * closed until the user invokes close(), and we need to continue to be
-     * able to read any buffered data lingering in the OS pipe buffer.
-     */
-    static class ProcessPipeInputStream extends BufferedInputStream {
-        ProcessPipeInputStream(int fd) {
-            super(new FileInputStream(newFileDescriptor(fd)));
-        }
-
-        private static byte[] drainInputStream(InputStream in)
-                throws IOException {
-            if (in == null) return null;
-            int n = 0;
-            int j;
-            byte[] a = null;
-            while ((j = in.available()) > 0) {
-                a = (a == null) ? new byte[j] : Arrays.copyOf(a, n + j);
-                n += in.read(a, n, j);
-            }
-            return (a == null || n == a.length) ? a : Arrays.copyOf(a, n);
-        }
-
-        /** Called by the process reaper thread when the process exits. */
-        synchronized void processExited() {
-            // Most BufferedInputStream methods are synchronized, but close()
-            // is not, and so we have to handle concurrent racing close().
-            try {
-                InputStream in = this.in;
-                if (in != null) {
-                    byte[] stragglers = drainInputStream(in);
-                    in.close();
-                    this.in = (stragglers == null) ?
-                        ProcessBuilder.NullInputStream.INSTANCE :
-                        new ByteArrayInputStream(stragglers);
-                    if (buf == null) // asynchronous close()?
-                        this.in = null;
-                }
-            } catch (IOException ignored) {
-                // probably an asynchronous close().
-            }
-        }
-    }
-
-    /**
-     * A buffered output stream for a subprocess pipe file descriptor
-     * that allows the underlying file descriptor to be reclaimed when
-     * the process exits, via the processExited hook.
-     */
-    static class ProcessPipeOutputStream extends BufferedOutputStream {
-        ProcessPipeOutputStream(int fd) {
-            super(new FileOutputStream(newFileDescriptor(fd)));
-        }
-
-        /** Called by the process reaper thread when the process exits. */
-        synchronized void processExited() {
-            OutputStream out = this.out;
-            if (out != null) {
-                try {
-                    out.close();
-                } catch (IOException ignored) {
-                    // We know of no reason to get an IOException, but if
-                    // we do, there's nothing else to do but carry on.
-                }
-                this.out = ProcessBuilder.NullOutputStream.INSTANCE;
-            }
-        }
-    }
-}
diff --git a/ojluni/src/main/java/java/lang/UNIXProcess.java.linux b/ojluni/src/main/java/java/lang/UNIXProcess.java.linux
deleted file mode 100755
index 61676e0..0000000
--- a/ojluni/src/main/java/java/lang/UNIXProcess.java.linux
+++ /dev/null
@@ -1,318 +0,0 @@
-/*
- * Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package java.lang;
-
-import java.io.BufferedInputStream;
-import java.io.BufferedOutputStream;
-import java.io.ByteArrayInputStream;
-import java.io.FileDescriptor;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.util.Arrays;
-import java.util.concurrent.Executors;
-import java.util.concurrent.Executor;
-import java.util.concurrent.ThreadFactory;
-import java.security.AccessController;
-import static java.security.AccessController.doPrivileged;
-import java.security.PrivilegedAction;
-import java.security.PrivilegedActionException;
-import java.security.PrivilegedExceptionAction;
-
-/**
- * java.lang.Process subclass in the UNIX environment.
- *
- * @author Mario Wolczko and Ross Knippel.
- * @author Konstantin Kladko (ported to Linux)
- * @author Martin Buchholz
- */
-final class UNIXProcess extends Process {
-    private static final sun.misc.JavaIOFileDescriptorAccess fdAccess
-        = sun.misc.SharedSecrets.getJavaIOFileDescriptorAccess();
-
-    private final int pid;
-    private int exitcode;
-    private boolean hasExited;
-
-    private /* final */ OutputStream stdin;
-    private /* final */ InputStream  stdout;
-    private /* final */ InputStream  stderr;
-
-    /* this is for the reaping thread */
-    private native int waitForProcessExit(int pid);
-
-    /**
-     * Create a process using fork(2) and exec(2).
-     *
-     * @param fds an array of three file descriptors.
-     *        Indexes 0, 1, and 2 correspond to standard input,
-     *        standard output and standard error, respectively.  On
-     *        input, a value of -1 means to create a pipe to connect
-     *        child and parent processes.  On output, a value which
-     *        is not -1 is the parent pipe fd corresponding to the
-     *        pipe which has been created.  An element of this array
-     *        is -1 on input if and only if it is <em>not</em> -1 on
-     *        output.
-     * @return the pid of the subprocess
-     */
-    private native int forkAndExec(byte[] prog,
-                                   byte[] argBlock, int argc,
-                                   byte[] envBlock, int envc,
-                                   byte[] dir,
-                                   int[] fds,
-                                   boolean redirectErrorStream)
-        throws IOException;
-
-    /**
-     * The thread factory used to create "process reaper" daemon threads.
-     */
-    private static class ProcessReaperThreadFactory implements ThreadFactory {
-        private final static ThreadGroup group = getRootThreadGroup();
-
-        private static ThreadGroup getRootThreadGroup() {
-            return doPrivileged(new PrivilegedAction<ThreadGroup> () {
-                public ThreadGroup run() {
-                    ThreadGroup root = Thread.currentThread().getThreadGroup();
-                    while (root.getParent() != null)
-                        root = root.getParent();
-                    return root;
-                }});
-        }
-
-        public Thread newThread(Runnable grimReaper) {
-            // Our thread stack requirement is quite modest.
-            Thread t = new Thread(group, grimReaper, "process reaper", 32768);
-            t.setDaemon(true);
-            // A small attempt (probably futile) to avoid priority inversion
-            t.setPriority(Thread.MAX_PRIORITY);
-            return t;
-        }
-    }
-
-    /**
-     * The thread pool of "process reaper" daemon threads.
-     */
-    private static final Executor processReaperExecutor =
-        doPrivileged(new PrivilegedAction<Executor>() {
-            public Executor run() {
-                return Executors.newCachedThreadPool
-                    (new ProcessReaperThreadFactory());
-            }});
-
-    UNIXProcess(final byte[] prog,
-                final byte[] argBlock, final int argc,
-                final byte[] envBlock, final int envc,
-                final byte[] dir,
-                final int[] fds,
-                final boolean redirectErrorStream)
-            throws IOException {
-
-        pid = forkAndExec(prog,
-                          argBlock, argc,
-                          envBlock, envc,
-                          dir,
-                          fds,
-                          redirectErrorStream);
-
-        try {
-            doPrivileged(new PrivilegedExceptionAction<Void>() {
-                public Void run() throws IOException {
-                    initStreams(fds);
-                    return null;
-                }});
-        } catch (PrivilegedActionException ex) {
-            throw (IOException) ex.getException();
-        }
-    }
-
-    static FileDescriptor newFileDescriptor(int fd) {
-        FileDescriptor fileDescriptor = new FileDescriptor();
-        fdAccess.set(fileDescriptor, fd);
-        return fileDescriptor;
-    }
-
-    void initStreams(int[] fds) throws IOException {
-        stdin = (fds[0] == -1) ?
-            ProcessBuilder.NullOutputStream.INSTANCE :
-            new ProcessPipeOutputStream(fds[0]);
-
-        stdout = (fds[1] == -1) ?
-            ProcessBuilder.NullInputStream.INSTANCE :
-            new ProcessPipeInputStream(fds[1]);
-
-        stderr = (fds[2] == -1) ?
-            ProcessBuilder.NullInputStream.INSTANCE :
-            new ProcessPipeInputStream(fds[2]);
-
-        processReaperExecutor.execute(new Runnable() {
-            public void run() {
-                int exitcode = waitForProcessExit(pid);
-                UNIXProcess.this.processExited(exitcode);
-            }});
-    }
-
-    void processExited(int exitcode) {
-        synchronized (this) {
-            this.exitcode = exitcode;
-            hasExited = true;
-            notifyAll();
-        }
-
-        if (stdout instanceof ProcessPipeInputStream)
-            ((ProcessPipeInputStream) stdout).processExited();
-
-        if (stderr instanceof ProcessPipeInputStream)
-            ((ProcessPipeInputStream) stderr).processExited();
-
-        if (stdin instanceof ProcessPipeOutputStream)
-            ((ProcessPipeOutputStream) stdin).processExited();
-    }
-
-    public OutputStream getOutputStream() {
-        return stdin;
-    }
-
-    public InputStream getInputStream() {
-        return stdout;
-    }
-
-    public InputStream getErrorStream() {
-        return stderr;
-    }
-
-    public synchronized int waitFor() throws InterruptedException {
-        while (!hasExited) {
-            wait();
-        }
-        return exitcode;
-    }
-
-    public synchronized int exitValue() {
-        if (!hasExited) {
-            throw new IllegalThreadStateException("process hasn't exited");
-        }
-        return exitcode;
-    }
-
-    private static native void destroyProcess(int pid);
-    public void destroy() {
-        // There is a risk that pid will be recycled, causing us to
-        // kill the wrong process!  So we only terminate processes
-        // that appear to still be running.  Even with this check,
-        // there is an unavoidable race condition here, but the window
-        // is very small, and OSes try hard to not recycle pids too
-        // soon, so this is quite safe.
-        synchronized (this) {
-            if (!hasExited)
-                destroyProcess(pid);
-        }
-        try { stdin.close();  } catch (IOException ignored) {}
-        try { stdout.close(); } catch (IOException ignored) {}
-        try { stderr.close(); } catch (IOException ignored) {}
-    }
-
-    /* This routine initializes JNI field offsets for the class */
-    private static native void initIDs();
-
-    static {
-        initIDs();
-    }
-
-    /**
-     * A buffered input stream for a subprocess pipe file descriptor
-     * that allows the underlying file descriptor to be reclaimed when
-     * the process exits, via the processExited hook.
-     *
-     * This is tricky because we do not want the user-level InputStream to be
-     * closed until the user invokes close(), and we need to continue to be
-     * able to read any buffered data lingering in the OS pipe buffer.
-     */
-    static class ProcessPipeInputStream extends BufferedInputStream {
-        ProcessPipeInputStream(int fd) {
-            super(new FileInputStream(newFileDescriptor(fd)));
-        }
-
-        private static byte[] drainInputStream(InputStream in)
-                throws IOException {
-            if (in == null) return null;
-            int n = 0;
-            int j;
-            byte[] a = null;
-            while ((j = in.available()) > 0) {
-                a = (a == null) ? new byte[j] : Arrays.copyOf(a, n + j);
-                n += in.read(a, n, j);
-            }
-            return (a == null || n == a.length) ? a : Arrays.copyOf(a, n);
-        }
-
-        /** Called by the process reaper thread when the process exits. */
-        synchronized void processExited() {
-            // Most BufferedInputStream methods are synchronized, but close()
-            // is not, and so we have to handle concurrent racing close().
-            try {
-                InputStream in = this.in;
-                if (in != null) {
-                    byte[] stragglers = drainInputStream(in);
-                    in.close();
-                    this.in = (stragglers == null) ?
-                        ProcessBuilder.NullInputStream.INSTANCE :
-                        new ByteArrayInputStream(stragglers);
-                    if (buf == null) // asynchronous close()?
-                        this.in = null;
-                }
-            } catch (IOException ignored) {
-                // probably an asynchronous close().
-            }
-        }
-    }
-
-    /**
-     * A buffered output stream for a subprocess pipe file descriptor
-     * that allows the underlying file descriptor to be reclaimed when
-     * the process exits, via the processExited hook.
-     */
-    static class ProcessPipeOutputStream extends BufferedOutputStream {
-        ProcessPipeOutputStream(int fd) {
-            super(new FileOutputStream(newFileDescriptor(fd)));
-        }
-
-        /** Called by the process reaper thread when the process exits. */
-        synchronized void processExited() {
-            OutputStream out = this.out;
-            if (out != null) {
-                try {
-                    out.close();
-                } catch (IOException ignored) {
-                    // We know of no reason to get an IOException, but if
-                    // we do, there's nothing else to do but carry on.
-                }
-                this.out = ProcessBuilder.NullOutputStream.INSTANCE;
-            }
-        }
-    }
-}
diff --git a/ojluni/src/main/java/java/lang/UNIXProcess.java.solaris b/ojluni/src/main/java/java/lang/UNIXProcess.java.solaris
deleted file mode 100755
index 550ce7c..0000000
--- a/ojluni/src/main/java/java/lang/UNIXProcess.java.solaris
+++ /dev/null
@@ -1,303 +0,0 @@
-/*
- * Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package java.lang;
-
-import java.io.*;
-
-/* java.lang.Process subclass in the UNIX environment.
- *
- * @author Mario Wolczko and Ross Knippel.
- */
-
-final class UNIXProcess extends Process {
-    private static final sun.misc.JavaIOFileDescriptorAccess fdAccess
-        = sun.misc.SharedSecrets.getJavaIOFileDescriptorAccess();
-
-    private final int pid;
-    private int exitcode;
-    private boolean hasExited;
-
-    private OutputStream stdin_stream;
-    private InputStream stdout_stream;
-    private DeferredCloseInputStream stdout_inner_stream;
-    private InputStream stderr_stream;
-
-    /* this is for the reaping thread */
-    private native int waitForProcessExit(int pid);
-
-    /**
-     * Create a process using fork(2) and exec(2).
-     *
-     * @param std_fds array of file descriptors.  Indexes 0, 1, and
-     *        2 correspond to standard input, standard output and
-     *        standard error, respectively.  On input, a value of -1
-     *        means to create a pipe to connect child and parent
-     *        processes.  On output, a value which is not -1 is the
-     *        parent pipe fd corresponding to the pipe which has
-     *        been created.  An element of this array is -1 on input
-     *        if and only if it is <em>not</em> -1 on output.
-     * @return the pid of the subprocess
-     */
-    private native int forkAndExec(byte[] prog,
-                                   byte[] argBlock, int argc,
-                                   byte[] envBlock, int envc,
-                                   byte[] dir,
-                                   int[] std_fds,
-                                   boolean redirectErrorStream)
-        throws IOException;
-
-    UNIXProcess(final byte[] prog,
-                final byte[] argBlock, int argc,
-                final byte[] envBlock, int envc,
-                final byte[] dir,
-                final int[] std_fds,
-                final boolean redirectErrorStream)
-    throws IOException {
-        pid = forkAndExec(prog,
-                          argBlock, argc,
-                          envBlock, envc,
-                          dir,
-                          std_fds,
-                          redirectErrorStream);
-
-        java.security.AccessController.doPrivileged(
-        new java.security.PrivilegedAction<Void>() { public Void run() {
-            if (std_fds[0] == -1)
-                stdin_stream = ProcessBuilder.NullOutputStream.INSTANCE;
-            else {
-                FileDescriptor stdin_fd = new FileDescriptor();
-                fdAccess.set(stdin_fd, std_fds[0]);
-                stdin_stream = new BufferedOutputStream(
-                    new FileOutputStream(stdin_fd));
-            }
-
-            if (std_fds[1] == -1)
-                stdout_stream = ProcessBuilder.NullInputStream.INSTANCE;
-            else {
-                FileDescriptor stdout_fd = new FileDescriptor();
-                fdAccess.set(stdout_fd, std_fds[1]);
-                stdout_inner_stream = new DeferredCloseInputStream(stdout_fd);
-                stdout_stream = new BufferedInputStream(stdout_inner_stream);
-            }
-
-            if (std_fds[2] == -1)
-                stderr_stream = ProcessBuilder.NullInputStream.INSTANCE;
-            else {
-                FileDescriptor stderr_fd = new FileDescriptor();
-                fdAccess.set(stderr_fd, std_fds[2]);
-                stderr_stream = new DeferredCloseInputStream(stderr_fd);
-            }
-
-            return null; }});
-
-        /*
-         * For each subprocess forked a corresponding reaper thread
-         * is started.  That thread is the only thread which waits
-         * for the subprocess to terminate and it doesn't hold any
-         * locks while doing so.  This design allows waitFor() and
-         * exitStatus() to be safely executed in parallel (and they
-         * need no native code).
-         */
-
-        java.security.AccessController.doPrivileged(
-            new java.security.PrivilegedAction<Void>() { public Void run() {
-                Thread t = new Thread("process reaper") {
-                    public void run() {
-                        int res = waitForProcessExit(pid);
-                        synchronized (UNIXProcess.this) {
-                            hasExited = true;
-                            exitcode = res;
-                            UNIXProcess.this.notifyAll();
-                        }
-                    }
-                };
-                t.setDaemon(true);
-                t.start();
-                return null; }});
-    }
-
-    public OutputStream getOutputStream() {
-        return stdin_stream;
-    }
-
-    public InputStream getInputStream() {
-        return stdout_stream;
-    }
-
-    public InputStream getErrorStream() {
-        return stderr_stream;
-    }
-
-    public synchronized int waitFor() throws InterruptedException {
-        while (!hasExited) {
-            wait();
-        }
-        return exitcode;
-    }
-
-    public synchronized int exitValue() {
-        if (!hasExited) {
-            throw new IllegalThreadStateException("process hasn't exited");
-        }
-        return exitcode;
-    }
-
-    private static native void destroyProcess(int pid);
-    public synchronized void destroy() {
-        // There is a risk that pid will be recycled, causing us to
-        // kill the wrong process!  So we only terminate processes
-        // that appear to still be running.  Even with this check,
-        // there is an unavoidable race condition here, but the window
-        // is very small, and OSes try hard to not recycle pids too
-        // soon, so this is quite safe.
-        if (!hasExited)
-            destroyProcess(pid);
-        try {
-            stdin_stream.close();
-            if (stdout_inner_stream != null)
-                stdout_inner_stream.closeDeferred(stdout_stream);
-            if (stderr_stream instanceof DeferredCloseInputStream)
-                ((DeferredCloseInputStream) stderr_stream)
-                    .closeDeferred(stderr_stream);
-        } catch (IOException e) {
-            // ignore
-        }
-    }
-
-    // A FileInputStream that supports the deferment of the actual close
-    // operation until the last pending I/O operation on the stream has
-    // finished.  This is required on Solaris because we must close the stdin
-    // and stdout streams in the destroy method in order to reclaim the
-    // underlying file descriptors.  Doing so, however, causes any thread
-    // currently blocked in a read on one of those streams to receive an
-    // IOException("Bad file number"), which is incompatible with historical
-    // behavior.  By deferring the close we allow any pending reads to see -1
-    // (EOF) as they did before.
-    //
-    private static class DeferredCloseInputStream
-        extends FileInputStream
-    {
-
-        private DeferredCloseInputStream(FileDescriptor fd) {
-            super(fd);
-        }
-
-        private Object lock = new Object();     // For the following fields
-        private boolean closePending = false;
-        private int useCount = 0;
-        private InputStream streamToClose;
-
-        private void raise() {
-            synchronized (lock) {
-                useCount++;
-            }
-        }
-
-        private void lower() throws IOException {
-            synchronized (lock) {
-                useCount--;
-                if (useCount == 0 && closePending) {
-                    streamToClose.close();
-                }
-            }
-        }
-
-        // stc is the actual stream to be closed; it might be this object, or
-        // it might be an upstream object for which this object is downstream.
-        //
-        private void closeDeferred(InputStream stc) throws IOException {
-            synchronized (lock) {
-                if (useCount == 0) {
-                    stc.close();
-                } else {
-                    closePending = true;
-                    streamToClose = stc;
-                }
-            }
-        }
-
-        public void close() throws IOException {
-            synchronized (lock) {
-                useCount = 0;
-                closePending = false;
-            }
-            super.close();
-        }
-
-        public int read() throws IOException {
-            raise();
-            try {
-                return super.read();
-            } finally {
-                lower();
-            }
-        }
-
-        public int read(byte[] b) throws IOException {
-            raise();
-            try {
-                return super.read(b);
-            } finally {
-                lower();
-            }
-        }
-
-        public int read(byte[] b, int off, int len) throws IOException {
-            raise();
-            try {
-                return super.read(b, off, len);
-            } finally {
-                lower();
-            }
-        }
-
-        public long skip(long n) throws IOException {
-            raise();
-            try {
-                return super.skip(n);
-            } finally {
-                lower();
-            }
-        }
-
-        public int available() throws IOException {
-            raise();
-            try {
-                return super.available();
-            } finally {
-                lower();
-            }
-        }
-
-    }
-
-    /* This routine initializes JNI field offsets for the class */
-    private static native void initIDs();
-
-    static {
-        initIDs();
-    }
-}
diff --git a/ojluni/src/main/java/java/net/doc-files/net-properties.html b/ojluni/src/main/java/java/net/doc-files/net-properties.html
deleted file mode 100755
index 37cbc93..0000000
--- a/ojluni/src/main/java/java/net/doc-files/net-properties.html
+++ /dev/null
@@ -1,242 +0,0 @@
-<!--
- Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-
- This code is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License version 2 only, as
- published by the Free Software Foundation.  Oracle designates this
- particular file as subject to the "Classpath" exception as provided
- by Oracle in the LICENSE file that accompanied this code.
-
- This code is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- version 2 for more details (a copy is included in the LICENSE file that
- accompanied this code).
-
- You should have received a copy of the GNU General Public License version
- 2 along with this work; if not, write to the Free Software Foundation,
- Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-
- Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- or visit www.oracle.com if you need additional information or have any
- questions.
--->
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<HTML>
-<HEAD>
-	<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=iso-8859-1">
-	<TITLE>Networking Properties</TITLE>
-</HEAD>
-<BODY LANG="en-US" DIR="LTR">
-<H1 ALIGN=CENTER>Networking Properties</H1>
-<P ALIGN=LEFT>There are a few standard system properties used to
-alter the mechanisms and behavior of the various classes of the
-java.net package. Some are checked only once at startup of the VM,
-and therefore are best set using the -D option of the java command,
-while others have a more dynamic nature and can also be changed using
-the <a href="../../lang/System.html#setProperty(java.lang.String, java.lang.String)">System.setProperty()</a> API. The purpose of this document is to list
-and detail all of these properties.</P>
-<P>If there is no special note, a property value is checked every time it is used.</P>
-<a name="Ipv4IPv6"></a>
-<H2>IPv4 / IPv6</H2>
-<UL>
-	<LI><P><B>java.net.preferIPv4Stack</B> (default: false)<BR>
-	If IPv6 is available on the operating system the
-	underlying native socket will be, by default, an IPv6 socket which
-	lets applications connect to, and accept connections from, both
-	IPv4 and IPv6 hosts. However, in the case an application would
-	rather use IPv4 only sockets, then this property can be set to <B>true</B>.
-	The implication is that it will not be possible for the application
-	to communicate with IPv6 only hosts.</P>
-	<LI><P><B>java.net.preferIPv6Addresses</B> (default: false)<BR>
-	When dealing with a host which has both IPv4
-	and IPv6 addresses, and if IPv6 is available on the operating
-	system, the default behavior is to prefer using IPv4 addresses over
-	IPv6 ones. This is to ensure backward compatibility, for example
-	applications that depend on the representation of an IPv4 address
-	(e.g. 192.168.1.1). This property can be set to <B>true</B> to
-	change that preference and use IPv6 addresses over IPv4 ones where
-	possible.</P>
-</UL>
-<P>Both of these properties are checked only once, at startup.</P>
-<a name="Proxies"></a>
-<H2>Proxies</H2>
-<P>A proxy server allows indirect connection to network services and
-is used mainly for security (to get through firewalls) and
-performance reasons (proxies often do provide caching mechanisms).
-The following properties allow for configuration of the various type
-of proxies.</P>
-<UL>
-	<LI><P>HTTP</P>
-	<P>The following proxy settings are used by the HTTP protocol handler.</P>
-	<UL>
-		<LI><P><B>http.proxyHost</B> (default: &lt;none&gt;)<BR>
-	        The hostname, or address, of the proxy server 
-		</P>
-		<LI><P><B>http.proxyPort</B> (default: 80)<BR>
-	        The port number of the proxy server.</P>
-		<LI><P><B>http.nonProxyHosts</B> (default:  localhost|127.*|[::1])<BR>
-	        Indicates the hosts that should be accessed without going
-	        through the proxy. Typically this defines internal hosts.
-	        The value of this property is a list of hosts,
-		separated by the '|' character. In addition the wildcard
-	        character '*' can be used for pattern matching. For example
-		<code>-Dhttp.nonProxyHosts=&rdquo;*.foo.com|localhost&rdquo;</code>
-		will indicate that every hosts in the foo.com domain and the
-		localhost should be accessed directly even if a proxy server is
-		specified.</P>
-                <P>The default value excludes all common variations of the loopback address.</P>
-        </UL>
-	<LI><P>HTTPS<BR>This is HTTP over SSL, a secure version of HTTP
-	mainly used when confidentiality (like on payment sites) is needed.</P>
-	<P>The following proxy settings are used by the HTTPS protocol handler.</P>
-	<UL>
-		<LI><P><B>https.proxyHost</B>(default: &lt;none&gt;)<BR>
-	        The hostname, or address, of the proxy server 
-		</P>
-		<LI><P><B>https.proxyPort</B> (default: 443)<BR>
-	        The port number of the proxy server.</P>
-		<P>The HTTPS protocol handler will use the same nonProxyHosts
-		property as the HTTP protocol.</P>
-	</UL>
-	<LI><P>FTP</P>
-	<P>The following proxy settings are used by the FTP protocol handler.</P>
-	<UL>
-		<LI><P><B>ftp.proxyHost</B>(default: &lt;none&gt;)<BR>
-	        The hostname, or address, of the proxy server 
-		</P>
-		<LI><P><B>ftp.proxyPort</B> (default: 80)<BR>
-	        The port number of the proxy server.</P>
-		<LI><P><B>ftp.nonProxyHosts</B> (default: localhost|127.*|[::1])<BR>
-	        Indicates the hosts that should be accessed without going
-	        through the proxy. Typically this defines internal hosts.
-	        The value of this property is a list of hosts, separated by
-	        the '|' character. In addition the wildcard character
-		'*' can be used for pattern matching. For example
-		<code>-Dhttp.nonProxyHosts=&rdquo;*.foo.com|localhost&rdquo;</code>
-		will indicate that every hosts in the foo.com domain and the
-		localhost should be accessed directly even if a proxy server is
-		specified.</P>
-                <P>The default value excludes all common variations of the loopback address.</P>
-	</UL>
-	<LI><P>SOCKS<BR>This is another type of proxy. It allows for lower
-	level type of tunneling since it works at the TCP level. In effect,
-	in the Java(tm) platform setting a SOCKS proxy server will result in
-	all TCP connections to go through that proxy, unless other proxies
-	are specified. If SOCKS is supported by a Java SE implementation, the
-	following properties will be used:</P>
-	<UL>
-		<LI><P><B>socksProxyHost</B> (default: &lt;none&gt;)<BR>
-	        The hostname, or address, of the proxy server.</P>
-		<LI><P><B>socksProxyPort</B> (default: 1080)<BR>
-	        The port number of the proxy server.</P>
-                <LI><P><B>socksProxyVersion</B> (default: 5)<BR>
-                The version of the SOCKS protocol supported by the server. The
-                default is <code>5</code> indicating SOCKS V5, alternatively
-                <code>4</code> can be specified for SOCKS V4. Setting the property
-                to values other than these leads to unspecified behavior.</P>
-		<LI><P><B>java.net.socks.username</B> (default: &lt;none&gt;)<BR>
-	        Username to use if the SOCKSv5 server asks for authentication
-	        and no java.net.Authenticator instance was found.</P>
-		<LI><P><B>java.net.socks.password</B> (default: &lt;none&gt;)<BR>
-	        Password to use if the SOCKSv5 server asks for authentication
-	        and no java.net.Authenticator instance was found.</P>
-		<P>Note that if no authentication is provided with either the above
-		properties or an Authenticator, and the proxy requires one, then
-		the <B>user.name</B> property will be used with no password.</P>
-	</UL>
-	<LI><P><B>java.net.useSystemProxies</B> (default: false)<BR>
-	On recent Windows systems and on Gnome 2.x systems it is possible to
-	tell the java.net stack, setting this property to <B>true</B>, to use
-	the system proxy settings (both	these systems let you set proxies
-	globally through their user interface). Note that this property is
-	checked only once at startup.</P>
-</UL>
-<a name="MiscHTTP"></a>
-<H2>Misc HTTP properties</H2>
-<UL>
-	<LI><P><B>http.agent</B> (default: &ldquo;Java/&lt;version&gt;&rdquo;)<BR>
-	Defines the string sent in the User-Agent request header in http
-	requests. Note that the string &ldquo;Java/&lt;version&gt;&rdquo; will
-	be appended to the one provided in the property (e.g. if 
-	-Dhttp.agent=&rdquo;foobar&rdquo; is used, the User-Agent header will
-	contain &ldquo;foobar Java/1.5.0&rdquo; if the version of the VM is
-	1.5.0). This property is checked only once at startup.</P>
-	<LI><P><B>http.keepalive</B> (default: true)<BR>
-	Indicates if persistent connections should be supported. They improve
-	performance by allowing the underlying socket connection to be reused
-	for multiple http requests. If this is set to true then persistent
-	connections will be requested with HTTP 1.1 servers.</P>
-	<LI><P><B>http.maxConnections</B> (default: 5)<BR>
-	If HTTP keepalive is enabled (see above) this value determines the
-	maximum number of idle connections that will be simultaneously kept
-	alive, per destination.</P>
-	<LI><P><B>http.maxRedirects</B> (default: 20)<BR>
-	This integer value determines the maximum number, for a given request,
-	of HTTP redirects that will be automatically followed by the
-	protocol handler.</P>
-	<LI><P><B>http.auth.digest.validateServer</B> (default: false)</P>
-	<LI><P><B>http.auth.digest.validateProxy</B> (default: false)</P>
-	<LI><P><B>http.auth.digest.cnonceRepeat</B> (default: 5)</P>
-	<P>These 3 properties modify the behavior of the HTTP digest
-	authentication mechanism. Digest authentication provides a limited
-	ability for the server  to authenticate itself to the client (i.e.
-	By proving it knows the user's password). However not all HTTP
-	servers support this capability and by default it is turned off. The
-	first two properties can be set to true to enforce this check for
-	authentication with either an origin or proxy server, respectively.</P>
-	<P>It is usually not necessary to change the third property. It
-	determines how many times a cnonce value is re-used. This can be
-	useful when the MD5-sess algorithm is being used. Increasing this
-	value reduces the computational overhead on both client and server
-	by reducing the amount of material that has to be hashed for each
-	HTTP request.</P>
-	<LI><P><B>http.auth.ntlm.domain</B> (default: &lt;none&gt;)<BR>
-	NTLM is another authentication scheme. It uses the
-	java.net.Authenticator class to acquire usernames and passwords when
-	they are needed. However NTLM also needs the NT domain name. There are
-	3 options for specifying that domain:</P>
-	<OL>
-	  <LI><P>Do not specify it. In some environments the domain is
-	      actually not required and the application does not have to specify
-	      it.</P>
-	  <LI><P>The domain name can be encoded within the username by
-	      prefixing the domain name, followed by a back-slash '\' before the
-	      username. With this method existing applications that use the
-	      authenticator class do not need to be modified, as long as users
-	      are made aware that this notation must be used.</P>
-	  <LI><P>If a domain name is not specified as in method 2) and these
-	      property is defined, then its value will be used a the domain
-	      name.</P>
-	</OL>
-</UL>
-<P>All these properties are checked only once at startup.</P>
-<a name="AddressCache"></a>
-<H2>Address Cache</H2>
-<P>The java.net package, when doing name resolution, uses an address
-cache for both security and performance reasons. Any address
-resolution attempt, be it forward (name to IP address) or reverse (IP
-address to name), will have its result cached, whether it was
-successful or not, so that subsequent identical requests will not
-have to access the naming service. These properties allow for some
-tuning on how the cache is operating.</P>
-<UL>
-	<LI><P><B>networkaddress.cache.ttl</B> (default: see below)<BR>
-	Value is an integer corresponding to the number of seconds successful
-	name lookups will be kept in the cache. A value of -1, or any  other
-	negative value for that matter,	indicates a &ldquo;cache forever&rdquo;
-	policy, while a value of 0 (zero) means no caching. The default value
-	is -1 (forever) if a security manager is installed, and implementation
-	specific when no security manager is installed.</P>
-	<LI><P><B>networkaddress.cache.negative.ttl</B>	(default: 10)<BR>
-	Value is an integer corresponding to the number of seconds an
-	unsuccessful name lookup will be kept in the cache. A value of -1,
-	or any negative value, means &ldquo;cache forever&rdquo;, while a
-	value of 0 (zero) means no caching.</P>
-</UL>
-<P>Since these 2 properties are part of the security policy, they are
-not set by either the -D option or the System.setProperty() API,
-instead they are set in the JRE security policy file <code>lib/security/java.security</code>.</P>
-</BODY>
-</HTML>
diff --git a/ojluni/src/main/java/java/nio/channels/exceptions b/ojluni/src/main/java/java/nio/channels/exceptions
deleted file mode 100755
index 3f75fb3..0000000
--- a/ojluni/src/main/java/java/nio/channels/exceptions
+++ /dev/null
@@ -1,194 +0,0 @@
-#
-# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Generated exception classes for java.nio.channels
-
-SINCE=1.4
-PACKAGE=java.nio.channels
-# This year should only change if the generated source is modified.
-COPYRIGHT_YEARS="2000, 2007,"
-
-
-SUPER=java.io.IOException
-
-gen ClosedChannelException "
- * Checked exception thrown when an attempt is made to invoke or complete an
- * I/O operation upon channel that is closed, or at least closed to that
- * operation.  That this exception is thrown does not necessarily imply that
- * the channel is completely closed.  A socket channel whose write half has
- * been shut down, for example, may still be open for reading." \
- 882777185433553857L
-
-gen FileLockInterruptionException "
- * Checked exception received by a thread when another thread interrupts it
- * while it is waiting to acquire a file lock.  Before this exception is thrown
- * the interrupt status of the previously-blocked thread will have been set." \
- 7104080643653532383L
-
-
-SUPER=ClosedChannelException
-
-gen AsynchronousCloseException "
- * Checked exception received by a thread when another thread closes the
- * channel or the part of the channel upon which it is blocked in an I/O
- * operation." \
- 6891178312432313966L
-
-
-SUPER=AsynchronousCloseException
-
-gen ClosedByInterruptException "
- * Checked exception received by a thread when another thread interrupts it
- * while it is blocked in an I/O operation upon a channel.  Before this
- * exception is thrown the channel will have been closed and the interrupt
- * status of the previously-blocked thread will have been set." \
- -4488191543534286750L
-
-
-SUPER=IllegalArgumentException
-
-gen IllegalSelectorException "
- * Unchecked exception thrown when an attempt is made to register a channel
- * with a selector that was not created by the provider that created the
- * channel." \
- -8406323347253320987L
-
-gen UnresolvedAddressException "
- * Unchecked exception thrown when an attempt is made to invoke a network
- * operation upon an unresolved socket address." \
- 6136959093620794148L
-
-gen UnsupportedAddressTypeException "
- * Unchecked exception thrown when an attempt is made to bind or connect
- * to a socket address of a type that is not supported." \
- -2964323842829700493L
-
-
-SUPER=IllegalStateException
-
-gen AlreadyConnectedException "
- * Unchecked exception thrown when an attempt is made to connect a {@link
- * SocketChannel} that is already connected." \
- -7331895245053773357L
-
-gen ConnectionPendingException "
- * Unchecked exception thrown when an attempt is made to connect a {@link
- * SocketChannel} for which a non-blocking connection operation is already in
- * progress." \
- 2008393366501760879L
-
-gen ClosedSelectorException "
- * Unchecked exception thrown when an attempt is made to invoke an I/O
- * operation upon a closed selector." \
- 6466297122317847835L
-
-gen CancelledKeyException "
- * Unchecked exception thrown when an attempt is made to use
- * a selection key that is no longer valid." \
- -8438032138028814268L
-
-gen IllegalBlockingModeException "
- * Unchecked exception thrown when a blocking-mode-specific operation
- * is invoked upon a channel in the incorrect blocking mode." \
- -3335774961855590474L
-
-gen NoConnectionPendingException "
- * Unchecked exception thrown when the {@link SocketChannel#finishConnect
- * finishConnect} method of a {@link SocketChannel} is invoked without first
- * successfully invoking its {@link SocketChannel#connect connect} method." \
- -8296561183633134743L
-
-gen NonReadableChannelException "
- * Unchecked exception thrown when an attempt is made to read
- * from a channel that was not originally opened for reading." \
- -3200915679294993514L
-
-gen NonWritableChannelException "
- * Unchecked exception thrown when an attempt is made to write
- * to a channel that was not originally opened for writing." \
- -7071230488279011621L
-
-gen NotYetBoundException "
- * Unchecked exception thrown when an attempt is made to invoke an I/O
- * operation upon a server socket channel that is not yet bound." \
- 4640999303950202242L
-
-gen NotYetConnectedException "
- * Unchecked exception thrown when an attempt is made to invoke an I/O
- * operation upon a socket channel that is not yet connected." \
- 4697316551909513464L
-
-gen OverlappingFileLockException "
- * Unchecked exception thrown when an attempt is made to acquire a lock on a
- * region of a file that overlaps a region already locked by the same Java
- * virtual machine, or when another thread is already waiting to lock an
- * overlapping region of the same file." \
- 2047812138163068433L
-
-
-SINCE=1.7
-
-SUPER=java.io.IOException
-
-gen InterruptedByTimeoutException "
- * Checked exception received by a thread when a timeout elapses before an
- * asynchronous operation completes." \
- -4268008601014042947L
-
-SUPER=IllegalArgumentException
-
-gen IllegalChannelGroupException "
- * Unchecked exception thrown when an attempt is made to open a channel
- * in a group that was not created by the same provider. " \
- -2495041211157744253L
-
-
-SUPER=IllegalStateException
-
-gen AlreadyBoundException "
- * Unchecked exception thrown when an attempt is made to bind the socket a
- * network oriented channel that is already bound." \
- 6796072983322737592L
-
-gen AcceptPendingException "
- * Unchecked exception thrown when an attempt is made to initiate an accept
- * operation on a channel and a previous accept operation has not completed." \
- 2721339977965416421L
-
-gen ReadPendingException "
- * Unchecked exception thrown when an attempt is made to read from an
- * asynchronous socket channel and a previous read has not completed." \
- 1986315242191227217L
-
-gen WritePendingException "
- * Unchecked exception thrown when an attempt is made to write to an
- * asynchronous socket channel and a previous write has not completed." \
- 7031871839266032276L
-
-gen ShutdownChannelGroupException "
- * Unchecked exception thrown when an attempt is made to construct a channel in 
- * a group that is shutdown or the completion handler for an I/O operation 
- * cannot be invoked because the channel group has terminated." \
- -3903801676350154157L
diff --git a/ojluni/src/main/java/java/nio/charset/Charset-X-Coder.java.template b/ojluni/src/main/java/java/nio/charset/Charset-X-Coder.java.template
deleted file mode 100755
index 5b6ecfa..0000000
--- a/ojluni/src/main/java/java/nio/charset/Charset-X-Coder.java.template
+++ /dev/null
@@ -1,972 +0,0 @@
-/*
- * Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#warn This file is preprocessed before being compiled
-
-package java.nio.charset;
-
-import java.nio.Buffer;
-import java.nio.ByteBuffer;
-import java.nio.CharBuffer;
-import java.nio.BufferOverflowException;
-import java.nio.BufferUnderflowException;
-import java.lang.ref.WeakReference;
-import java.nio.charset.CoderMalfunctionError;                  // javadoc
-
-
-/**
- * An engine that can transform a sequence of $itypesPhrase$ into a sequence of
- * $otypesPhrase$.
- *
- * <a name="steps">
- *
- * <p> The input $itype$ sequence is provided in a $itype$ buffer or a series
- * of such buffers.  The output $otype$ sequence is written to a $otype$ buffer
- * or a series of such buffers.  $A$ $coder$ should always be used by making
- * the following sequence of method invocations, hereinafter referred to as $a$
- * <i>$coding$ operation</i>:
- *
- * <ol>
- *
- *   <li><p> Reset the $coder$ via the {@link #reset reset} method, unless it
- *   has not been used before; </p></li>
- *
- *   <li><p> Invoke the {@link #$code$ $code$} method zero or more times, as
- *   long as additional input may be available, passing <tt>false</tt> for the
- *   <tt>endOfInput</tt> argument and filling the input buffer and flushing the
- *   output buffer between invocations; </p></li>
- *
- *   <li><p> Invoke the {@link #$code$ $code$} method one final time, passing
- *   <tt>true</tt> for the <tt>endOfInput</tt> argument; and then </p></li>
- *
- *   <li><p> Invoke the {@link #flush flush} method so that the $coder$ can
- *   flush any internal state to the output buffer. </p></li>
- *
- * </ol>
- *
- * Each invocation of the {@link #$code$ $code$} method will $code$ as many
- * $itype$s as possible from the input buffer, writing the resulting $otype$s
- * to the output buffer.  The {@link #$code$ $code$} method returns when more
- * input is required, when there is not enough room in the output buffer, or
- * when $a$ $coding$ error has occurred.  In each case a {@link CoderResult}
- * object is returned to describe the reason for termination.  An invoker can
- * examine this object and fill the input buffer, flush the output buffer, or
- * attempt to recover from $a$ $coding$ error, as appropriate, and try again.
- *
- * <a name="ce">
- *
- * <p> There are two general types of $coding$ errors.  If the input $itype$
- * sequence is $notLegal$ then the input is considered <i>malformed</i>.  If
- * the input $itype$ sequence is legal but cannot be mapped to a valid
- * $outSequence$ then an <i>unmappable character</i> has been encountered.
- *
- * <a name="cae">
- *
- * <p> How $a$ $coding$ error is handled depends upon the action requested for
- * that type of error, which is described by an instance of the {@link
- * CodingErrorAction} class.  The possible error actions are to {@link
- * CodingErrorAction#IGNORE </code>ignore<code>} the erroneous input, {@link
- * CodingErrorAction#REPORT </code>report<code>} the error to the invoker via
- * the returned {@link CoderResult} object, or {@link CodingErrorAction#REPLACE
- * </code>replace<code>} the erroneous input with the current value of the
- * replacement $replTypeName$.  The replacement
- *
-#if[encoder]
- * is initially set to the $coder$'s default replacement, which often
- * (but not always) has the initial value&nbsp;$defaultReplName$;
-#end[encoder]
-#if[decoder]
- * has the initial value $defaultReplName$;
-#end[decoder]
- *
- * its value may be changed via the {@link #replaceWith($replFQType$)
- * replaceWith} method.
- *
- * <p> The default action for malformed-input and unmappable-character errors
- * is to {@link CodingErrorAction#REPORT </code>report<code>} them.  The
- * malformed-input error action may be changed via the {@link
- * #onMalformedInput(CodingErrorAction) onMalformedInput} method; the
- * unmappable-character action may be changed via the {@link
- * #onUnmappableCharacter(CodingErrorAction) onUnmappableCharacter} method.
- *
- * <p> This class is designed to handle many of the details of the $coding$
- * process, including the implementation of error actions.  $A$ $coder$ for a
- * specific charset, which is a concrete subclass of this class, need only
- * implement the abstract {@link #$code$Loop $code$Loop} method, which
- * encapsulates the basic $coding$ loop.  A subclass that maintains internal
- * state should, additionally, override the {@link #implFlush implFlush} and
- * {@link #implReset implReset} methods.
- *
- * <p> Instances of this class are not safe for use by multiple concurrent
- * threads.  </p>
- *
- *
- * @author Mark Reinhold
- * @author JSR-51 Expert Group
- * @since 1.4
- *
- * @see ByteBuffer
- * @see CharBuffer
- * @see Charset
- * @see Charset$OtherCoder$
- */
-
-public abstract class Charset$Coder$ {
-
-    private final Charset charset;
-    private final float average$ItypesPerOtype$;
-    private final float max$ItypesPerOtype$;
-
-    private $replType$ replacement;
-    private CodingErrorAction malformedInputAction
-        = CodingErrorAction.REPORT;
-    private CodingErrorAction unmappableCharacterAction
-        = CodingErrorAction.REPORT;
-
-    // Internal states
-    //
-    private static final int ST_RESET   = 0;
-    private static final int ST_CODING  = 1;
-    private static final int ST_END     = 2;
-    private static final int ST_FLUSHED = 3;
-
-    private int state = ST_RESET;
-
-    private static String stateNames[]
-        = { "RESET", "CODING", "CODING_END", "FLUSHED" };
-
-
-    /**
-     * Initializes a new $coder$.  The new $coder$ will have the given
-     * $otypes-per-itype$ and replacement values. </p>
-     *
-     * @param  average$ItypesPerOtype$
-     *         A positive float value indicating the expected number of
-     *         $otype$s that will be produced for each input $itype$
-     *
-     * @param  max$ItypesPerOtype$
-     *         A positive float value indicating the maximum number of
-     *         $otype$s that will be produced for each input $itype$
-     *
-     * @param  replacement
-     *         The initial replacement; must not be <tt>null</tt>, must have
-     *         non-zero length, must not be longer than max$ItypesPerOtype$,
-     *         and must be {@link #isLegalReplacement </code>legal<code>}
-     *
-     * @throws  IllegalArgumentException
-     *          If the preconditions on the parameters do not hold
-     */
-    {#if[encoder]?protected:private}
-    Charset$Coder$(Charset cs,
-                   float average$ItypesPerOtype$,
-                   float max$ItypesPerOtype$,
-                   $replType$ replacement)
-    {
-        this.charset = cs;
-        if (average$ItypesPerOtype$ <= 0.0f)
-            throw new IllegalArgumentException("Non-positive "
-                                               + "average$ItypesPerOtype$");
-        if (max$ItypesPerOtype$ <= 0.0f)
-            throw new IllegalArgumentException("Non-positive "
-                                               + "max$ItypesPerOtype$");
-        if (!Charset.atBugLevel("1.4")) {
-            if (average$ItypesPerOtype$ > max$ItypesPerOtype$)
-                throw new IllegalArgumentException("average$ItypesPerOtype$"
-                                                   + " exceeds "
-                                                   + "max$ItypesPerOtype$");
-        }
-        this.replacement = replacement;
-        this.average$ItypesPerOtype$ = average$ItypesPerOtype$;
-        this.max$ItypesPerOtype$ = max$ItypesPerOtype$;
-        replaceWith(replacement);
-    }
-
-    /**
-     * Initializes a new $coder$.  The new $coder$ will have the given
-     * $otypes-per-itype$ values and its replacement will be the
-     * $replTypeName$ $defaultReplName$. </p>
-     *
-     * @param  average$ItypesPerOtype$
-     *         A positive float value indicating the expected number of
-     *         $otype$s that will be produced for each input $itype$
-     *
-     * @param  max$ItypesPerOtype$
-     *         A positive float value indicating the maximum number of
-     *         $otype$s that will be produced for each input $itype$
-     *
-     * @throws  IllegalArgumentException
-     *          If the preconditions on the parameters do not hold
-     */
-    protected Charset$Coder$(Charset cs,
-                             float average$ItypesPerOtype$,
-                             float max$ItypesPerOtype$)
-    {
-        this(cs,
-             average$ItypesPerOtype$, max$ItypesPerOtype$,
-             $defaultRepl$);
-    }
-
-    /**
-     * Returns the charset that created this $coder$.  </p>
-     *
-     * @return  This $coder$'s charset
-     */
-    public final Charset charset() {
-        return charset;
-    }
-
-    /**
-     * Returns this $coder$'s replacement value. </p>
-     *
-     * @return  This $coder$'s current replacement,
-     *          which is never <tt>null</tt> and is never empty
-     */
-    public final $replType$ replacement() {
-        return replacement;
-    }
-
-    /**
-     * Changes this $coder$'s replacement value.
-     *
-     * <p> This method invokes the {@link #implReplaceWith implReplaceWith}
-     * method, passing the new replacement, after checking that the new
-     * replacement is acceptable.  </p>
-     *
-     * @param  newReplacement
-     *
-#if[decoder]
-     *         The new replacement; must not be <tt>null</tt>
-     *         and must have non-zero length
-#end[decoder]
-#if[encoder]
-     *         The new replacement; must not be <tt>null</tt>, must have
-     *         non-zero length, must not be longer than the value returned by
-     *         the {@link #max$ItypesPerOtype$() max$ItypesPerOtype$} method, and
-     *         must be {@link #isLegalReplacement </code>legal<code>}
-#end[encoder]
-     *
-     * @return  This $coder$
-     *
-     * @throws  IllegalArgumentException
-     *          If the preconditions on the parameter do not hold
-     */
-    public final Charset$Coder$ replaceWith($replType$ newReplacement) {
-        if (newReplacement == null)
-            throw new IllegalArgumentException("Null replacement");
-        int len = newReplacement.$replLength$;
-        if (len == 0)
-            throw new IllegalArgumentException("Empty replacement");
-        if (len > max$ItypesPerOtype$)
-            throw new IllegalArgumentException("Replacement too long");
-#if[encoder]
-        if (!isLegalReplacement(newReplacement))
-            throw new IllegalArgumentException("Illegal replacement");
-#end[encoder]
-        this.replacement = newReplacement;
-        implReplaceWith(newReplacement);
-        return this;
-    }
-
-    /**
-     * Reports a change to this $coder$'s replacement value.
-     *
-     * <p> The default implementation of this method does nothing.  This method
-     * should be overridden by $coder$s that require notification of changes to
-     * the replacement.  </p>
-     *
-     * @param  newReplacement
-     */
-    protected void implReplaceWith($replType$ newReplacement) {
-    }
-
-#if[encoder]
-
-    private WeakReference<CharsetDecoder> cachedDecoder = null;
-
-    /**
-     * Tells whether or not the given byte array is a legal replacement value
-     * for this encoder.
-     *
-     * <p> A replacement is legal if, and only if, it is a legal sequence of
-     * bytes in this encoder's charset; that is, it must be possible to decode
-     * the replacement into one or more sixteen-bit Unicode characters.
-     *
-     * <p> The default implementation of this method is not very efficient; it
-     * should generally be overridden to improve performance.  </p>
-     *
-     * @param  repl  The byte array to be tested
-     *
-     * @return  <tt>true</tt> if, and only if, the given byte array
-     *          is a legal replacement value for this encoder
-     */
-    public boolean isLegalReplacement(byte[] repl) {
-        WeakReference<CharsetDecoder> wr = cachedDecoder;
-        CharsetDecoder dec = null;
-        if ((wr == null) || ((dec = wr.get()) == null)) {
-            dec = charset().newDecoder();
-            dec.onMalformedInput(CodingErrorAction.REPORT);
-            dec.onUnmappableCharacter(CodingErrorAction.REPORT);
-            cachedDecoder = new WeakReference<CharsetDecoder>(dec);
-        } else {
-            dec.reset();
-        }
-        ByteBuffer bb = ByteBuffer.wrap(repl);
-        CharBuffer cb = CharBuffer.allocate((int)(bb.remaining()
-                                                  * dec.maxCharsPerByte()));
-        CoderResult cr = dec.decode(bb, cb, true);
-        return !cr.isError();
-    }
-
-#end[encoder]
-
-    /**
-     * Returns this $coder$'s current action for malformed-input errors.  </p>
-     *
-     * @return The current malformed-input action, which is never <tt>null</tt>
-     */
-    public CodingErrorAction malformedInputAction() {
-        return malformedInputAction;
-    }
-
-    /**
-     * Changes this $coder$'s action for malformed-input errors.  </p>
-     *
-     * <p> This method invokes the {@link #implOnMalformedInput
-     * implOnMalformedInput} method, passing the new action.  </p>
-     *
-     * @param  newAction  The new action; must not be <tt>null</tt>
-     *
-     * @return  This $coder$
-     *
-     * @throws IllegalArgumentException
-     *         If the precondition on the parameter does not hold
-     */
-    public final Charset$Coder$ onMalformedInput(CodingErrorAction newAction) {
-        if (newAction == null)
-            throw new IllegalArgumentException("Null action");
-        malformedInputAction = newAction;
-        implOnMalformedInput(newAction);
-        return this;
-    }
-
-    /**
-     * Reports a change to this $coder$'s malformed-input action.
-     *
-     * <p> The default implementation of this method does nothing.  This method
-     * should be overridden by $coder$s that require notification of changes to
-     * the malformed-input action.  </p>
-     */
-    protected void implOnMalformedInput(CodingErrorAction newAction) { }
-
-    /**
-     * Returns this $coder$'s current action for unmappable-character errors.
-     * </p>
-     *
-     * @return The current unmappable-character action, which is never
-     *         <tt>null</tt>
-     */
-    public CodingErrorAction unmappableCharacterAction() {
-        return unmappableCharacterAction;
-    }
-
-    /**
-     * Changes this $coder$'s action for unmappable-character errors.
-     *
-     * <p> This method invokes the {@link #implOnUnmappableCharacter
-     * implOnUnmappableCharacter} method, passing the new action.  </p>
-     *
-     * @param  newAction  The new action; must not be <tt>null</tt>
-     *
-     * @return  This $coder$
-     *
-     * @throws IllegalArgumentException
-     *         If the precondition on the parameter does not hold
-     */
-    public final Charset$Coder$ onUnmappableCharacter(CodingErrorAction
-                                                      newAction)
-    {
-        if (newAction == null)
-            throw new IllegalArgumentException("Null action");
-        unmappableCharacterAction = newAction;
-        implOnUnmappableCharacter(newAction);
-        return this;
-    }
-
-    /**
-     * Reports a change to this $coder$'s unmappable-character action.
-     *
-     * <p> The default implementation of this method does nothing.  This method
-     * should be overridden by $coder$s that require notification of changes to
-     * the unmappable-character action.  </p>
-     */
-    protected void implOnUnmappableCharacter(CodingErrorAction newAction) { }
-
-    /**
-     * Returns the average number of $otype$s that will be produced for each
-     * $itype$ of input.  This heuristic value may be used to estimate the size
-     * of the output buffer required for a given input sequence. </p>
-     *
-     * @return  The average number of $otype$s produced
-     *          per $itype$ of input
-     */
-    public final float average$ItypesPerOtype$() {
-        return average$ItypesPerOtype$;
-    }
-
-    /**
-     * Returns the maximum number of $otype$s that will be produced for each
-     * $itype$ of input.  This value may be used to compute the worst-case size
-     * of the output buffer required for a given input sequence. </p>
-     *
-     * @return  The maximum number of $otype$s that will be produced per
-     *          $itype$ of input
-     */
-    public final float max$ItypesPerOtype$() {
-        return max$ItypesPerOtype$;
-    }
-
-    /**
-     * $Code$s as many $itype$s as possible from the given input buffer,
-     * writing the results to the given output buffer.
-     *
-     * <p> The buffers are read from, and written to, starting at their current
-     * positions.  At most {@link Buffer#remaining in.remaining()} $itype$s
-     * will be read and at most {@link Buffer#remaining out.remaining()}
-     * $otype$s will be written.  The buffers' positions will be advanced to
-     * reflect the $itype$s read and the $otype$s written, but their marks and
-     * limits will not be modified.
-     *
-     * <p> In addition to reading $itype$s from the input buffer and writing
-     * $otype$s to the output buffer, this method returns a {@link CoderResult}
-     * object to describe its reason for termination:
-     *
-     * <ul>
-     *
-     *   <li><p> {@link CoderResult#UNDERFLOW} indicates that as much of the
-     *   input buffer as possible has been $code$d.  If there is no further
-     *   input then the invoker can proceed to the next step of the
-     *   <a href="#steps">$coding$ operation</a>.  Otherwise this method
-     *   should be invoked again with further input.  </p></li>
-     *
-     *   <li><p> {@link CoderResult#OVERFLOW} indicates that there is
-     *   insufficient space in the output buffer to $code$ any more $itype$s.
-     *   This method should be invoked again with an output buffer that has
-     *   more {@linkplain Buffer#remaining remaining} $otype$s. This is
-     *   typically done by draining any $code$d $otype$s from the output
-     *   buffer.  </p></li>
-     *
-     *   <li><p> A {@link CoderResult#malformedForLength
-     *   </code>malformed-input<code>} result indicates that a malformed-input
-     *   error has been detected.  The malformed $itype$s begin at the input
-     *   buffer's (possibly incremented) position; the number of malformed
-     *   $itype$s may be determined by invoking the result object's {@link
-     *   CoderResult#length() length} method.  This case applies only if the
-     *   {@link #onMalformedInput </code>malformed action<code>} of this $coder$
-     *   is {@link CodingErrorAction#REPORT}; otherwise the malformed input
-     *   will be ignored or replaced, as requested.  </p></li>
-     *
-     *   <li><p> An {@link CoderResult#unmappableForLength
-     *   </code>unmappable-character<code>} result indicates that an
-     *   unmappable-character error has been detected.  The $itype$s that
-     *   $code$ the unmappable character begin at the input buffer's (possibly
-     *   incremented) position; the number of such $itype$s may be determined
-     *   by invoking the result object's {@link CoderResult#length() length}
-     *   method.  This case applies only if the {@link #onUnmappableCharacter
-     *   </code>unmappable action<code>} of this $coder$ is {@link
-     *   CodingErrorAction#REPORT}; otherwise the unmappable character will be
-     *   ignored or replaced, as requested.  </p></li>
-     *
-     * </ul>
-     *
-     * In any case, if this method is to be reinvoked in the same $coding$
-     * operation then care should be taken to preserve any $itype$s remaining
-     * in the input buffer so that they are available to the next invocation.
-     *
-     * <p> The <tt>endOfInput</tt> parameter advises this method as to whether
-     * the invoker can provide further input beyond that contained in the given
-     * input buffer.  If there is a possibility of providing additional input
-     * then the invoker should pass <tt>false</tt> for this parameter; if there
-     * is no possibility of providing further input then the invoker should
-     * pass <tt>true</tt>.  It is not erroneous, and in fact it is quite
-     * common, to pass <tt>false</tt> in one invocation and later discover that
-     * no further input was actually available.  It is critical, however, that
-     * the final invocation of this method in a sequence of invocations always
-     * pass <tt>true</tt> so that any remaining un$code$d input will be treated
-     * as being malformed.
-     *
-     * <p> This method works by invoking the {@link #$code$Loop $code$Loop}
-     * method, interpreting its results, handling error conditions, and
-     * reinvoking it as necessary.  </p>
-     *
-     *
-     * @param  in
-     *         The input $itype$ buffer
-     *
-     * @param  out
-     *         The output $otype$ buffer
-     *
-     * @param  endOfInput
-     *         <tt>true</tt> if, and only if, the invoker can provide no
-     *         additional input $itype$s beyond those in the given buffer
-     *
-     * @return  A coder-result object describing the reason for termination
-     *
-     * @throws  IllegalStateException
-     *          If $a$ $coding$ operation is already in progress and the previous
-     *          step was an invocation neither of the {@link #reset reset}
-     *          method, nor of this method with a value of <tt>false</tt> for
-     *          the <tt>endOfInput</tt> parameter, nor of this method with a
-     *          value of <tt>true</tt> for the <tt>endOfInput</tt> parameter
-     *          but a return value indicating an incomplete $coding$ operation
-     *
-     * @throws  CoderMalfunctionError
-     *          If an invocation of the $code$Loop method threw
-     *          an unexpected exception
-     */
-    public final CoderResult $code$($Itype$Buffer in, $Otype$Buffer out,
-                                    boolean endOfInput)
-    {
-        int newState = endOfInput ? ST_END : ST_CODING;
-        if ((state != ST_RESET) && (state != ST_CODING)
-            && !(endOfInput && (state == ST_END)))
-            throwIllegalStateException(state, newState);
-        state = newState;
-
-        for (;;) {
-
-            CoderResult cr;
-            try {
-                cr = $code$Loop(in, out);
-            } catch (BufferUnderflowException x) {
-                throw new CoderMalfunctionError(x);
-            } catch (BufferOverflowException x) {
-                throw new CoderMalfunctionError(x);
-            }
-
-            if (cr.isOverflow())
-                return cr;
-
-            if (cr.isUnderflow()) {
-                if (endOfInput && in.hasRemaining()) {
-                    cr = CoderResult.malformedForLength(in.remaining());
-                    // Fall through to malformed-input case
-                } else {
-                    return cr;
-                }
-            }
-
-            CodingErrorAction action = null;
-            if (cr.isMalformed())
-                action = malformedInputAction;
-            else if (cr.isUnmappable())
-                action = unmappableCharacterAction;
-            else
-                assert false : cr.toString();
-
-            if (action == CodingErrorAction.REPORT)
-                return cr;
-
-            if (action == CodingErrorAction.REPLACE) {
-                if (out.remaining() < replacement.$replLength$)
-                    return CoderResult.OVERFLOW;
-                out.put(replacement);
-            }
-
-            if ((action == CodingErrorAction.IGNORE)
-                || (action == CodingErrorAction.REPLACE)) {
-                // Skip erroneous input either way
-                in.position(in.position() + cr.length());
-                continue;
-            }
-
-            assert false;
-        }
-
-    }
-
-    /**
-     * Flushes this $coder$.
-     *
-     * <p> Some $coder$s maintain internal state and may need to write some
-     * final $otype$s to the output buffer once the overall input sequence has
-     * been read.
-     *
-     * <p> Any additional output is written to the output buffer beginning at
-     * its current position.  At most {@link Buffer#remaining out.remaining()}
-     * $otype$s will be written.  The buffer's position will be advanced
-     * appropriately, but its mark and limit will not be modified.
-     *
-     * <p> If this method completes successfully then it returns {@link
-     * CoderResult#UNDERFLOW}.  If there is insufficient room in the output
-     * buffer then it returns {@link CoderResult#OVERFLOW}.  If this happens
-     * then this method must be invoked again, with an output buffer that has
-     * more room, in order to complete the current <a href="#steps">$coding$
-     * operation</a>.
-     *
-     * <p> If this $coder$ has already been flushed then invoking this method
-     * has no effect.
-     *
-     * <p> This method invokes the {@link #implFlush implFlush} method to
-     * perform the actual flushing operation.  </p>
-     *
-     * @param  out
-     *         The output $otype$ buffer
-     *
-     * @return  A coder-result object, either {@link CoderResult#UNDERFLOW} or
-     *          {@link CoderResult#OVERFLOW}
-     *
-     * @throws  IllegalStateException
-     *          If the previous step of the current $coding$ operation was an
-     *          invocation neither of the {@link #flush flush} method nor of
-     *          the three-argument {@link
-     *          #$code$($Itype$Buffer,$Otype$Buffer,boolean) $code$} method
-     *          with a value of <tt>true</tt> for the <tt>endOfInput</tt>
-     *          parameter
-     */
-    public final CoderResult flush($Otype$Buffer out) {
-        if (state == ST_END) {
-            CoderResult cr = implFlush(out);
-            if (cr.isUnderflow())
-                state = ST_FLUSHED;
-            return cr;
-        }
-
-        if (state != ST_FLUSHED)
-            throwIllegalStateException(state, ST_FLUSHED);
-
-        return CoderResult.UNDERFLOW; // Already flushed
-    }
-
-    /**
-     * Flushes this $coder$.
-     *
-     * <p> The default implementation of this method does nothing, and always
-     * returns {@link CoderResult#UNDERFLOW}.  This method should be overridden
-     * by $coder$s that may need to write final $otype$s to the output buffer
-     * once the entire input sequence has been read. </p>
-     *
-     * @param  out
-     *         The output $otype$ buffer
-     *
-     * @return  A coder-result object, either {@link CoderResult#UNDERFLOW} or
-     *          {@link CoderResult#OVERFLOW}
-     */
-    protected CoderResult implFlush($Otype$Buffer out) {
-        return CoderResult.UNDERFLOW;
-    }
-
-    /**
-     * Resets this $coder$, clearing any internal state.
-     *
-     * <p> This method resets charset-independent state and also invokes the
-     * {@link #implReset() implReset} method in order to perform any
-     * charset-specific reset actions.  </p>
-     *
-     * @return  This $coder$
-     *
-     */
-    public final Charset$Coder$ reset() {
-        implReset();
-        state = ST_RESET;
-        return this;
-    }
-
-    /**
-     * Resets this $coder$, clearing any charset-specific internal state.
-     *
-     * <p> The default implementation of this method does nothing.  This method
-     * should be overridden by $coder$s that maintain internal state.  </p>
-     */
-    protected void implReset() { }
-
-    /**
-     * $Code$s one or more $itype$s into one or more $otype$s.
-     *
-     * <p> This method encapsulates the basic $coding$ loop, $coding$ as many
-     * $itype$s as possible until it either runs out of input, runs out of room
-     * in the output buffer, or encounters $a$ $coding$ error.  This method is
-     * invoked by the {@link #$code$ $code$} method, which handles result
-     * interpretation and error recovery.
-     *
-     * <p> The buffers are read from, and written to, starting at their current
-     * positions.  At most {@link Buffer#remaining in.remaining()} $itype$s
-     * will be read, and at most {@link Buffer#remaining out.remaining()}
-     * $otype$s will be written.  The buffers' positions will be advanced to
-     * reflect the $itype$s read and the $otype$s written, but their marks and
-     * limits will not be modified.
-     *
-     * <p> This method returns a {@link CoderResult} object to describe its
-     * reason for termination, in the same manner as the {@link #$code$ $code$}
-     * method.  Most implementations of this method will handle $coding$ errors
-     * by returning an appropriate result object for interpretation by the
-     * {@link #$code$ $code$} method.  An optimized implementation may instead
-     * examine the relevant error action and implement that action itself.
-     *
-     * <p> An implementation of this method may perform arbitrary lookahead by
-     * returning {@link CoderResult#UNDERFLOW} until it receives sufficient
-     * input.  </p>
-     *
-     * @param  in
-     *         The input $itype$ buffer
-     *
-     * @param  out
-     *         The output $otype$ buffer
-     *
-     * @return  A coder-result object describing the reason for termination
-     */
-    protected abstract CoderResult $code$Loop($Itype$Buffer in,
-                                              $Otype$Buffer out);
-
-    /**
-     * Convenience method that $code$s the remaining content of a single input
-     * $itype$ buffer into a newly-allocated $otype$ buffer.
-     *
-     * <p> This method implements an entire <a href="#steps">$coding$
-     * operation</a>; that is, it resets this $coder$, then it $code$s the
-     * $itype$s in the given $itype$ buffer, and finally it flushes this
-     * $coder$.  This method should therefore not be invoked if $a$ $coding$
-     * operation is already in progress.  </p>
-     *
-     * @param  in
-     *         The input $itype$ buffer
-     *
-     * @return A newly-allocated $otype$ buffer containing the result of the
-     *         $coding$ operation.  The buffer's position will be zero and its
-     *         limit will follow the last $otype$ written.
-     *
-     * @throws  IllegalStateException
-     *          If $a$ $coding$ operation is already in progress
-     *
-     * @throws  MalformedInputException
-     *          If the $itype$ sequence starting at the input buffer's current
-     *          position is $notLegal$ and the current malformed-input action
-     *          is {@link CodingErrorAction#REPORT}
-     *
-     * @throws  UnmappableCharacterException
-     *          If the $itype$ sequence starting at the input buffer's current
-     *          position cannot be mapped to an equivalent $otype$ sequence and
-     *          the current unmappable-character action is {@link
-     *          CodingErrorAction#REPORT}
-     */
-    public final $Otype$Buffer $code$($Itype$Buffer in)
-        throws CharacterCodingException
-    {
-        int n = (int)(in.remaining() * average$ItypesPerOtype$());
-        $Otype$Buffer out = $Otype$Buffer.allocate(n);
-
-        if ((n == 0) && (in.remaining() == 0))
-            return out;
-        reset();
-        for (;;) {
-            CoderResult cr = in.hasRemaining() ?
-                $code$(in, out, true) : CoderResult.UNDERFLOW;
-            if (cr.isUnderflow())
-                cr = flush(out);
-
-            if (cr.isUnderflow())
-                break;
-            if (cr.isOverflow()) {
-                n = 2*n + 1;    // Ensure progress; n might be 0!
-                $Otype$Buffer o = $Otype$Buffer.allocate(n);
-                out.flip();
-                o.put(out);
-                out = o;
-                continue;
-            }
-            cr.throwException();
-        }
-        out.flip();
-        return out;
-    }
-
-#if[decoder]
-
-    /**
-     * Tells whether or not this decoder implements an auto-detecting charset.
-     *
-     * <p> The default implementation of this method always returns
-     * <tt>false</tt>; it should be overridden by auto-detecting decoders to
-     * return <tt>true</tt>.  </p>
-     *
-     * @return  <tt>true</tt> if, and only if, this decoder implements an
-     *          auto-detecting charset
-     */
-    public boolean isAutoDetecting() {
-        return false;
-    }
-
-    /**
-     * Tells whether or not this decoder has yet detected a
-     * charset&nbsp;&nbsp;<i>(optional operation)</i>.
-     *
-     * <p> If this decoder implements an auto-detecting charset then at a
-     * single point during a decoding operation this method may start returning
-     * <tt>true</tt> to indicate that a specific charset has been detected in
-     * the input byte sequence.  Once this occurs, the {@link #detectedCharset
-     * detectedCharset} method may be invoked to retrieve the detected charset.
-     *
-     * <p> That this method returns <tt>false</tt> does not imply that no bytes
-     * have yet been decoded.  Some auto-detecting decoders are capable of
-     * decoding some, or even all, of an input byte sequence without fixing on
-     * a particular charset.
-     *
-     * <p> The default implementation of this method always throws an {@link
-     * UnsupportedOperationException}; it should be overridden by
-     * auto-detecting decoders to return <tt>true</tt> once the input charset
-     * has been determined.  </p>
-     *
-     * @return  <tt>true</tt> if, and only if, this decoder has detected a
-     *          specific charset
-     *
-     * @throws  UnsupportedOperationException
-     *          If this decoder does not implement an auto-detecting charset
-     */
-    public boolean isCharsetDetected() {
-        throw new UnsupportedOperationException();
-    }
-
-    /**
-     * Retrieves the charset that was detected by this
-     * decoder&nbsp;&nbsp;<i>(optional operation)</i>.
-     *
-     * <p> If this decoder implements an auto-detecting charset then this
-     * method returns the actual charset once it has been detected.  After that
-     * point, this method returns the same value for the duration of the
-     * current decoding operation.  If not enough input bytes have yet been
-     * read to determine the actual charset then this method throws an {@link
-     * IllegalStateException}.
-     *
-     * <p> The default implementation of this method always throws an {@link
-     * UnsupportedOperationException}; it should be overridden by
-     * auto-detecting decoders to return the appropriate value.  </p>
-     *
-     * @return  The charset detected by this auto-detecting decoder,
-     *          or <tt>null</tt> if the charset has not yet been determined
-     *
-     * @throws  IllegalStateException
-     *          If insufficient bytes have been read to determine a charset
-     *
-     * @throws  UnsupportedOperationException
-     *          If this decoder does not implement an auto-detecting charset
-     */
-    public Charset detectedCharset() {
-        throw new UnsupportedOperationException();
-    }
-
-#end[decoder]
-
-#if[encoder]
-
-    private boolean canEncode(CharBuffer cb) {
-        if (state == ST_FLUSHED)
-            reset();
-        else if (state != ST_RESET)
-            throwIllegalStateException(state, ST_CODING);
-        CodingErrorAction ma = malformedInputAction();
-        CodingErrorAction ua = unmappableCharacterAction();
-        try {
-            onMalformedInput(CodingErrorAction.REPORT);
-            onUnmappableCharacter(CodingErrorAction.REPORT);
-            encode(cb);
-        } catch (CharacterCodingException x) {
-            return false;
-        } finally {
-            onMalformedInput(ma);
-            onUnmappableCharacter(ua);
-            reset();
-        }
-        return true;
-    }
-
-    /**
-     * Tells whether or not this encoder can encode the given character.
-     *
-     * <p> This method returns <tt>false</tt> if the given character is a
-     * surrogate character; such characters can be interpreted only when they
-     * are members of a pair consisting of a high surrogate followed by a low
-     * surrogate.  The {@link #canEncode(java.lang.CharSequence)
-     * canEncode(CharSequence)} method may be used to test whether or not a
-     * character sequence can be encoded.
-     *
-     * <p> This method may modify this encoder's state; it should therefore not
-     * be invoked if an <a href="#steps">encoding operation</a> is already in
-     * progress.
-     *
-     * <p> The default implementation of this method is not very efficient; it
-     * should generally be overridden to improve performance.  </p>
-     *
-     * @return  <tt>true</tt> if, and only if, this encoder can encode
-     *          the given character
-     *
-     * @throws  IllegalStateException
-     *          If $a$ $coding$ operation is already in progress
-     */
-    public boolean canEncode(char c) {
-        CharBuffer cb = CharBuffer.allocate(1);
-        cb.put(c);
-        cb.flip();
-        return canEncode(cb);
-    }
-
-    /**
-     * Tells whether or not this encoder can encode the given character
-     * sequence.
-     *
-     * <p> If this method returns <tt>false</tt> for a particular character
-     * sequence then more information about why the sequence cannot be encoded
-     * may be obtained by performing a full <a href="#steps">encoding
-     * operation</a>.
-     *
-     * <p> This method may modify this encoder's state; it should therefore not
-     * be invoked if an encoding operation is already in progress.
-     *
-     * <p> The default implementation of this method is not very efficient; it
-     * should generally be overridden to improve performance.  </p>
-     *
-     * @return  <tt>true</tt> if, and only if, this encoder can encode
-     *          the given character without throwing any exceptions and without
-     *          performing any replacements
-     *
-     * @throws  IllegalStateException
-     *          If $a$ $coding$ operation is already in progress
-     */
-    public boolean canEncode(CharSequence cs) {
-        CharBuffer cb;
-        if (cs instanceof CharBuffer)
-            cb = ((CharBuffer)cs).duplicate();
-        else
-            cb = CharBuffer.wrap(cs.toString());
-        return canEncode(cb);
-    }
-
-#end[encoder]
-
-
-    private void throwIllegalStateException(int from, int to) {
-        throw new IllegalStateException("Current state = " + stateNames[from]
-                                        + ", new state = " + stateNames[to]);
-    }
-
-}
diff --git a/ojluni/src/main/java/java/nio/charset/exceptions b/ojluni/src/main/java/java/nio/charset/exceptions
deleted file mode 100755
index 22dfa3c..0000000
--- a/ojluni/src/main/java/java/nio/charset/exceptions
+++ /dev/null
@@ -1,53 +0,0 @@
-#
-# Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Generated exception classes for java.nio.charset
-
-SINCE=1.4
-PACKAGE=java.nio.charset
-# This year should only change if the generated source is modified.
-COPYRIGHT_YEARS="2000, 2007,"
-
-SUPER=java.io.IOException
-
-gen CharacterCodingException "
- * Checked exception thrown when a character encoding
- * or decoding error occurs." \
- 8421532232154627783L
-
-
-SUPER=IllegalArgumentException
-
-gen IllegalCharsetNameException "
- * Unchecked exception thrown when a string that is not a
- * <a href="Charset.html#names">legal charset name</a> is used as such." \
- 1457525358470002989L \
- String charsetName CharsetName "illegal charset name"
-
-gen UnsupportedCharsetException "
- * Unchecked exception thrown when no support is available
- * for a requested charset." \
- 1490765524727386367L \
- String charsetName CharsetName "name of the unsupported charset"
diff --git a/ojluni/src/main/java/java/util/CurrencyData.properties b/ojluni/src/main/java/java/util/CurrencyData.properties
deleted file mode 100755
index 5cfc139..0000000
--- a/ojluni/src/main/java/java/util/CurrencyData.properties
+++ /dev/null
@@ -1,592 +0,0 @@
-#
-# Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-formatVersion=1
-
-# Version of the currency code information in this class.
-# It is a serial number that accompanies with each amendment, such as 
-# 'MAxxx.doc'
-
-dataVersion=151
-
-# List of all valid ISO 4217 currency codes.
-# To ensure compatibility, do not remove codes.
-
-all=ADP020-AED784-AFA004-AFN971-ALL008-AMD051-ANG532-AOA973-ARS032-ATS040-AUD036-\
-    AWG533-AYM945-AZM031-AZN944-BAM977-BBD052-BDT050-BEF056-BGL100-BGN975-BHD048-BIF108-\
-    BMD060-BND096-BOB068-BOV984-BRL986-BSD044-BTN064-BWP072-BYB112-BYR974-\
-    BZD084-CAD124-CDF976-CHF756-CLF990-CLP152-CNY156-COP170-CRC188-CSD891-CUP192-CUC931-\
-    CVE132-CYP196-CZK203-DEM276-DJF262-DKK208-DOP214-DZD012-EEK233-EGP818-\
-    ERN232-ESP724-ETB230-EUR978-FIM246-FJD242-FKP238-FRF250-GBP826-GEL981-\
-    GHC288-GHS936-GIP292-GMD270-GNF324-GRD300-GTQ320-GWP624-GYD328-HKD344-HNL340-\
-    HRK191-HTG332-HUF348-IDR360-IEP372-ILS376-INR356-IQD368-IRR364-ISK352-\
-    ITL380-JMD388-JOD400-JPY392-KES404-KGS417-KHR116-KMF174-KPW408-KRW410-\
-    KWD414-KYD136-KZT398-LAK418-LBP422-LKR144-LRD430-LSL426-LTL440-LUF442-\
-    LVL428-LYD434-MAD504-MDL498-MGA969-MGF450-MKD807-MMK104-MNT496-MOP446-MRO478-\
-    MTL470-MUR480-MVR462-MWK454-MXN484-MXV979-MYR458-MZM508-MZN943-NAD516-NGN566-\
-    NIO558-NLG528-NOK578-NPR524-NZD554-OMR512-PAB590-PEN604-PGK598-PHP608-\
-    PKR586-PLN985-PTE620-PYG600-QAR634-ROL946-RON946-RSD941-RUB643-RUR810-RWF646-SAR682-\
-    SBD090-SCR690-SDD736-SDG938-SEK752-SGD702-SHP654-SIT705-SKK703-SLL694-SOS706-\
-    SRD968-SRG740-STD678-SVC222-SYP760-SZL748-THB764-TJS972-TMM795-TMT934-TND788-TOP776-\
-    TPE626-TRL792-TRY949-TTD780-TWD901-TZS834-UAH980-UGX800-USD840-USN997-USS998-\
-    UYU858-UZS860-VEB862-VEF937-VND704-VUV548-WST882-XAF950-XAG961-XAU959-XBA955-\
-    XBB956-XBC957-XBD958-XCD951-XDR960-XFO000-XFU000-XOF952-XPD964-XPF953-\
-    XPT962-XSU994-XTS963-XUA965-XXX999-YER886-YUM891-ZAR710-ZMK894-ZWD716-ZWL932-ZWN942-ZWR935
-
-
-# Mappings from ISO 3166 country codes to ISO 4217 currency codes.
-#
-# Three forms are used:
-# Form 1: <country code>=<currency code>
-# Form 2: <country code>=<currency code 1>;<time stamp>;<currency code 2>
-# Form 3: <country code>=
-# Form 1 is used if no future change in currency is known.
-# Form 2 indicates that before the specified time currency 1 is used, from
-# the specified time currency 2. The time is given in SimpleDateFormat's
-# yyyy-MM-dd-HH-mm-ss format in the GMT time zone.
-# Form 3 indicates the country doesn't have a currency (the entry is still
-# needed to verify that the country code is valid).
-#
-# The table is based on the following web sites:
-# http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/db_en.html
-# http://www.bsi-global.com/iso4217currency
-# http://www.cia.gov/cia/publications/factbook/indexgeo.html
-
-# AFGHANISTAN
-AF=AFN
-# \u00c5LAND ISLANDS
-AX=EUR
-# ALBANIA
-AL=ALL
-# ALGERIA
-DZ=DZD
-# AMERICAN SAMOA
-AS=USD
-# ANDORRA
-AD=EUR
-# ANGOLA
-AO=AOA
-# ANGUILLA
-AI=XCD
-# ANTARCTICA
-AQ=
-# ANTIGUA AND BARBUDA
-AG=XCD
-# ARGENTINA
-AR=ARS
-# ARMENIA
-AM=AMD
-# ARUBA
-AW=AWG
-# AUSTRALIA
-AU=AUD
-# AUSTRIA
-AT=EUR
-# AZERBAIJAN
-AZ=AZM;2005-12-31-20-00-00;AZN
-# BAHAMAS
-BS=BSD
-# BAHRAIN
-BH=BHD
-# BANGLADESH
-BD=BDT
-# BARBADOS
-BB=BBD
-# BELARUS
-BY=BYR
-# BELGIUM
-BE=EUR
-# BELIZE
-BZ=BZD
-# BENIN
-BJ=XOF
-# BERMUDA
-BM=BMD
-# Bonaire, Sint Eustatius and Saba
-BQ=USD
-# BHUTAN
-BT=BTN
-# BOLIVIA
-BO=BOB
-# BOSNIA AND HERZEGOVINA
-BA=BAM
-# BOTSWANA
-BW=BWP
-# BOUVET ISLAND
-BV=NOK
-# BRAZIL
-BR=BRL
-# BRITISH INDIAN OCEAN TERRITORY
-IO=USD
-# BRUNEI DARUSSALAM
-BN=BND
-# BULGARIA
-BG=BGN
-# BURKINA FASO
-BF=XOF
-# BURUNDI
-BI=BIF
-# CAMBODIA
-KH=KHR
-# CAMEROON
-CM=XAF
-# CANADA
-CA=CAD
-# CAPE VERDE
-CV=CVE
-# CAYMAN ISLANDS
-KY=KYD
-# CENTRAL AFRICAN REPUBLIC
-CF=XAF
-# CHAD
-TD=XAF
-# CHILE
-CL=CLP
-# CHINA
-CN=CNY
-# CHRISTMAS ISLAND
-CX=AUD
-# COCOS (KEELING) ISLANDS
-CC=AUD
-# COLOMBIA
-CO=COP
-# COMOROS
-KM=KMF
-# CONGO
-CG=XAF
-# CONGO, THE DEMOCRATIC REPUBLIC OF THE
-CD=CDF
-# COOK ISLANDS
-CK=NZD
-# COSTA RICA
-CR=CRC
-# COTE D'IVOIRE
-CI=XOF
-# CROATIA
-HR=HRK
-# CUBA
-CU=CUP
-# Cura\u00e7ao
-CW=ANG
-# CYPRUS
-CY=EUR
-# CZECH REPUBLIC
-CZ=CZK
-# DENMARK
-DK=DKK
-# DJIBOUTI
-DJ=DJF
-# DOMINICA
-DM=XCD
-# DOMINICAN REPUBLIC
-DO=DOP
-# ECUADOR
-EC=USD
-# EGYPT
-EG=EGP
-# EL SALVADOR
-# USD is also legal currency as of 2001/01/01
-SV=SVC
-# EQUATORIAL GUINEA
-GQ=XAF
-# ERITREA
-ER=ERN
-# ESTONIA
-EE=EUR
-# ETHIOPIA
-ET=ETB
-# FALKLAND ISLANDS (MALVINAS)
-FK=FKP
-# FAROE ISLANDS
-FO=DKK
-# FIJI
-FJ=FJD
-# FINLAND
-FI=EUR
-# FRANCE
-FR=EUR
-# FRENCH GUIANA
-GF=EUR
-# FRENCH POLYNESIA
-PF=XPF
-# FRENCH SOUTHERN TERRITORIES
-TF=EUR
-# GABON
-GA=XAF
-# GAMBIA
-GM=GMD
-# GEORGIA
-GE=GEL
-# GERMANY
-DE=EUR
-# GHANA
-GH=GHS
-# GIBRALTAR
-GI=GIP
-# GREECE
-GR=EUR
-# GREENLAND
-GL=DKK
-# GRENADA
-GD=XCD
-# GUADELOUPE
-GP=EUR
-# GUAM
-GU=USD
-# GUATEMALA
-GT=GTQ
-# GUERNSEY
-GG=GBP
-# GUINEA
-GN=GNF
-# GUINEA-BISSAU
-GW=XOF
-# GUYANA
-GY=GYD
-# HAITI
-HT=HTG
-# HEARD ISLAND AND MCDONALD ISLANDS
-HM=AUD
-# HOLY SEE (VATICAN CITY STATE)
-VA=EUR
-# HONDURAS
-HN=HNL
-# HONG KONG
-HK=HKD
-# HUNGARY
-HU=HUF
-# ICELAND
-IS=ISK
-# INDIA
-IN=INR
-# INDONESIA
-ID=IDR
-# IRAN, ISLAMIC REPUBLIC OF
-IR=IRR
-# IRAQ
-IQ=IQD
-# IRELAND
-IE=EUR
-# ISLE OF MAN
-IM=GBP
-# ISRAEL
-IL=ILS
-# ITALY
-IT=EUR
-# JAMAICA
-JM=JMD
-# JAPAN
-JP=JPY
-# JERSEY
-JE=GBP
-# JORDAN
-JO=JOD
-# KAZAKSTAN
-KZ=KZT
-# KENYA
-KE=KES
-# KIRIBATI
-KI=AUD
-# KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF
-KP=KPW
-# KOREA, REPUBLIC OF
-KR=KRW
-# KUWAIT
-KW=KWD
-# KYRGYZSTAN
-KG=KGS
-# LAO PEOPLE'S DEMOCRATIC REPUBLIC
-LA=LAK
-# LATVIA
-LV=LVL
-# LEBANON
-LB=LBP
-# LESOTHO
-LS=LSL
-# LIBERIA
-LR=LRD
-# LIBYAN ARAB JAMAHIRIYA
-LY=LYD
-# LIECHTENSTEIN
-LI=CHF
-# LITHUANIA
-LT=LTL
-# LUXEMBOURG
-LU=EUR
-# MACAU
-MO=MOP
-# MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF
-MK=MKD
-# MADAGASCAR
-MG=MGA
-# MALAWI
-MW=MWK
-# MALAYSIA
-MY=MYR
-# MALDIVES
-MV=MVR
-# MALI
-ML=XOF
-# MALTA
-MT=EUR
-# MARSHALL ISLANDS
-MH=USD
-# MARTINIQUE
-MQ=EUR
-# MAURITANIA
-MR=MRO
-# MAURITIUS
-MU=MUR
-# MAYOTTE
-YT=EUR
-# MEXICO
-MX=MXN
-# MICRONESIA, FEDERATED STATES OF
-FM=USD
-# MOLDOVA, REPUBLIC OF
-MD=MDL
-# MONACO
-MC=EUR
-# MONGOLIA
-MN=MNT
-# MONTENEGRO
-ME=EUR
-# MONTSERRAT
-MS=XCD
-# MOROCCO
-MA=MAD
-# MOZAMBIQUE
-MZ=MZM;2006-06-30-22-00-00;MZN
-# MYANMAR
-MM=MMK
-# NAMIBIA
-NA=NAD
-# NAURU
-NR=AUD
-# NEPAL
-NP=NPR
-# NETHERLANDS
-NL=EUR
-# NETHERLANDS ANTILLES
-AN=ANG
-# NEW CALEDONIA
-NC=XPF
-# NEW ZEALAND
-NZ=NZD
-# NICARAGUA
-NI=NIO
-# NIGER
-NE=XOF
-# NIGERIA
-NG=NGN
-# NIUE
-NU=NZD
-# NORFOLK ISLAND
-NF=AUD
-# NORTHERN MARIANA ISLANDS
-MP=USD
-# NORWAY
-NO=NOK
-# OMAN
-OM=OMR
-# PAKISTAN
-PK=PKR
-# PALAU
-PW=USD
-# PALESTINIAN TERRITORY, OCCUPIED
-PS=ILS
-# PANAMA
-PA=PAB
-# PAPUA NEW GUINEA
-PG=PGK
-# PARAGUAY
-PY=PYG
-# PERU
-PE=PEN
-# PHILIPPINES
-PH=PHP
-# PITCAIRN
-PN=NZD
-# POLAND
-PL=PLN
-# PORTUGAL
-PT=EUR
-# PUERTO RICO
-PR=USD
-# QATAR
-QA=QAR
-# REUNION
-RE=EUR
-# ROMANIA
-RO=ROL;2005-06-30-21-00-00;RON
-# RUSSIAN FEDERATION
-RU=RUB
-# RWANDA
-RW=RWF
-# SAINT BARTHELEMY
-BL=EUR
-# SAINT HELENA
-SH=SHP
-# SAINT KITTS AND NEVIS
-KN=XCD
-# SAINT LUCIA
-LC=XCD
-# SAINT MARTIN
-MF=EUR
-# SAINT PIERRE AND MIQUELON
-PM=EUR
-# SAINT VINCENT AND THE GRENADINES
-VC=XCD
-# SAMOA
-WS=WST
-# SAN MARINO
-SM=EUR
-# SAO TOME AND PRINCIPE
-ST=STD
-# SAUDI ARABIA
-SA=SAR
-# SENEGAL
-SN=XOF
-# SERBIA
-RS=RSD
-# SERBIA AND MONTENEGRO
-CS=CSD
-# SEYCHELLES
-SC=SCR
-# SIERRA LEONE
-SL=SLL
-# SINGAPORE
-SG=SGD
-# SLOVAKIA
-SK=EUR
-# SLOVENIA
-SI=EUR
-# SOLOMON ISLANDS
-SB=SBD
-# SOMALIA
-SO=SOS
-# SOUTH AFRICA
-ZA=ZAR
-# SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS
-GS=GBP
-# SPAIN
-ES=EUR
-# SRI LANKA
-LK=LKR
-# SUDAN
-SD=SDG
-# SURINAME
-SR=SRD
-# SVALBARD AND JAN MAYEN
-SJ=NOK
-# Sint Maarten (Dutch part)
-SX=ANG
-# SWAZILAND
-SZ=SZL
-# SWEDEN
-SE=SEK
-# SWITZERLAND
-CH=CHF
-# SYRIAN ARAB REPUBLIC
-SY=SYP
-# TAIWAN
-TW=TWD
-# TAJIKISTAN
-TJ=TJS
-# TANZANIA, UNITED REPUBLIC OF
-TZ=TZS
-# THAILAND
-TH=THB
-# TIMOR-LESTE
-TL=USD
-# TOGO
-TG=XOF
-# TOKELAU
-TK=NZD
-# TONGA
-TO=TOP
-# TRINIDAD AND TOBAGO
-TT=TTD
-# TUNISIA
-TN=TND
-# TURKEY
-TR=TRL;2004-12-31-22-00-00;TRY
-# TURKMENISTAN
-TM=TMT
-# TURKS AND CAICOS ISLANDS
-TC=USD
-# TUVALU
-TV=AUD
-# UGANDA
-UG=UGX
-# UKRAINE
-UA=UAH
-# UNITED ARAB EMIRATES
-AE=AED
-# UNITED KINGDOM
-GB=GBP
-# UNITED STATES
-US=USD
-# UNITED STATES MINOR OUTLYING ISLANDS
-UM=USD
-# URUGUAY
-UY=UYU
-# UZBEKISTAN
-UZ=UZS
-# VANUATU
-VU=VUV
-# VENEZUELA
-VE=VEB;2008-01-01-04-00-00;VEF
-# VIET NAM
-VN=VND
-# VIRGIN ISLANDS, BRITISH
-VG=USD
-# VIRGIN ISLANDS, U.S.
-VI=USD
-# WALLIS AND FUTUNA
-WF=XPF
-# WESTERN SAHARA
-EH=MAD
-# YEMEN
-YE=YER
-# ZAMBIA
-ZM=ZMK
-# ZIMBABWE
-ZW=ZWL
-
-
-# List of currencies with 0, 1, OR 3 decimals for minor units, or where there
-# are no minor units defined. All others use 2 decimals.
-
-minor0=\
-    ADP-BEF-BIF-BYB-BYR-CLF-CLP-DJF-ESP-GNF-\
-    GRD-ISK-ITL-JPY-KMF-KRW-LUF-MGF-PYG-PTE-RWF-\
-    TPE-TRL-VUV-XAF-XOF-XPF
-minor1=
-minor3=\
-    BHD-IQD-JOD-KWD-LYD-OMR-TND
-minorUndefined=\
-    XAG-XAU-XBA-XBB-XBC-XBD-XDR-XFO-XFU-XPD-\
-    XPT-XSU-XTS-XUA-XXX
diff --git a/ojluni/src/main/java/javax/sql/rowset/rowset.properties b/ojluni/src/main/java/javax/sql/rowset/rowset.properties
deleted file mode 100755
index 68dd95b..0000000
--- a/ojluni/src/main/java/javax/sql/rowset/rowset.properties
+++ /dev/null
@@ -1,12 +0,0 @@
-#Default JDBC RowSet sync providers listing
-#
-
-# Optimistic synchonriztaion provider
-rowset.provider.classname.0=com.sun.rowset.providers.RIOptimisticProvider
-rowset.provider.vendor.0=Oracle Corporation
-rowset.provider.version.0=1.0
-
-# XML Provider using standard XML schema
-rowset.provider.classname.1=com.sun.rowset.providers.RIXMLProvider
-rowset.provider.vendor.1=Oracle Corporation
-rowset.provider.version.1=1.0
diff --git a/ojluni/src/main/java/javax/sql/rowset/sqlxml.xsd b/ojluni/src/main/java/javax/sql/rowset/sqlxml.xsd
deleted file mode 100755
index 6296605..0000000
--- a/ojluni/src/main/java/javax/sql/rowset/sqlxml.xsd
+++ /dev/null
@@ -1,162 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
- Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-
- This code is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License version 2 only, as
- published by the Free Software Foundation.  Oracle designates this
- particular file as subject to the "Classpath" exception as provided
- by Oracle in the LICENSE file that accompanied this code.
-
- This code is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- version 2 for more details (a copy is included in the LICENSE file that
- accompanied this code).
-
- You should have received a copy of the GNU General Public License version
- 2 along with this work; if not, write to the Free Software Foundation,
- Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-
- Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- or visit www.oracle.com if you need additional information or have any
- questions.
--->
-
-<xsd:schema 
-      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-      targetNamespace="http://standards.iso.org/iso/9075/2002/12/sqlxml"
-      xmlns:sqlxml="http://standards.iso.org/iso/9075/2002/12/sqlxml">
-  <xsd:annotation>
-    <xsd:documentation>
-      ISO/IEC 9075-14:2003 (SQL/XML)
-      This document contains definitions of types and 
-      annotations as specified in ISO/IEC 9075-14:2003.
-    </xsd:documentation>
-  </xsd:annotation>
-
-  <xsd:simpleType name="kindKeyword">
-    <xsd:restriction base="xsd:string">
-      <xsd:enumeration value="PREDEFINED"/>
-      <xsd:enumeration value="DOMAIN"/>
-      <xsd:enumeration value="ROW"/>
-      <xsd:enumeration value="DISTINCT"/>
-      <xsd:enumeration value="ARRAY"/>
-      <xsd:enumeration value="MULTISET"/>
-    </xsd:restriction>
-  </xsd:simpleType>
-
-  <xsd:simpleType name="typeKeyword">
-    <xsd:restriction base="xsd:string">
-      <xsd:enumeration value="CHAR"/>
-      <xsd:enumeration value="VARCHAR"/>
-      <xsd:enumeration value="CLOB"/>
-      <xsd:enumeration value="BLOB"/>
-      <xsd:enumeration value="NUMERIC"/>
-      <xsd:enumeration value="DECIMAL"/>
-      <xsd:enumeration value="INTEGER"/>
-      <xsd:enumeration value="SMALLINT"/>
-      <xsd:enumeration value="BIGINT"/>
-      <xsd:enumeration value="FLOAT"/>
-      <xsd:enumeration value="REAL"/>
-      <xsd:enumeration value="DOUBLE PRECISION"/>
-      <xsd:enumeration value="BOOLEAN"/>
-      <xsd:enumeration value="DATE"/>
-      <xsd:enumeration value="TIME"/>
-      <xsd:enumeration value="TIME WITH TIME ZONE"/>
-      <xsd:enumeration value="TIMESTAMP"/>
-      <xsd:enumeration value="TIMESTAMP WITH TIME ZONE"/>
-      <xsd:enumeration value="INTERVAL YEAR"/>
-      <xsd:enumeration value="INTERVAL YEAR TO MONTH"/>
-      <xsd:enumeration value="INTERVAL MONTH"/>
-      <xsd:enumeration value="INTERVAL DAY"/>
-      <xsd:enumeration value="INTERVAL DAY TO HOUR"/>
-      <xsd:enumeration value="INTERVAL DAY TO MINUTE"/>
-      <xsd:enumeration value="INTERVAL DAY TO SECOND"/>
-      <xsd:enumeration value="INTERVAL HOUR"/>
-      <xsd:enumeration value="INTERVAL HOUR TO MINUTE"/>
-      <xsd:enumeration value="INTERVAL HOUR TO SECOND"/>
-      <xsd:enumeration value="INTERVAL MINUTE"/>
-      <xsd:enumeration value="INTERVAL MINUTE TO SECOND"/>
-      <xsd:enumeration value="INTERVAL SECOND"/>
-    </xsd:restriction>
-  </xsd:simpleType>
-
-  <xsd:complexType name="fieldType">
-    <xsd:attribute name="name" type="xsd:string"/>
-    <xsd:attribute name="mappedType" type="xsd:string"/>
-  </xsd:complexType>
-
-  <xsd:element name="sqltype">
-    <xsd:complexType>
-      <xsd:sequence>
-        <xsd:element name="field" type="sqlxml:fieldType"
-                        minOccurs="0" maxOccurs="unbounded"/>
-      </xsd:sequence>
-      <xsd:attribute name="kind"
-                        type="sqlxml:kindKeyword"/>
-      <xsd:attribute name="name" 
-                        type="sqlxml:typeKeyword" use="optional"/>
-      <xsd:attribute name="length" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="maxLength" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="characterSetName" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="collation" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="precision" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="scale" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="maxExponent" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="minExponent" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="userPrecision" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="leadingPrecision" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="maxElements" type="xsd:integer"
-                        use="optional"/>
-      <xsd:attribute name="catalogName" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="schemaName" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="domainName" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="typeName" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="mappedType" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="mappedElementType" type="xsd:string"
-                        use="optional"/>
-      <xsd:attribute name="final" type="xsd:boolean"
-                        use="optional"/>
-    </xsd:complexType>
-  </xsd:element>
-
-  <xsd:simpleType name="objectType">
-     <xsd:restriction base="xsd:string">
-        <xsd:enumeration value="CATALOG" />
-        <xsd:enumeration value="SCHEMA" />
-        <xsd:enumeration value="BASE TABLE" />
-        <xsd:enumeration value="VIEWED TABLE" />
-        <xsd:enumeration value="CHARACTER SET" />
-        <xsd:enumeration value="COLLATION" />
-     </xsd:restriction>
-  </xsd:simpleType>
-
-  <xsd:element name="sqlname">
-     <xsd:complexType>
-        <xsd:attribute name="type" type="sqlxml:objectType"
-                          use="required" />
-        <xsd:attribute name="catalogName" type="xsd:string" />
-        <xsd:attribute name="schemaName" type="xsd:string" />
-        <xsd:attribute name="localName" type="xsd:string" />
-     </xsd:complexType>
-  </xsd:element>
-
-</xsd:schema>
diff --git a/ojluni/src/main/java/javax/sql/rowset/webrowset.xsd b/ojluni/src/main/java/javax/sql/rowset/webrowset.xsd
deleted file mode 100755
index a7139ef..0000000
--- a/ojluni/src/main/java/javax/sql/rowset/webrowset.xsd
+++ /dev/null
@@ -1,160 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-
- This code is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License version 2 only, as
- published by the Free Software Foundation.  Oracle designates this
- particular file as subject to the "Classpath" exception as provided
- by Oracle in the LICENSE file that accompanied this code.
-
- This code is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- version 2 for more details (a copy is included in the LICENSE file that
- accompanied this code).
-
- You should have received a copy of the GNU General Public License version
- 2 along with this work; if not, write to the Free Software Foundation,
- Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-
- Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- or visit www.oracle.com if you need additional information or have any
- questions.
--->
-
-<!-- WebRowSet XML Schema by Jonathan Bruce (Sun Microsystems Inc.) -->
-<xs:schema targetNamespace="http://java.sun.com/xml/ns/jdbc" xmlns:wrs="http://java.sun.com/xml/ns/jdbc" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
-	
-	<xs:element name="webRowSet">
-		<xs:complexType>
-			<xs:sequence>
-				<xs:element ref="wrs:properties"/>
-				<xs:element ref="wrs:metadata"/>
-				<xs:element ref="wrs:data"/>
-			</xs:sequence>
-		</xs:complexType>
-	</xs:element>
-	
-	<xs:element name="columnValue" type="xs:anyType"/>
-	<xs:element name="updateValue" type="xs:anyType"/>
-	
-	<xs:element name="properties">
-		<xs:complexType>
-			<xs:sequence>
-				<xs:element name="command" type="xs:string"/>
-				<xs:element name="concurrency" type="xs:string"/>
-				<xs:element name="datasource" type="xs:string"/>
-				<xs:element name="escape-processing" type="xs:string"/>
-				<xs:element name="fetch-direction" type="xs:string"/>
-				<xs:element name="fetch-size" type="xs:string"/>
-				<xs:element name="isolation-level" type="xs:string"/>
-				<xs:element name="key-columns">
-					<xs:complexType>
-						<xs:sequence minOccurs="0" maxOccurs="unbounded">
-							<xs:element name="column" type="xs:string"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-				<xs:element name="map">
-					<xs:complexType>
-						<xs:sequence minOccurs="0" maxOccurs="unbounded">
-							<xs:element name="type" type="xs:string"/>
-							<xs:element name="class" type="xs:string"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-				<xs:element name="max-field-size" type="xs:string"/>
-				<xs:element name="max-rows" type="xs:string"/>
-				<xs:element name="query-timeout" type="xs:string"/>
-				<xs:element name="read-only" type="xs:string"/>
-				<xs:element name="rowset-type" type="xs:string"/>
-				<xs:element name="show-deleted" type="xs:string"/>
-				<xs:element name="table-name" type="xs:string"/>
-				<xs:element name="url" type="xs:string"/>
-				<xs:element name="sync-provider">
-					<xs:complexType>
-						<xs:sequence>
-							<xs:element name="sync-provider-name" type="xs:string"/>
-							<xs:element name="sync-provider-vendor" type="xs:string"/>
-							<xs:element name="sync-provider-version" type="xs:string"/>
-							<xs:element name="sync-provider-grade" type="xs:string"/>
-							<xs:element name="data-source-lock" type="xs:string"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-			</xs:sequence>
-		</xs:complexType>
-	</xs:element>
-	<xs:element name="metadata">
-		<xs:complexType>
-			<xs:sequence>
-				<xs:element name="column-count" type="xs:string"/>
-				<xs:choice>
-					<xs:element name="column-definition" minOccurs="0" maxOccurs="unbounded">
-						<xs:complexType>
-							<xs:sequence>
-								<xs:element name="column-index" type="xs:string"/>
-								<xs:element name="auto-increment" type="xs:string"/>
-								<xs:element name="case-sensitive" type="xs:string"/>
-								<xs:element name="currency" type="xs:string"/>
-								<xs:element name="nullable" type="xs:string"/>
-								<xs:element name="signed" type="xs:string"/>
-								<xs:element name="searchable" type="xs:string"/>
-								<xs:element name="column-display-size" type="xs:string"/>
-								<xs:element name="column-label" type="xs:string"/>
-								<xs:element name="column-name" type="xs:string"/>
-								<xs:element name="schema-name" type="xs:string"/>
-								<xs:element name="column-precision" type="xs:string"/>
-								<xs:element name="column-scale" type="xs:string"/>
-								<xs:element name="table-name" type="xs:string"/>
-								<xs:element name="catalog-name" type="xs:string"/>
-								<xs:element name="column-type" type="xs:string"/>
-								<xs:element name="column-type-name" type="xs:string"/>
-							</xs:sequence>
-						</xs:complexType>
-					</xs:element>
-				</xs:choice>
-			</xs:sequence>
-		</xs:complexType>
-	</xs:element>
-	<xs:element name="data">
-		<xs:complexType>
-			<xs:sequence minOccurs="0" maxOccurs="unbounded">
-				<xs:element name="currentRow" minOccurs="0" maxOccurs="unbounded">
-					<xs:complexType>
-						<xs:sequence minOccurs="0" maxOccurs="unbounded">
-							<xs:element ref="wrs:columnValue"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-				<xs:element name="insertRow" minOccurs="0" maxOccurs="unbounded">
-					<xs:complexType>
-						<xs:choice minOccurs="0" maxOccurs="unbounded">
-							<xs:element ref="wrs:columnValue"/>
-							<xs:element ref="wrs:updateValue"/>
-						</xs:choice>
-					</xs:complexType>
-				</xs:element>
-				<xs:element name="deleteRow" minOccurs="0" maxOccurs="unbounded">
-					<xs:complexType>
-						<xs:sequence minOccurs="0" maxOccurs="unbounded">
-							<xs:element ref="wrs:columnValue"/>
-							<xs:element ref="wrs:updateValue"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-				<xs:element name="modifyRow" minOccurs="0" maxOccurs="unbounded">
-					<xs:complexType>
-						<xs:sequence minOccurs="0" maxOccurs="unbounded">
-							<xs:element ref="wrs:columnValue"/>
-							<xs:element ref="wrs:updateValue"/>
-						</xs:sequence>
-					</xs:complexType>
-				</xs:element>
-			</xs:sequence>
-		</xs:complexType>
-	</xs:element>
-</xs:schema>
diff --git a/ojluni/src/main/java/sun/misc/Version.java.template b/ojluni/src/main/java/sun/misc/Version.java.template
deleted file mode 100755
index 62babae..0000000
--- a/ojluni/src/main/java/sun/misc/Version.java.template
+++ /dev/null
@@ -1,341 +0,0 @@
-/*
- * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package sun.misc;
-import java.io.PrintStream;
-
-public class Version {
-
-
-    private static final String launcher_name =
-        "@@launcher_name@@";
-
-    private static final String java_version =
-        "@@java_version@@";
-
-    private static final String java_runtime_name =
-	"@@java_runtime_name@@";
- 
-    private static final String java_runtime_version =
-        "@@java_runtime_version@@";
-
-    static {
-        init();
-    }
-
-    public static void init() {
-        System.setProperty("java.version", java_version);
-        System.setProperty("java.runtime.version", java_runtime_version);
-        System.setProperty("java.runtime.name", java_runtime_name);
-    }
-
-    private static boolean versionsInitialized = false;
-    private static int jvm_major_version = 0;
-    private static int jvm_minor_version = 0;
-    private static int jvm_micro_version = 0;
-    private static int jvm_update_version = 0;
-    private static int jvm_build_number = 0;
-    private static String jvm_special_version = null;
-    private static int jdk_major_version = 0;
-    private static int jdk_minor_version = 0;
-    private static int jdk_micro_version = 0;
-    private static int jdk_update_version = 0;
-    private static int jdk_build_number = 0;
-    private static String jdk_special_version = null;
-
-    /**
-     * In case you were wondering this method is called by java -version.
-     * Sad that it prints to stderr; would be nicer if default printed on
-     * stdout.
-     */
-    public static void print() {
-        print(System.err);
-    }
-
-    /**
-     * This is the same as print except that it adds an extra line-feed
-     * at the end, typically used by the -showversion in the launcher
-     */
-    public static void println() {
-        print(System.err);
-        System.err.println();
-    }
-
-    /**
-     * Give a stream, it will print version info on it.
-     */
-    public static void print(PrintStream ps) {
-        boolean isHeadless = false;
-
-        /* Report that we're running headless if the property is true */
-	String headless = System.getProperty("java.awt.headless");
-	if ( (headless != null) && (headless.equalsIgnoreCase("true")) ) {
-            isHeadless = true;
-	} 
-
-        /* First line: platform version. */
-        ps.println(launcher_name + " version \"" + java_version + "\"");
-
-        /* Second line: runtime version (ie, libraries). */
-
-	ps.print(java_runtime_name + " (build " + java_runtime_version);
-
-	if (java_runtime_name.indexOf("Embedded") != -1 && isHeadless) {
-	    // embedded builds report headless state
-	    ps.print(", headless");
-	}
-	ps.println(')');
-
-        /* Third line: JVM information. */
-        String java_vm_name    = System.getProperty("java.vm.name");
-        String java_vm_version = System.getProperty("java.vm.version");
-        String java_vm_info    = System.getProperty("java.vm.info");
-        ps.println(java_vm_name + " (build " + java_vm_version + ", " +
-                   java_vm_info + ")");
-    }
-
-
-    /**
-     * Returns the major version of the running JVM if it's 1.6 or newer
-     * or any RE VM build. It will return 0 if it's an internal 1.5 or
-     * 1.4.x build.
-     *
-     * @since 1.6
-     */
-    public static synchronized int jvmMajorVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jvm_major_version;
-    }
-
-    /**
-     * Returns the minor version of the running JVM if it's 1.6 or newer
-     * or any RE VM build. It will return 0 if it's an internal 1.5 or
-     * 1.4.x build.
-     * @since 1.6
-     */
-    public static synchronized int jvmMinorVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jvm_minor_version;
-    }
-
-
-    /**
-     * Returns the micro version of the running JVM if it's 1.6 or newer
-     * or any RE VM build. It will return 0 if it's an internal 1.5 or
-     * 1.4.x build.
-     * @since 1.6
-     */
-    public static synchronized int jvmMicroVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jvm_micro_version;
-    }
-
-    /**
-     * Returns the update release version of the running JVM if it's
-     * a RE build. It will return 0 if it's an internal build.
-     * @since 1.6
-     */
-    public static synchronized int jvmUpdateVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jvm_update_version;
-    }
-
-    public static synchronized String jvmSpecialVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        if (jvm_special_version == null) {
-            jvm_special_version = getJvmSpecialVersion();
-        }
-        return jvm_special_version;
-    }
-    public static native String getJvmSpecialVersion();
-
-    /**
-     * Returns the build number of the running JVM if it's a RE build
-     * It will return 0 if it's an internal build.
-     * @since 1.6
-     */
-    public static synchronized int jvmBuildNumber() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jvm_build_number;
-    }
-
-    /**
-     * Returns the major version of the running JDK.
-     *
-     * @since 1.6
-     */
-    public static synchronized int jdkMajorVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jdk_major_version;
-    }
-
-    /**
-     * Returns the minor version of the running JDK.
-     * @since 1.6
-     */
-    public static synchronized int jdkMinorVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jdk_minor_version;
-    }
-
-    /**
-     * Returns the micro version of the running JDK.
-     * @since 1.6
-     */
-    public static synchronized int jdkMicroVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jdk_micro_version;
-    }
-
-    /**
-     * Returns the update release version of the running JDK if it's
-     * a RE build. It will return 0 if it's an internal build.
-     * @since 1.6
-     */
-    public static synchronized int jdkUpdateVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jdk_update_version;
-    }
-
-    public static synchronized String jdkSpecialVersion() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        if (jdk_special_version == null) {
-            jdk_special_version = getJdkSpecialVersion();
-        }
-        return jdk_special_version;
-    }
-    public static native String getJdkSpecialVersion();
-
-    /**
-     * Returns the build number of the running JDK if it's a RE build
-     * It will return 0 if it's an internal build.
-     * @since 1.6
-     */
-    public static synchronized int jdkBuildNumber() {
-        if (!versionsInitialized) {
-            initVersions();
-        }
-        return jdk_build_number;
-    }
-
-    // true if JVM exports the version info including the capabilities
-    private static boolean jvmVersionInfoAvailable;
-    private static synchronized void initVersions() {
-        if (versionsInitialized) {
-            return;
-        }
-        jvmVersionInfoAvailable = getJvmVersionInfo();
-        if (!jvmVersionInfoAvailable) {
-            // parse java.vm.version for older JVM before the
-            // new JVM_GetVersionInfo is added.
-            // valid format of the version string is:
-            // n.n.n[_uu[c]][-<identifer>]-bxx
-            CharSequence cs = System.getProperty("java.vm.version");
-            if (cs.length() >= 5 &&
-                Character.isDigit(cs.charAt(0)) && cs.charAt(1) == '.' &&
-                Character.isDigit(cs.charAt(2)) && cs.charAt(3) == '.' &&
-                Character.isDigit(cs.charAt(4))) {
-                jvm_major_version = Character.digit(cs.charAt(0), 10);
-                jvm_minor_version = Character.digit(cs.charAt(2), 10);
-                jvm_micro_version = Character.digit(cs.charAt(4), 10);
-                cs = cs.subSequence(5, cs.length());
-                if (cs.charAt(0) == '_' && cs.length() >= 3 &&
-                    Character.isDigit(cs.charAt(1)) &&
-                    Character.isDigit(cs.charAt(2))) {
-                    int nextChar = 3;
-                    try {
-                        String uu = cs.subSequence(1, 3).toString();
-                        jvm_update_version = Integer.valueOf(uu).intValue();
-                        if (cs.length() >= 4) {
-                            char c = cs.charAt(3);
-                            if (c >= 'a' && c <= 'z') {
-                                jvm_special_version = Character.toString(c);
-                                nextChar++;
-                            }
-                        }
-                    } catch (NumberFormatException e) {
-                        // not conforming to the naming convention
-                        return;
-                    }
-                    cs = cs.subSequence(nextChar, cs.length());
-                }
-                if (cs.charAt(0) == '-') {
-                    // skip the first character
-                    // valid format: <identifier>-bxx or bxx
-                    // non-product VM will have -debug|-release appended
-                    cs = cs.subSequence(1, cs.length());
-                    String[] res = cs.toString().split("-");
-                    for (String s : res) {
-                        if (s.charAt(0) == 'b' && s.length() == 3 &&
-                            Character.isDigit(s.charAt(1)) &&
-                            Character.isDigit(s.charAt(2))) {
-                            jvm_build_number =
-                                Integer.valueOf(s.substring(1, 3)).intValue();
-                            break;
-                        }
-                    }
-                }
-            }
-        }
-        getJdkVersionInfo();
-        versionsInitialized = true;
-    }
-
-    // Gets the JVM version info if available and sets the jvm_*_version fields
-    // and its capabilities.
-    //
-    // Return false if not available which implies an old VM (Tiger or before).
-    private static native boolean getJvmVersionInfo();
-    private static native void getJdkVersionInfo();
-
-}
-
-// Help Emacs a little because this file doesn't end in .java.
-//
-// Local Variables: ***
-// mode: java ***
-// End: ***
diff --git a/ojluni/src/main/java/sun/net/idn/uidna.spp b/ojluni/src/main/java/sun/net/idn/uidna.spp
deleted file mode 100755
index 5d88696..0000000
--- a/ojluni/src/main/java/sun/net/idn/uidna.spp
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/net/spi/nameservice/dns/META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor b/ojluni/src/main/java/sun/net/spi/nameservice/dns/META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor
deleted file mode 100755
index 52ff4b1..0000000
--- a/ojluni/src/main/java/sun/net/spi/nameservice/dns/META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor
+++ /dev/null
@@ -1,2 +0,0 @@
-# dns service provider descriptor
-sun.net.spi.nameservice.dns.DNSNameServiceDescriptor
diff --git a/ojluni/src/main/java/sun/nio/cs/ext/META-INF/services/java.nio.charset.spi.CharsetProvider b/ojluni/src/main/java/sun/nio/cs/ext/META-INF/services/java.nio.charset.spi.CharsetProvider
deleted file mode 100755
index cf0949e..0000000
--- a/ojluni/src/main/java/sun/nio/cs/ext/META-INF/services/java.nio.charset.spi.CharsetProvider
+++ /dev/null
@@ -1,2 +0,0 @@
-# NIO charset SPI extended charset provider
-sun.nio.cs.ext.ExtendedCharsets
diff --git a/ojluni/src/main/java/sun/nio/cs/standard-charsets b/ojluni/src/main/java/sun/nio/cs/standard-charsets
deleted file mode 100755
index 06120fe..0000000
--- a/ojluni/src/main/java/sun/nio/cs/standard-charsets
+++ /dev/null
@@ -1,338 +0,0 @@
-#
-# Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Standard charsets provided by StandardCharsets provider.
-#
-# Note that these "standard" charsets listed here are not
-# necessary to be the "Standard charsets" defined in the
-# specification of java.nio.charset.Charset. Instead these
-# are the charsets that this implementation believes should
-# be packaged into the charsets provider class "StandardCharsets"
-# which is initialized at startup time by java.nio.charset.Charset,
-# compared to the charsets packaged in "ExtendedCharsets" provider,
-# which is lazy initialized.
-
-# This year should only change if the generated source is modified.
-copyright 2000, 2007,
-package sun.nio.cs
-class StandardCharsets
-
-charset US-ASCII US_ASCII
-
-    # IANA aliases
-    alias iso-ir-6
-    alias ANSI_X3.4-1986
-    alias ISO_646.irv:1991
-    alias ASCII
-    alias ISO646-US
-    alias us
-    alias IBM367
-    alias cp367
-    alias csASCII
-    alias default
-
-    # Other aliases
-    alias 646				# Solaris POSIX locale
-    alias iso_646.irv:1983
-    alias ANSI_X3.4-1968		# Linux POSIX locale (RedHat)
-    alias ascii7
-
-charset UTF-8 UTF_8
-    alias UTF8				# JDK historical
-    alias unicode-1-1-utf-8
-
-charset UTF-16 UTF_16
-    alias UTF_16			# JDK historical
-    alias utf16
-    alias unicode
-    alias UnicodeBig
-
-charset UTF-16BE UTF_16BE
-    alias UTF_16BE
-    alias ISO-10646-UCS-2
-    alias X-UTF-16BE
-    alias UnicodeBigUnmarked
-
-charset UTF-16LE UTF_16LE
-    alias UTF_16LE
-    alias X-UTF-16LE
-    alias UnicodeLittleUnmarked
-
-charset x-UTF-16LE-BOM UTF_16LE_BOM
-    alias UnicodeLittle
-
-charset UTF-32 UTF_32
-    alias UTF_32
-    alias UTF32
-
-charset UTF-32LE UTF_32LE
-    alias UTF_32LE
-    alias X-UTF-32LE
-
-charset UTF-32BE UTF_32BE
-    alias UTF_32BE
-    alias X-UTF-32BE
-
-charset X-UTF-32LE-BOM UTF_32LE_BOM
-    alias UTF_32LE_BOM
-    alias UTF-32LE-BOM
-
-charset X-UTF-32BE-BOM UTF_32BE_BOM
-    alias UTF_32BE_BOM
-    alias UTF-32BE-BOM
-
-charset ISO-8859-1 ISO_8859_1
-
-    # IANA aliases
-    alias iso-ir-100
-    alias ISO_8859-1
-    alias latin1
-    alias l1
-    alias IBM819
-    alias cp819
-    alias csISOLatin1
-
-    # Other aliases
-    alias 819
-    alias IBM-819
-    alias ISO8859_1
-    alias ISO_8859-1:1987
-    alias ISO_8859_1
-    alias 8859_1
-    alias ISO8859-1
-
-charset ISO-8859-2 ISO_8859_2
-    alias iso8859_2			# JDK historical
-    alias 8859_2
-    alias iso-ir-101
-    alias ISO_8859-2
-    alias ISO_8859-2:1987
-    alias ISO8859-2
-    alias latin2
-    alias l2
-    alias ibm912
-    alias ibm-912
-    alias cp912
-    alias 912
-    alias csISOLatin2
-
-charset ISO-8859-4 ISO_8859_4
-    alias iso8859_4			# JDK historical
-    alias iso8859-4
-    alias 8859_4
-    alias iso-ir-110
-    alias ISO_8859-4
-    alias ISO_8859-4:1988
-    alias latin4
-    alias l4
-    alias ibm914
-    alias ibm-914
-    alias cp914
-    alias 914
-    alias csISOLatin4
-
-charset ISO-8859-5 ISO_8859_5
-    alias iso8859_5			# JDK historical
-    alias 8859_5
-    alias iso-ir-144
-    alias ISO_8859-5
-    alias ISO_8859-5:1988
-    alias ISO8859-5
-    alias cyrillic
-    alias ibm915
-    alias ibm-915
-    alias cp915
-    alias 915
-    alias csISOLatinCyrillic
-
-charset ISO-8859-7 ISO_8859_7
-    alias iso8859_7			# JDK historical
-    alias 8859_7
-    alias iso-ir-126
-    alias ISO_8859-7
-    alias ISO_8859-7:1987
-    alias ELOT_928
-    alias ECMA-118
-    alias greek
-    alias greek8
-    alias csISOLatinGreek
-    alias sun_eu_greek			# Solaris 7/8 compatibility
-    alias ibm813
-    alias ibm-813
-    alias 813
-    alias cp813
-    alias iso8859-7			# Solaris 9 compatibility
-
-charset ISO-8859-9 ISO_8859_9
-    alias iso8859_9			# JDK historical
-    alias 8859_9
-    alias iso-ir-148
-    alias ISO_8859-9
-    alias ISO_8859-9:1989
-    alias ISO8859-9
-    alias latin5
-    alias l5
-    alias ibm920
-    alias ibm-920
-    alias 920
-    alias cp920
-    alias csISOLatin5
-
-charset ISO-8859-13 ISO_8859_13
-    alias iso8859_13			# JDK historical
-    alias 8859_13
-    alias iso_8859-13
-    alias ISO8859-13
-
-charset ISO-8859-15 ISO_8859_15
-
-    # IANA alias
-    alias ISO_8859-15
-
-    # Other aliases
-    alias 8859_15
-    alias ISO-8859-15
-    alias ISO8859_15
-    alias ISO8859-15
-    alias IBM923
-    alias IBM-923
-    alias cp923
-    alias 923
-    alias LATIN0
-    alias LATIN9
-    alias L9
-    alias csISOlatin0
-    alias csISOlatin9
-    alias ISO8859_15_FDIS
-
-charset KOI8-R KOI8_R
-    alias koi8_r			# JDK historical
-    alias koi8
-    alias cskoi8r
-
-charset KOI8-U KOI8_U
-    alias koi8_u
-
-charset windows-1250 MS1250
-    alias cp1250			# JDK historical
-    alias cp5346			# Euro IBM CCSID
-
-charset windows-1251 MS1251
-    alias cp1251			# JDK historical
-    alias cp5347			# Euro IBM CCSID
-    alias ansi-1251			# Solaris compatibility
-
-charset windows-1252 MS1252
-    alias cp1252			# JDK historical
-    alias cp5348			# Euro IBM CCSID
-
-charset windows-1253 MS1253
-    alias cp1253			# JDK historical
-    alias cp5349			# Euro IBM CCSID
-
-charset windows-1254 MS1254
-    alias cp1254			# JDK historical
-    alias cp5350			# Euro IBM CCSID
-
-charset windows-1257 MS1257
-    alias cp1257			# JDK historical
-    alias cp5353			# Euro IBM CCSID
-
-
-charset IBM437 IBM437
-    alias cp437                         #JDK historical
-    alias ibm437
-    alias ibm-437
-    alias 437
-    alias cspc8codepage437
-    alias windows-437
-
-charset x-IBM737 IBM737
-    alias cp737                         #JDK historical
-    alias ibm737
-    alias ibm-737
-    alias 737
-
-charset IBM775 IBM775
-    alias cp775                         #JDK historical
-    alias ibm775
-    alias ibm-775
-    alias 775
-
-charset IBM850 IBM850
-    alias cp850                         #JDK historical
-    alias ibm-850
-    alias ibm850
-    alias 850
-    alias cspc850multilingual
-
-charset IBM852 IBM852
-    alias cp852                         #JDK historical
-    alias ibm852
-    alias ibm-852
-    alias 852
-    alias csPCp852
-
-charset IBM855 IBM855
-    alias cp855                         #JDK historical
-    alias ibm-855
-    alias ibm855
-    alias 855
-    alias cspcp855
-
-charset IBM857 IBM857
-    alias cp857                         #JDK historical
-    alias ibm857
-    alias ibm-857
-    alias 857
-    alias csIBM857
-
-charset IBM00858 IBM858
-    alias cp858                         #JDK historical
-    alias ccsid00858
-    alias cp00858
-    alias 858
-    alias PC-Multilingual-850+euro
-
-charset IBM862 IBM862
-    alias cp862                         #JDK historical
-    alias ibm862
-    alias ibm-862
-    alias 862
-    alias csIBM862
-    alias cspc862latinhebrew
-
-charset IBM866 IBM866
-    alias cp866                         #JDK historical
-    alias ibm866
-    alias ibm-866
-    alias 866
-    alias csIBM866
-
-charset x-IBM874 IBM874
-    alias cp874                         #JDK historical
-    alias ibm874
-    alias ibm-874
-    alias 874
diff --git a/ojluni/src/main/java/sun/security/x509/README b/ojluni/src/main/java/sun/security/x509/README
deleted file mode 100755
index 31a1291..0000000
--- a/ojluni/src/main/java/sun/security/x509/README
+++ /dev/null
@@ -1,47 +0,0 @@
-
-Quick summary of the main purpose here:  X.509 certs are used in public
-key infrastructure for protocols such as SSL and SET.  These certificates
-involve ISO/CCITT standard technologies such as ASN.1/DER, which control
-the format of the data being transmitted.  X.509 itself describes the
-content of the data (e.g. X.500 user name, public key for that user, more)
-and how to sign it.
-
-+++	+++	+++	+++	+++	+++	+++	+++	+++
-
-The X.509 support in JDK 1.2 builds on the java.security signature and
-key management APIs.  The following packages provide the X.509 support:
-
-    sun.security.util ... holds DER utilities, for parsing and generating
-	streams of DER-encoded data values, including object identifiers.
-
-    sun.security.x509 ... basic X.509 certificate parsing and generation
-	framework, including X.509 keys, X.500 names, algorithm IDs,
-        X.509 v3 extensions, and more.
-
-+++	+++	+++	+++	+++	+++	+++	+++	+++
-
-Information which may be useful when you work with X.509 certificates is
-found in:
-
-    The IETF has a public key infrastructure working group, PKIX.
-    See http://www.ietf.org for more information.
-
-    RFC 1422, which describes the key management infrastructure for
-    the Privacy Enhanced Mail (PEM) system.  It builds on X.509,
-    and is perhaps the most useful overview I've found.
-
-    RFC 1777, which describes the Lightweight Directory Access
-    Protocol (LDAP) that many organizations are expecting will help
-    address online certificate distribution over the Internet.
-
-    RFC 3280, which describes the Internet X.509 Public Key
-    Infrastructure Certificate and CRL Profile.  
-
-    RSA DSI has a bunch of "Public Key Cryptography Standards" (PKCS) which
-    have been relatively well accepted.  They build on top of the X.509
-    infrastructure.  You can FTP them from ftp://ftp.rsa.com/pub/pkcs, in
-    either PostScript or ASCII format.
-
-    RSA DSI has also provided a "Layman's Guide" to ASN.1/DER, with
-    examples from the X.509 and PKCS standards.  This is available from
-    the PKCS FTP area noted above.
diff --git a/ojluni/src/main/java/sun/security/x509/certAttributes.html b/ojluni/src/main/java/sun/security/x509/certAttributes.html
deleted file mode 100755
index 088538e..0000000
--- a/ojluni/src/main/java/sun/security/x509/certAttributes.html
+++ /dev/null
@@ -1,246 +0,0 @@
-<HTML>
-<BODY>
-<HEAD>
-<TITLE>Certificate Attributes</TITLE>
-</HEAD>
-<h2><center>Certificate Attributes</center></h2>
-<font size=3><center>July 1998</font></center>
-<p>
-In JDK1.2 we provide an implementation of X.509 (version 3). 
-The X509CertImpl class supports the following methods to
-manipulate the various attributes of a certificate:
-<pre>
-     Object get(String name)
-     void set(String name, Object value), and
-     void delete(String name)
-</pre>
-A list of all the X.509 v3 Certificate attributes that can be manipulated
-is provided in the following table.
-For example, if you want to get the signature component of
-the certificate:
-<pre>
-     X509CertImpl cert;
-     // get the certificate object
-     byte[] sig = (byte[])cert.get("x509.signature");
-                  // using the fully-qualified identifier
-OR
-     byte[] sig = (byte[])cert.get(X509CertImpl.SIG);
-                  // using defined constants
-</pre>
-<p>
-<table border=1>
-<caption>sun.security.x509.X509CertImpl</caption>
-<tr>
-<td><strong>Attribute</strong></td>
-<td><strong>Fully-qualified identifier</strong></td>
-<td><strong>Defined constants</strong></td>
-<td><strong>Type of Object returned</strong><br>
-(in sun.security.x509 unless fully-qualified)</td>
-</tr>
-<tr>
-<td>signatureAlgorithm</td>
-<td>x509.algorithm</td>
-<td>X509CertImpl.SIG_ALG</td>
-<td>AlgorithmId</td>
-</tr>
-<tr>
-<td>signature</td>
-<td>x509.signature</td>
-<td>X509CertImpl.SIG</td>
-<td>byte[]</td>
-</tr>
-<tr>
-<td>tbsCertificate</td>
-<td>x509.info</td>
-<td>X509CertInfo.IDENT</td>
-<td>X509CertInfo</td>
-</tr>
-<tr>
-<td>version</td>
-<td>x509.info.version<br>
-x509.info.version.number</td>
-<td>CertificateVersion.IDENT<br>
-none</td>
-<td>CertificateVersion<br>
-java.lang.Integer</td>
-</tr>
-<tr>
-<td>serialNumber</td>
-<td>x509.info.serialNumber<br>
-x509.info.serialNumber.number</td>
-<td>CertificateSerialNumber.IDENT<br>
-X509CertImpl.SERIAL_ID</td>
-<td>CertificateSerialNumber<br>
-SerialNumber</td>
-</tr>
-<tr>
-<td>signature</td>
-<td>x509.info.algorithmID<br>
-x509.info.algorithmID.algorithm</td>
-<td>CertificateAlgorithmId.IDENT<br>
-none</td>
-<td>CertificateAlgorithmId<br>
-AlgorithmId</td>
-</tr>
-<tr>
-<td>issuer</td>
-<td>x509.info.issuer<br>
-x509.info.issuer.dname</td>
-<td>CertificateIssuerName.IDENT<br>
-X509CertImpl.ISSUER_DN</td>
-<td>CertificateIssuerName<br>
-X500Name</td>
-</tr>
-<tr>
-<td>validity<br>
-validity.notAfter<br>
-validity.notBefore</td>
-<td>x509.info.validity<br>
-x509.info.validity.notAfter<br>
-x509.info.validity.notBefore</td>
-<td>CertificateValidity.IDENT<br>
-none<br>
-none</td>
-<td>CertificateValidity<br>
-java.util.Date<br>
-java.util.Date</td>
-</tr>
-<tr>
-<td>subject</td>
-<td>x509.info.subject<br>
-x509.info.subject.dname</td>
-<td>CertificateSubjectName.IDENT<br>
-X509CertImpl.SUBJECT_DN</td>
-<td>CertificateSubjectName<br>
-X500Name</td>
-</tr>
-<tr>
-<td>subjectPublicKeyInfo</td>
-<td>x509.info.key<br>
-x509.info.key.value</td>
-<td>CertificateX509Key.IDENT<br>
-X509CertImpl.PUBLIC_KEY</td>
-<td>CertificateX509Key<br>
-X509Key</td>
-</tr>
-<tr>
-<td>issuerUniqueID</td>
-<td>x509.info.issuerID<br>
-x509.info.issuerID.id</td>
-<td>CertificateIssuerUniqueIdentity.IDENT<br>
-none</td>
-<td>CertificateIssuerUniqueIdentity<br>
-UniqueIdentity</td>
-</tr>
-<tr>
-<td>subjectUniqueID</td>
-<td>x509.info.subjectID<br>
-x509.info.subjectID.id</td>
-<td>CertificateSubjectUniqueIdentity.IDENT<br>
-none</td>
-<td>CertificateSubjectUniqueIdentity<br>
-UniqueIdentity</td>
-</tr>
-<tr>
-<td>extensions</td>
-<td>x509.info.extensions</td>
-<td>CertificateExtensions.IDENT</td>
-<td>CertificateExtensions</td>
-</tr>
-</table>
-<br>
-<br>
-<table border=1>
-<caption>X.509 V3 certificate extensions</caption>
-<tr>
-<td><strong>Extension</strong></td>
-<td><strong>Extension attribute identifier</strong></td>
-<td><strong>Short form</strong></td>
-<td><strong>Type of Object returned</strong></td>
-</tr>
-<tr>
-<td>Authority Key Identifier</td>
-<td>x509.info.extensions.AuthorityKeyIdentifier</td>
-<td>AuthorityKeyIdentifierExtension.IDENT</td>
-<td>AuthorityKeyIdentifierExtension</td>
-</tr>
-<tr>
-<td>Subject Key Identifier</td>
-<td>x509.info.extensions.SubjectKeyIdentifier</td>
-<td>SubjectKeyIdentifierExtension.IDENT</td>
-<td>SubjectKeyIdentifierExtension</td>
-</tr>
-<tr>
-<td>Key Usage</td>
-<td>x509.info.extensions.KeyUsage</td>
-<td>KeyUsageExtension.IDENT</td>
-<td>KeyUsageExtension</td>
-</tr>
-<tr>
-<td>Private Key Usage Period</td>
-<td>x509.info.extensions.PrivateKeyUsage</td>
-<td>PrivateKeyUsageExtension.IDENT</td>
-<td>PrivateKeyUsageExtension</td>
-</tr>
-<tr>
-<td>Policy Mappings</td>
-<td>x509.info.extensions.PolicyMappings</td>
-<td>PolicyMappingsExtension.IDENT</td>
-<td>PolicyMappingsExtension</td>
-</tr>
-<tr>
-<td>Subject Alternative Name</td>
-<td>x509.info.extensions.SubjectAlternativeName</td>
-<td>SubjectAlternativeNameExtension.IDENT</td>
-<td>SubjectAlternativeNameExtension</td>
-</tr>
-<tr>
-<td>Issuer Alternative Name</td>
-<td>x509.info.extensions.IssuerAlternativeName</td>
-<td>IssuerAlternativeNameExtension.IDENT</td>
-<td>IssuerAlternativeNameExtension</td>
-</tr>
-<tr>
-<td>Basic Constraints</td>
-<td>x509.info.extensions.BasicConstraints</td>
-<td>BasicConstraintsExtension.IDENT</td>
-<td>BasicConstraintsExtension</td>
-</tr>
-<tr>
-<td>Name Constraints</td>
-<td>x509.info.extensions.NameConstraints</td>
-<td>NameConstraintsExtension.IDENT</td>
-<td>NameConstraintsExtension</td>
-</tr>
-<tr>
-<td>Policy Constraints</td>
-<td>x509.info.extensions.PolicyConstraints</td>
-<td>PolicyConstraintsExtension.IDENT</td>
-<td>PolicyConstraintsExtension</td>
-</tr>
-<tr>
-<td>Netscape Certificate Type</td>
-<td>x509.info.extensions.NetscapeCertType</td>
-<td>NetscapeCertTypeExtension.IDENT</td>
-<td>NetscapeCertTypeExtension</td>
-</tr>
-</table>
-<p>
-Extensions can be added by implementing the
-<code>sun.security.x509.CertAttrSet</code> interface and
-subclassing <code>sun.security.x509.Extension</code> class.
-Register the new extension using the OIDMap class.
-The following extensions are not currently supported from the
-PKIX profile:
-<table>
-<tr>
-<td>Name</td>
-<td>ObjectIdentifier</td>
-</tr>
-<tr>
-<td>CertificatePolicies</td>
-<td>2.5.29.32</td>
-</tr>
-</table>
-</BODY>
-</HTML>
diff --git a/ojluni/src/main/java/sun/text/resources/CharacterBreakIteratorData b/ojluni/src/main/java/sun/text/resources/CharacterBreakIteratorData
deleted file mode 100755
index 8de0279..0000000
--- a/ojluni/src/main/java/sun/text/resources/CharacterBreakIteratorData
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/LineBreakIteratorData b/ojluni/src/main/java/sun/text/resources/LineBreakIteratorData
deleted file mode 100755
index 8cc278c..0000000
--- a/ojluni/src/main/java/sun/text/resources/LineBreakIteratorData
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/SentenceBreakIteratorData b/ojluni/src/main/java/sun/text/resources/SentenceBreakIteratorData
deleted file mode 100755
index aa67772..0000000
--- a/ojluni/src/main/java/sun/text/resources/SentenceBreakIteratorData
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/WordBreakIteratorData b/ojluni/src/main/java/sun/text/resources/WordBreakIteratorData
deleted file mode 100755
index 4768d1c..0000000
--- a/ojluni/src/main/java/sun/text/resources/WordBreakIteratorData
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/thai_dict b/ojluni/src/main/java/sun/text/resources/thai_dict
deleted file mode 100755
index 058ae30..0000000
--- a/ojluni/src/main/java/sun/text/resources/thai_dict
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/ubidi.icu b/ojluni/src/main/java/sun/text/resources/ubidi.icu
deleted file mode 100755
index aa4d7db..0000000
--- a/ojluni/src/main/java/sun/text/resources/ubidi.icu
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/unorm.icu b/ojluni/src/main/java/sun/text/resources/unorm.icu
deleted file mode 100755
index ecbe178..0000000
--- a/ojluni/src/main/java/sun/text/resources/unorm.icu
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/text/resources/uprops.icu b/ojluni/src/main/java/sun/text/resources/uprops.icu
deleted file mode 100755
index 2ea4d31..0000000
--- a/ojluni/src/main/java/sun/text/resources/uprops.icu
+++ /dev/null
Binary files differ
diff --git a/ojluni/src/main/java/sun/util/CoreResourceBundleControl-XLocales.java.template b/ojluni/src/main/java/sun/util/CoreResourceBundleControl-XLocales.java.template
deleted file mode 100755
index 0d7e2e0..0000000
--- a/ojluni/src/main/java/sun/util/CoreResourceBundleControl-XLocales.java.template
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
- * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#warn This file is preprocessed before being compiled
-
-package sun.util;
-
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Locale;
-import java.util.ResourceBundle;
-import java.util.ResourceBundle.Control;
-
-/**
- * This is a convenient class for loading some of internal resources faster
- * if they are built with Resources.gmk defined in J2SE workspace. Also,
- * they have to be in class file format.
- *
- * "LOCALE_LIST" will be replaced at built time by a list of locales we
- * defined in Defs.gmk. We want to exclude these locales from search to
- * gain better performance. For example, since we know if the resource
- * is built with Resources.gmk, they are not going to provide basename_en.class
- * & basename_en_US.class resources, in that case, continuing searching them
- * is expensive. By excluding them from the candidate locale list, these
- * resources won't be searched.
- *
- * @since 1.6.
- */
-public class CoreResourceBundleControl extends ResourceBundle.Control {
-    /* the candidate locale list to search */
-    private final Collection<Locale> excludedJDKLocales;
-    /* singlton instance of the resource bundle control. */
-    private static CoreResourceBundleControl resourceBundleControlInstance =
-        new CoreResourceBundleControl();
-
-    protected CoreResourceBundleControl() {
-        excludedJDKLocales = Arrays.asList(#LOCALE_LIST#);
-    }
-
-    /**
-     * This method is to provide a customized ResourceBundle.Control to speed
-     * up the search of resources in JDK.
-     *
-     * @return the instance of resource bundle control.
-     */
-    public static CoreResourceBundleControl getRBControlInstance() {
-        return resourceBundleControlInstance;
-    }
-
-    /**
-     * This method is to provide a customized ResourceBundle.Control to speed
-     * up the search of resources in JDK, with the bundle's package name check.
-     *
-     * @param bundleName bundle name to check
-     * @return the instance of resource bundle control if the bundle is JDK's,
-     *    otherwise returns null.
-     */
-    public static CoreResourceBundleControl getRBControlInstance(String bundleName) {
-        if (bundleName.startsWith("com.sun.") ||
-            bundleName.startsWith("java.") ||
-            bundleName.startsWith("javax.") ||
-            bundleName.startsWith("sun.")) {
-            return resourceBundleControlInstance;
-        } else {
-            return null;
-        }
-    }
-
-    /**
-     * @returns a list of candidate locales to search from.
-     * @exception NullPointerException if baseName or locale is null.
-     */
-    @Override
-    public List<Locale> getCandidateLocales(String baseName, Locale locale) {
-        List<Locale> candidates = super.getCandidateLocales(baseName, locale);
-        candidates.removeAll(excludedJDKLocales);
-        return candidates;
-    }
-
-    /**
-     * @ returns TTL_DONT_CACHE so that ResourceBundle instance won't be cached.
-     * User of this CoreResourceBundleControl should probably maintain a hard reference
-     * to the ResourceBundle object themselves.
-     */
-    @Override
-    public long getTimeToLive(String baseName, Locale locale) {
-        return ResourceBundle.Control.TTL_DONT_CACHE;
-    }
-}
diff --git a/ojluni/src/main/java/sun/util/LocaleDataMetaInfo-XLocales.java.template b/ojluni/src/main/java/sun/util/LocaleDataMetaInfo-XLocales.java.template
deleted file mode 100755
index c160e23..0000000
--- a/ojluni/src/main/java/sun/util/LocaleDataMetaInfo-XLocales.java.template
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-#warn This file is preprocessed before being compiled
-
-/*
- * This class contains a map which records the locale list string for
- * each resource in sun.util.resources & sun.text.resources.
- * It is used to avoid loading non-existent localized resources so that
- * jar files won't be opened unnecessary to look up them.
- *
- * @since 1.6
- */
-package sun.util;
-
-import java.util.HashMap;
-
-
-public class LocaleDataMetaInfo {
-
-    private static final HashMap<String, String> resourceNameToLocales =
-        new HashMap<String, String>(6);
-
-
-    static {
-        /* During JDK build time, #XXX_YYY# will be replaced by a string contain all the locales
-           supported by the resource.
-
-           Don't remove the space character between " and #. That is put there purposely so that
-           look up locale string such as "en" could be based on if it contains " en ".
-        */
-        resourceNameToLocales.put("sun.text.resources.FormatData",
-                                  " #FormatData_EuroLocales# | #FormatData_NonEuroLocales# ");
-
-        resourceNameToLocales.put("sun.text.resources.CollationData",
-                                  " #CollationData_EuroLocales# | #CollationData_NonEuroLocales# ");
-
-        resourceNameToLocales.put("sun.util.resources.TimeZoneNames",
-                                  " #TimeZoneNames_EuroLocales# | #TimeZoneNames_NonEuroLocales# ");
-
-        resourceNameToLocales.put("sun.util.resources.LocaleNames",
-                                  " #LocaleNames_EuroLocales# | #LocaleNames_NonEuroLocales# ");
-
-        resourceNameToLocales.put("sun.util.resources.CurrencyNames",
-                                  " #CurrencyNames_EuroLocales# | #CurrencyNames_NonEuroLocales# ");
-
-        resourceNameToLocales.put("sun.util.resources.CalendarData",
-                                  " #CalendarData_EuroLocales# | #CalendarData_NonEuroLocales# ");
-    }
-
-    /*
-     * @param resourceName the resource name
-     * @return the supported locale string for the passed in resource.
-     */
-    public static String getSupportedLocaleString(String resourceName) {
-
-        return resourceNameToLocales.get(resourceName);
-    }
-
-}
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging.properties b/ojluni/src/main/java/sun/util/logging/resources/logging.properties
deleted file mode 100755
index da17c47..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=ALL
-# The following ALL CAPS words should be translated.
-SEVERE=SEVERE
-# The following ALL CAPS words should be translated.
-WARNING=WARNING
-# The following ALL CAPS words should be translated.
-INFO=INFO
-# The following ALL CAPS words should be translated.
-CONFIG= CONFIG
-# The following ALL CAPS words should be translated.
-FINE=FINE
-# The following ALL CAPS words should be translated.
-FINER=FINER
-# The following ALL CAPS words should be translated.
-FINEST=FINEST
-# The following ALL CAPS words should be translated.
-OFF=OFF
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_de.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_de.properties
deleted file mode 100755
index 1aa8ef4..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_de.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Alle
-# The following ALL CAPS words should be translated.
-SEVERE=Schwerwiegend
-# The following ALL CAPS words should be translated.
-WARNING=Warnung
-# The following ALL CAPS words should be translated.
-INFO=Information
-# The following ALL CAPS words should be translated.
-CONFIG= Konfiguration
-# The following ALL CAPS words should be translated.
-FINE=Fein
-# The following ALL CAPS words should be translated.
-FINER=Feiner
-# The following ALL CAPS words should be translated.
-FINEST=Am feinsten
-# The following ALL CAPS words should be translated.
-OFF=Deaktiviert
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_es.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_es.properties
deleted file mode 100755
index 90de2e8..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_es.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Todo
-# The following ALL CAPS words should be translated.
-SEVERE=Grave
-# The following ALL CAPS words should be translated.
-WARNING=Advertencia
-# The following ALL CAPS words should be translated.
-INFO=Informaci\u00F3n
-# The following ALL CAPS words should be translated.
-CONFIG= Configurar
-# The following ALL CAPS words should be translated.
-FINE=Detallado
-# The following ALL CAPS words should be translated.
-FINER=Muy Detallado
-# The following ALL CAPS words should be translated.
-FINEST=M\u00E1s Detallado
-# The following ALL CAPS words should be translated.
-OFF=Desactivado
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_fr.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_fr.properties
deleted file mode 100755
index af34d6f..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_fr.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Tout
-# The following ALL CAPS words should be translated.
-SEVERE=Grave
-# The following ALL CAPS words should be translated.
-WARNING=Avertissement
-# The following ALL CAPS words should be translated.
-INFO=Infos
-# The following ALL CAPS words should be translated.
-CONFIG= Config
-# The following ALL CAPS words should be translated.
-FINE=Pr\u00E9cis
-# The following ALL CAPS words should be translated.
-FINER=Plus pr\u00E9cis
-# The following ALL CAPS words should be translated.
-FINEST=Le plus pr\u00E9cis
-# The following ALL CAPS words should be translated.
-OFF=D\u00E9sactiv\u00E9
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_it.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_it.properties
deleted file mode 100755
index 73a3b5c..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_it.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Tutto
-# The following ALL CAPS words should be translated.
-SEVERE=Grave
-# The following ALL CAPS words should be translated.
-WARNING=Avvertenza
-# The following ALL CAPS words should be translated.
-INFO=Informazioni
-# The following ALL CAPS words should be translated.
-CONFIG= Configurazione
-# The following ALL CAPS words should be translated.
-FINE=Buono
-# The following ALL CAPS words should be translated.
-FINER=Migliore
-# The following ALL CAPS words should be translated.
-FINEST=Ottimale
-# The following ALL CAPS words should be translated.
-OFF=Non attivo
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_ja.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_ja.properties
deleted file mode 100755
index 60358d1..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_ja.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=\u3059\u3079\u3066
-# The following ALL CAPS words should be translated.
-SEVERE=\u91CD\u5927
-# The following ALL CAPS words should be translated.
-WARNING=\u8B66\u544A
-# The following ALL CAPS words should be translated.
-INFO=\u60C5\u5831
-# The following ALL CAPS words should be translated.
-CONFIG= \u69CB\u6210
-# The following ALL CAPS words should be translated.
-FINE=\u666E\u901A
-# The following ALL CAPS words should be translated.
-FINER=\u8A73\u7D30
-# The following ALL CAPS words should be translated.
-FINEST=\u6700\u3082\u8A73\u7D30
-# The following ALL CAPS words should be translated.
-OFF=\u30AA\u30D5
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_ko.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_ko.properties
deleted file mode 100755
index 6d5dc55..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_ko.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=\uBAA8\uB450
-# The following ALL CAPS words should be translated.
-SEVERE=\uC2EC\uAC01
-# The following ALL CAPS words should be translated.
-WARNING=\uACBD\uACE0
-# The following ALL CAPS words should be translated.
-INFO=\uC815\uBCF4
-# The following ALL CAPS words should be translated.
-CONFIG= \uAD6C\uC131
-# The following ALL CAPS words should be translated.
-FINE=\uBBF8\uC138
-# The following ALL CAPS words should be translated.
-FINER=\uBCF4\uB2E4 \uBBF8\uC138
-# The following ALL CAPS words should be translated.
-FINEST=\uAC00\uC7A5 \uBBF8\uC138
-# The following ALL CAPS words should be translated.
-OFF=\uD574\uC81C
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_pt_BR.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_pt_BR.properties
deleted file mode 100755
index 29229f2..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_pt_BR.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Tudo
-# The following ALL CAPS words should be translated.
-SEVERE=Grave
-# The following ALL CAPS words should be translated.
-WARNING=Advert\u00EAncia
-# The following ALL CAPS words should be translated.
-INFO=Informa\u00E7\u00F5es
-# The following ALL CAPS words should be translated.
-CONFIG= Configura\u00E7\u00E3o
-# The following ALL CAPS words should be translated.
-FINE=Detalhado
-# The following ALL CAPS words should be translated.
-FINER=Mais Detalhado
-# The following ALL CAPS words should be translated.
-FINEST=O Mais Detalhado
-# The following ALL CAPS words should be translated.
-OFF=Desativado
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_sv.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_sv.properties
deleted file mode 100755
index b760786..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_sv.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=Alla
-# The following ALL CAPS words should be translated.
-SEVERE=Allvarlig
-# The following ALL CAPS words should be translated.
-WARNING=Varning
-# The following ALL CAPS words should be translated.
-INFO=Info
-# The following ALL CAPS words should be translated.
-CONFIG= Konfig
-# The following ALL CAPS words should be translated.
-FINE=Fin
-# The following ALL CAPS words should be translated.
-FINER=Finare
-# The following ALL CAPS words should be translated.
-FINEST=Finaste
-# The following ALL CAPS words should be translated.
-OFF=Av
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_zh_CN.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_zh_CN.properties
deleted file mode 100755
index 67dd2b8..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_zh_CN.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=\u5168\u90E8
-# The following ALL CAPS words should be translated.
-SEVERE=\u4E25\u91CD
-# The following ALL CAPS words should be translated.
-WARNING=\u8B66\u544A
-# The following ALL CAPS words should be translated.
-INFO=\u4FE1\u606F
-# The following ALL CAPS words should be translated.
-CONFIG= \u914D\u7F6E
-# The following ALL CAPS words should be translated.
-FINE=\u8BE6\u7EC6
-# The following ALL CAPS words should be translated.
-FINER=\u8F83\u8BE6\u7EC6
-# The following ALL CAPS words should be translated.
-FINEST=\u975E\u5E38\u8BE6\u7EC6
-# The following ALL CAPS words should be translated.
-OFF=\u7981\u7528
diff --git a/ojluni/src/main/java/sun/util/logging/resources/logging_zh_TW.properties b/ojluni/src/main/java/sun/util/logging/resources/logging_zh_TW.properties
deleted file mode 100755
index 4875bc8..0000000
--- a/ojluni/src/main/java/sun/util/logging/resources/logging_zh_TW.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# Localizations for Level names.  For the US locale
-# these are the same as the non-localized level name.
-
-# The following ALL CAPS words should be translated.
-ALL=\u5168\u90E8
-# The following ALL CAPS words should be translated.
-SEVERE=\u56B4\u91CD
-# The following ALL CAPS words should be translated.
-WARNING=\u8B66\u544A
-# The following ALL CAPS words should be translated.
-INFO=\u8CC7\u8A0A
-# The following ALL CAPS words should be translated.
-CONFIG= \u7D44\u614B
-# The following ALL CAPS words should be translated.
-FINE=\u8A73\u7D30
-# The following ALL CAPS words should be translated.
-FINER=\u8F03\u8A73\u7D30
-# The following ALL CAPS words should be translated.
-FINEST=\u6700\u8A73\u7D30
-# The following ALL CAPS words should be translated.
-OFF=\u95DC\u9589
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData.properties b/ojluni/src/main/java/sun/util/resources/CalendarData.properties
deleted file mode 100755
index 8494e98..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=1
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ar.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ar.properties
deleted file mode 100755
index 79a4122..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ar.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=7
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_be.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_be.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_be.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_bg.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_bg.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_bg.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ca.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ca.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ca.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_cs.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_cs.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_cs.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_da.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_da.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_da.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_de.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_de.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_de.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_el.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_el.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_el.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_el_CY.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_el_CY.properties
deleted file mode 100755
index b28ba12..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_el_CY.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_en.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_en.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_en.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_en_GB.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_en_GB.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_en_GB.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_en_IE.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_en_IE.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_en_IE.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_en_MT.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_en_MT.properties
deleted file mode 100755
index ba64f31..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_en_MT.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_es.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_es.properties
deleted file mode 100755
index 3b45147..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_es.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_es_ES.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_es_ES.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_es_ES.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_es_US.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_es_US.properties
deleted file mode 100755
index d1d5f2a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_es_US.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-firstDayOfWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_et.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_et.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_et.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_fi.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_fi.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_fi.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_fr.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_fr.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_fr.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_fr_CA.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_fr_CA.properties
deleted file mode 100755
index 8494e98..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_fr_CA.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=1
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_hi.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_hi.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_hi.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_hr.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_hr.properties
deleted file mode 100755
index 035b164..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_hr.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-firstDayOfWeek=2
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_hu.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_hu.properties
deleted file mode 100755
index 4831291..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_hu.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_in_ID.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_in_ID.properties
deleted file mode 100755
index c618ce3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_in_ID.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-firstDayOfWeek=2
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_is.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_is.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_is.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_it.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_it.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_it.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_iw.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_iw.properties
deleted file mode 100755
index cf18123..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_iw.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ja.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ja.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ja.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ko.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ko.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ko.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_lt.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_lt.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_lt.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_lv.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_lv.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_lv.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_mk.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_mk.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_mk.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ms_MY.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ms_MY.properties
deleted file mode 100755
index c618ce3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ms_MY.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-firstDayOfWeek=2
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_mt.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_mt.properties
deleted file mode 100755
index ee3d610..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_mt.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_mt_MT.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_mt_MT.properties
deleted file mode 100755
index 2c45178..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_mt_MT.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_nl.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_nl.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_nl.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_no.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_no.properties
deleted file mode 100755
index 0ca6312..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_no.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_pl.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_pl.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_pl.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_pt.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_pt.properties
deleted file mode 100755
index 3b45147..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_pt.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_pt_PT.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_pt_PT.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_pt_PT.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ro.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ro.properties
deleted file mode 100755
index 65efd83..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ro.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_ru.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_ru.properties
deleted file mode 100755
index 3b45147..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_ru.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sk.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sk.properties
deleted file mode 100755
index 53ac28c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sk.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
-
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sl.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sl.properties
deleted file mode 100755
index 40c51eb..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sl.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sq.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sq.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sq.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sr.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sr.properties
deleted file mode 100755
index c618ce3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sr.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-firstDayOfWeek=2
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_BA.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_BA.properties
deleted file mode 100755
index 7d29a94..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_BA.properties
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_ME.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_ME.properties
deleted file mode 100755
index 7d29a94..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_ME.properties
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_RS.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_RS.properties
deleted file mode 100755
index 7d29a94..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sr_Latn_RS.properties
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_sv.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_sv.properties
deleted file mode 100755
index 9fcc1ce..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_sv.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=4
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_th.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_th.properties
deleted file mode 100755
index 36167c9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_th.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_tr.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_tr.properties
deleted file mode 100755
index c9bd245..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_tr.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_uk.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_uk.properties
deleted file mode 100755
index c9bd245..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_uk.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-firstDayOfWeek=2
-minimalDaysInFirstWeek=1
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_vi.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_vi.properties
deleted file mode 100755
index 0d9fb85..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_vi.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CalendarData_zh.properties b/ojluni/src/main/java/sun/util/resources/CalendarData_zh.properties
deleted file mode 100755
index 0d9fb85..0000000
--- a/ojluni/src/main/java/sun/util/resources/CalendarData_zh.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames.properties
deleted file mode 100755
index 1339e05..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames.properties
+++ /dev/null
@@ -1,497 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-ADP=ADP
-AED=AED
-AFA=AFA
-AFN=AFN
-ALL=ALL
-AMD=AMD
-ANG=ANG
-AOA=AOA
-ARS=ARS
-ATS=ATS
-AUD=AUD
-AWG=AWG
-AYM=AYM
-AZM=AZM
-AZN=AZN
-BAM=BAM
-BBD=BBD
-BDT=BDT
-BEF=BEF
-BGL=BGL
-BGN=BGN
-BHD=BHD
-BIF=BIF
-BMD=BMD
-BND=BND
-BOB=BOB
-BOV=BOV
-BRL=BRL
-BSD=BSD
-BTN=BTN
-BWP=BWP
-BYB=BYB
-BYR=BYR
-BZD=BZD
-CAD=CAD
-CDF=CDF
-CHF=CHF
-CLF=CLF
-CLP=CLP
-CNY=CNY
-COP=COP
-CRC=CRC
-CSD=CSD
-CUC=CUC
-CUP=CUP
-CVE=CVE
-CYP=CYP
-CZK=CZK
-DEM=DEM
-DJF=DJF
-DKK=DKK
-DOP=DOP
-DZD=DZD
-EEK=EEK
-EGP=EGP
-ERN=ERN
-ESP=ESP
-ETB=ETB
-EUR=EUR
-FIM=FIM
-FJD=FJD
-FKP=FKP
-FRF=FRF
-GBP=GBP
-GEL=GEL
-GHC=GHC
-GHS=GHS
-GIP=GIP
-GMD=GMD
-GNF=GNF
-GRD=GRD
-GTQ=GTQ
-GWP=GWP
-GYD=GYD
-HKD=HKD
-HNL=HNL
-HRK=HRK
-HTG=HTG
-HUF=HUF
-IDR=IDR
-IEP=IEP
-ILS=ILS
-INR=INR
-IQD=IQD
-IRR=IRR
-ISK=ISK
-ITL=ITL
-JMD=JMD
-JOD=JOD
-JPY=JPY
-KES=KES
-KGS=KGS
-KHR=KHR
-KMF=KMF
-KPW=KPW
-KRW=KRW
-KWD=KWD
-KYD=KYD
-KZT=KZT
-LAK=LAK
-LBP=LBP
-LKR=LKR
-LRD=LRD
-LSL=LSL
-LTL=LTL
-LUF=LUF
-LVL=LVL
-LYD=LYD
-MAD=MAD
-MDL=MDL
-MGA=MGA
-MGF=MGF
-MKD=MKD
-MMK=MMK
-MNT=MNT
-MOP=MOP
-MRO=MRO
-MTL=MTL
-MUR=MUR
-MVR=MVR
-MWK=MWK
-MXN=MXN
-MXV=MXV
-MYR=MYR
-MZM=MZM
-MZN=MZN
-NAD=NAD
-NGN=NGN
-NIO=NIO
-NLG=NLG
-NOK=NOK
-NPR=NPR
-NZD=NZD
-OMR=OMR
-PAB=PAB
-PEN=PEN
-PGK=PGK
-PHP=PHP
-PKR=PKR
-PLN=PLN
-PTE=PTE
-PYG=PYG
-QAR=QAR
-ROL=ROL
-RON=RON
-RSD=RSD
-RUB=RUB
-RUR=RUR
-RWF=RWF
-SAR=SAR
-SBD=SBD
-SCR=SCR
-SDD=SDD
-SDG=SDG
-SEK=SEK
-SGD=SGD
-SHP=SHP
-SIT=SIT
-SKK=SKK
-SLL=SLL
-SOS=SOS
-SRD=SRD
-SRG=SRG
-STD=STD
-SVC=SVC
-SYP=SYP
-SZL=SZL
-THB=THB
-TJS=TJS
-TMM=TMM
-TMT=TMT
-TND=TND
-TOP=TOP
-TPE=TPE
-TRL=TRL
-TRY=TRY
-TTD=TTD
-TWD=TWD
-TZS=TZS
-UAH=UAH
-UGX=UGX
-USD=USD
-USN=USN
-USS=USS
-UYU=UYU
-UZS=UZS
-VEB=VEB
-VEF=VEF
-VND=VND
-VUV=VUV
-WST=WST
-XAF=XAF
-XAG=XAG
-XAU=XAU
-XBA=XBA
-XBB=XBB
-XBC=XBC
-XBD=XBD
-XCD=XCD
-XDR=XDR
-XFO=XFO
-XFU=XFU
-XOF=XOF
-XPD=XPD
-XPF=XPF
-XPT=XPT
-XSU=XSU
-XTS=XTS
-XUA=XUA
-XXX=XXX
-YER=YER
-YUM=YUM
-ZAR=ZAR
-ZMK=ZMK
-ZWD=ZWD
-ZWL=ZWL
-ZWN=ZWN
-ZWR=ZWR
-adp=Andorran Peseta
-aed=United Arab Emirates Dirham
-afa=Afghan Afghani (1927-2002)
-afn=Afghan Afghani
-all=Albanian Lek
-amd=Armenian Dram
-ang=Netherlands Antillean Guilder
-aoa=Angolan Kwanza
-ars=Argentine Peso
-ats=Austrian Schilling
-aud=Australian Dollar
-awg=Aruban Florin
-azm=Azerbaijani Manat (1993-2006)
-azn=Azerbaijani Manat
-bam=Bosnia-Herzegovina Convertible Mark
-bbd=Barbadian Dollar
-bdt=Bangladeshi Taka
-bef=Belgian Franc
-bgl=Bulgarian Hard Lev
-bgn=Bulgarian Lev
-bhd=Bahraini Dinar
-bif=Burundian Franc
-bmd=Bermudan Dollar
-bnd=Brunei Dollar
-bob=Bolivian Boliviano
-bov=Bolivian Mvdol
-brl=Brazilian Real
-bsd=Bahamian Dollar
-btn=Bhutanese Ngultrum
-bwp=Botswanan Pula
-byb=Belarusian New Ruble (1994-1999)
-byr=Belarusian Ruble
-bzd=Belize Dollar
-cad=Canadian Dollar
-cdf=Congolese Franc
-chf=Swiss Franc
-clf=Chilean Unit of Account (UF)
-clp=Chilean Peso
-cny=Chinese Yuan
-cop=Colombian Peso
-crc=Costa Rican Col\u00f3n
-csd=Serbian Dinar (2002-2006)
-cuc=Cuban Convertible Peso
-cup=Cuban Peso
-cve=Cape Verdean Escudo
-cyp=Cypriot Pound
-czk=Czech Republic Koruna
-dem=German Mark
-djf=Djiboutian Franc
-dkk=Danish Krone
-dop=Dominican Peso
-dzd=Algerian Dinar
-eek=Estonian Kroon
-egp=Egyptian Pound
-ern=Eritrean Nakfa
-esp=Spanish Peseta
-etb=Ethiopian Birr
-eur=Euro
-fim=Finnish Markka
-fjd=Fijian Dollar
-fkp=Falkland Islands Pound
-frf=French Franc
-gbp=British Pound Sterling
-gel=Georgian Lari
-ghc=Ghanaian Cedi (1979-2007)
-ghs=Ghanaian Cedi
-gip=Gibraltar Pound
-gmd=Gambian Dalasi
-gnf=Guinean Franc
-grd=Greek Drachma
-gtq=Guatemalan Quetzal
-gwp=Guinea-Bissau Peso
-gyd=Guyanaese Dollar
-hkd=Hong Kong Dollar
-hnl=Honduran Lempira
-hrk=Croatian Kuna
-htg=Haitian Gourde
-huf=Hungarian Forint
-idr=Indonesian Rupiah
-iep=Irish Pound
-ils=Israeli New Sheqel
-inr=Indian Rupee
-iqd=Iraqi Dinar
-irr=Iranian Rial
-isk=Icelandic Kr\u00f3na
-itl=Italian Lira
-jmd=Jamaican Dollar
-jod=Jordanian Dinar
-jpy=Japanese Yen
-kes=Kenyan Shilling
-kgs=Kyrgystani Som
-khr=Cambodian Riel
-kmf=Comorian Franc
-kpw=North Korean Won
-krw=South Korean Won
-kwd=Kuwaiti Dinar
-kyd=Cayman Islands Dollar
-kzt=Kazakhstani Tenge
-lak=Laotian Kip
-lbp=Lebanese Pound
-lkr=Sri Lankan Rupee
-lrd=Liberian Dollar
-lsl=Lesotho Loti
-ltl=Lithuanian Litas
-luf=Luxembourgian Franc
-lvl=Latvian Lats
-lyd=Libyan Dinar
-mad=Moroccan Dirham
-mdl=Moldovan Leu
-mga=Malagasy Ariary
-mgf=Malagasy Franc
-mkd=Macedonian Denar
-mmk=Myanma Kyat
-mnt=Mongolian Tugrik
-mop=Macanese Pataca
-mro=Mauritanian Ouguiya
-mtl=Maltese Lira
-mur=Mauritian Rupee
-mvr=Maldivian Rufiyaa
-mwk=Malawian Kwacha
-mxn=Mexican Peso
-mxv=Mexican Investment Unit
-myr=Malaysian Ringgit
-mzm=Mozambican Metical (1980-2006)
-mzn=Mozambican Metical
-nad=Namibian Dollar
-ngn=Nigerian Naira
-nio=Nicaraguan C\u00f3rdoba
-nlg=Dutch Guilder
-nok=Norwegian Krone
-npr=Nepalese Rupee
-nzd=New Zealand Dollar
-omr=Omani Rial
-pab=Panamanian Balboa
-pen=Peruvian Nuevo Sol
-pgk=Papua New Guinean Kina
-php=Philippine Peso
-pkr=Pakistani Rupee
-pln=Polish Zloty
-pte=Portuguese Escudo
-pyg=Paraguayan Guarani
-qar=Qatari Rial
-rol=Romanian Leu (1952-2006)
-ron=Romanian Leu
-rsd=Serbian Dinar
-rub=Russian Ruble
-rur=Russian Ruble (1991-1998)
-rwf=Rwandan Franc
-sar=Saudi Riyal
-sbd=Solomon Islands Dollar
-scr=Seychellois Rupee
-sdd=Sudanese Dinar (1992-2007)
-sdg=Sudanese Pound
-sek=Swedish Krona
-sgd=Singapore Dollar
-shp=Saint Helena Pound
-sit=Slovenian Tolar
-skk=Slovak Koruna
-sll=Sierra Leonean Leone
-sos=Somali Shilling
-srd=Surinamese Dollar
-srg=Surinamese Guilder
-std=S\u00e3o Tom\u00e9 and Pr\u00edncipe Dobra
-svc=Salvadoran Col\u00f3n
-syp=Syrian Pound
-szl=Swazi Lilangeni
-thb=Thai Baht
-tjs=Tajikistani Somoni
-tmm=Turkmenistani Manat (1993-2009)
-tmt=Turkmenistani Manat
-tnd=Tunisian Dinar
-top=Tongan Pa\u02bbanga
-tpe=Timorese Escudo
-trl=Turkish Lira (1922-2005)
-try=Turkish Lira
-ttd=Trinidad and Tobago Dollar
-twd=New Taiwan Dollar
-tzs=Tanzanian Shilling
-uah=Ukrainian Hryvnia
-ugx=Ugandan Shilling
-usd=US Dollar
-usn=US Dollar (Next day)
-uss=US Dollar (Same day)
-uyu=Uruguayan Peso
-uzs=Uzbekistan Som
-veb=Venezuelan Bol\u00edvar (1871-2008)
-vef=Venezuelan Bol\u00edvar
-vnd=Vietnamese Dong
-vuv=Vanuatu Vatu
-wst=Samoan Tala
-xaf=CFA Franc BEAC
-xag=Silver
-xau=Gold
-xba=European Composite Unit
-xbb=European Monetary Unit
-xbc=European Unit of Account (XBC)
-xbd=European Unit of Account (XBD)
-xcd=East Caribbean Dollar
-xdr=Special Drawing Rights
-xfo=French Gold Franc
-xfu=French UIC-Franc
-xof=CFA Franc BCEAO
-xpd=Palladium
-xpf=CFP Franc
-xpt=Platinum
-xts=Testing Currency Code
-xxx=Unknown Currency
-yer=Yemeni Rial
-yum=Yugoslavian New Dinar (1994-2002)
-zar=South African Rand
-zmk=Zambian Kwacha
-zwd=Zimbabwean Dollar (1980-2008)
-zwl=Zimbabwean Dollar (2009)
-zwr=Zimbabwean Dollar (2008)
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_AE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_AE.properties
deleted file mode 100755
index 96b2b7a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_AE.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-AED=\u062f.\u0625.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_BH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_BH.properties
deleted file mode 100755
index d6a5099..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_BH.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-BHD=\u062f.\u0628.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_DZ.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_DZ.properties
deleted file mode 100755
index b164a07..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_DZ.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-DZD=\u062f.\u062c.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_EG.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_EG.properties
deleted file mode 100755
index 650f6a2..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_EG.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EGP=\u062c.\u0645.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_IQ.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_IQ.properties
deleted file mode 100755
index 40c1140..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_IQ.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-IQD=\u062f.\u0639.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_JO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_JO.properties
deleted file mode 100755
index 8e4e467..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_JO.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-JOD=\u062f.\u0623.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_KW.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_KW.properties
deleted file mode 100755
index c6b4b4a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_KW.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-KWD=\u062f.\u0643.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LB.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LB.properties
deleted file mode 100755
index 53406bc..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LB.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-LBP=\u0644.\u0644.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LY.properties
deleted file mode 100755
index 133c8b5..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_LY.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-LYD=\u062f.\u0644.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_MA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_MA.properties
deleted file mode 100755
index 9b54103..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_MA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-MAD=\u062f.\u0645.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_OM.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_OM.properties
deleted file mode 100755
index 1616f1b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_OM.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-OMR=\u0631.\u0639.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_QA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_QA.properties
deleted file mode 100755
index 0a8918c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_QA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-QAR=\u0631.\u0642.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SA.properties
deleted file mode 100755
index e3533f0..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-SAR=\u0631.\u0633.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SD.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SD.properties
deleted file mode 100755
index 7e0800d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SD.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-SDG=\u062c.\u0633.\u200f
-SDD=\u062f.\u0633.\u200f
-
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SY.properties
deleted file mode 100755
index 5456b96..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_SY.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-SYP=\u0644.\u0633.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_TN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_TN.properties
deleted file mode 100755
index f38e5f0..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_TN.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-TND=\u062f.\u062a.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_YE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_YE.properties
deleted file mode 100755
index e62e1f3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ar_YE.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-YER=\u0631.\u064a.\u200f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_be_BY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_be_BY.properties
deleted file mode 100755
index f8855a8..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_be_BY.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-BYR=\u0420\u0443\u0431
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_bg_BG.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_bg_BG.properties
deleted file mode 100755
index b3c3f40..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_bg_BG.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-BGN=\u043B\u0432.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ca_ES.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ca_ES.properties
deleted file mode 100755
index 7dd49e6..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ca_ES.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-ESP=Pts
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_cs_CZ.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_cs_CZ.properties
deleted file mode 100755
index cc48db2..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_cs_CZ.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CZK=K\u010d
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_da_DK.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_da_DK.properties
deleted file mode 100755
index 2c64e87..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_da_DK.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-DKK=kr
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de.properties
deleted file mode 100755
index 7f193bcc..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de.properties
+++ /dev/null
@@ -1,275 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=Andorranische Pesete
-aed=UAE Dirham
-afa=Afghani (1927-2002)
-afn=Afghani
-all=Lek
-amd=Dram
-ang=Niederl. Antillen Gulden
-aoa=Kwanza
-ars=Argentinischer Peso
-ats=\u00d6sterreichischer Schilling
-aud=Australischer Dollar
-awg=Aruba Florin
-azm=Aserbaidschan-Manat (1993-2006)
-azn=Aserbaidschan-Manat
-bam=Konvertierbare Mark
-bbd=Barbados-Dollar
-bdt=Taka
-bef=Belgischer Franc
-bgl=Lew (1962-1999)
-bgn=Lew
-bhd=Bahrain-Dinar
-bif=Burundi-Franc
-bmd=Bermuda-Dollar
-bnd=Brunei-Dollar
-bob=Boliviano
-bov=Mvdol
-brl=Real
-bsd=Bahama-Dollar
-btn=Ngultrum
-bwp=Pula
-byb=Belarus Rubel (alt)
-byr=Belarus Rubel (neu)
-bzd=Belize-Dollar
-cad=Kanadischer Dollar
-cdf=Franc congolais
-chf=Schweizer Franken
-clf=Unidades de Fomento
-clp=Chilenischer Peso
-cny=Renminbi Yuan
-cop=Kolumbianischer Peso
-crc=Costa Rica Colon
-csd=Alter Serbischer Dinar
-cuc=Kubanischer Peso (konvertibel)
-cup=Kubanischer Peso
-cve=Kap Verde Escudo
-cyp=Zypern-Pfund
-czk=Tschechische Krone
-dem=Deutsche Mark
-djf=Dschibuti-Franc
-dkk=D\u00e4nische Krone
-dop=Dominikanischer Peso
-dzd=Algerischer Dinar
-eek=Estnische Krone
-egp=\u00c4gyptisches Pfund
-ern=Nakfa
-esp=Spanische Peseta
-etb=Birr
-fim=Finnische Mark
-fjd=Fidschi-Dollar
-fkp=Falkland-Pfund
-frf=Franz\u00f6sischer Franc
-gbp=Pfund Sterling
-gel=Georgischer Lari
-ghc=Cedi
-ghs=Ghanaische Cedi
-gip=Gibraltar-Pfund
-gmd=Dalasi
-gnf=Guinea-Franc
-grd=Griechische Drachme
-gtq=Quetzal
-gwp=Guinea Bissau Peso
-gyd=Guyana-Dollar
-hkd=Hongkong-Dollar
-hnl=Lempira
-hrk=Kuna
-htg=Gourde
-huf=Forint
-idr=Rupiah
-iep=Irisches Pfund
-ils=Schekel
-inr=Indische Rupie
-iqd=Irak Dinar
-irr=Rial
-isk=Isl\u00e4ndische Krone
-itl=Italienische Lira
-jmd=Jamaika-Dollar
-jod=Jordanischer Dinar
-jpy=Yen
-kes=Kenia-Schilling
-kgs=Som
-khr=Riel
-kmf=Komoren Franc
-kpw=Nordkoreanischer Won
-krw=S\u00fcdkoreanischer Won
-kwd=Kuwait Dinar
-kyd=Kaiman-Dollar
-kzt=Tenge
-lak=Kip
-lbp=Libanesisches Pfund
-lkr=Sri Lanka Rupie
-lrd=Liberianischer Dollar
-lsl=Loti
-ltl=Litauischer Litas
-luf=Luxemburgischer Franc
-lvl=Lettischer Lats
-lyd=Libyscher Dinar
-mad=Marokkanischer Dirham
-mdl=Moldau Leu
-mga=Madagaskar Ariary
-mgf=Madagaskar-Franc
-mkd=Denar
-mmk=Kyat
-mnt=Tugrik
-mop=Pataca
-mro=Ouguiya
-mtl=Maltesische Lira
-mur=Mauritius-Rupie
-mvr=Rufiyaa
-mwk=Malawi Kwacha
-mxn=Mexikanischer Peso
-mxv=Mexican Unidad de Inversion (UDI)
-myr=Malaysischer Ringgit
-mzm=Alter Metical
-mzn=Metical
-nad=Namibia-Dollar
-ngn=Naira
-nio=Gold-Cordoba
-nlg=Holl\u00e4ndischer Gulden
-nok=Norwegische Krone
-npr=Nepalesische Rupie
-nzd=Neuseeland-Dollar
-omr=Rial Omani
-pab=Balboa
-pen=Neuer Sol
-pgk=Kina
-php=Philippinischer Peso
-pkr=Pakistanische Rupie
-pln=Zloty
-pte=Portugiesischer Escudo
-pyg=Guarani
-qar=Katar Riyal
-rol=Leu
-ron=Rum\u00e4nischer Leu
-rsd=Serbischer Dinar
-rub=Russischer Rubel (neu)
-rur=Russischer Rubel (alt)
-rwf=Ruanda-Franc
-sbd=Salomonen-Dollar
-scr=Seychellen-Rupie
-sdd=Sudanesischer Dinar
-sdg=Sudanesisches Pfund
-sek=Schwedische Krone
-sgd=Singapur-Dollar
-shp=St. Helena Pfund
-sit=Tolar
-skk=Slowakische Krone
-sll=Leone
-sos=Somalia-Schilling
-srd=Surinamischer Dollar
-srg=Suriname Gulden
-std=Dobra
-svc=El Salvador Colon
-syp=Syrisches Pfund
-szl=Lilangeni
-thb=Baht
-tjs=Tadschikistan Somoni
-tmm=Turkmenistan-Manat
-tmt=Neuer Turkmenistan-Manat
-tnd=Tunesischer Dinar
-top=Pa\u02bbanga
-tpe=Timor-Escudo
-trl=Alte T\u00fcrkische Lira
-try=T\u00fcrkische Lira
-ttd=Trinidad- und Tobago-Dollar
-twd=Neuer Taiwan-Dollar
-tzs=Tansania-Schilling
-uah=Hryvnia
-ugx=Uganda-Schilling
-usd=US-Dollar
-usn=US Dollar (N\u00e4chster Tag)
-uss=US Dollar (Gleicher Tag)
-uyu=Uruguayischer Peso
-uzs=Usbekistan Sum
-veb=Bolivar
-vef=Bol\u00edvar Fuerte
-vnd=Dong
-vuv=Vatu
-wst=Tala
-xaf=CFA Franc (\u00c4quatorial)
-xag=Unze Silber
-xau=Unze Gold
-xba=Europ\u00e4ische Rechnungseinheit
-xbb=Europ\u00e4ische W\u00e4hrungseinheit (XBB)
-xbc=Europ\u00e4ische Rechnungseinheit (XBC)
-xbd=Europ\u00e4ische Rechnungseinheit (XBD)
-xcd=Ostkaribischer Dollar
-xdr=Sonderziehungsrechte
-xfo=Franz\u00f6sischer Gold-Franc
-xfu=Franz\u00f6sischer UIC-Franc
-xof=CFA Franc (West)
-xpd=Unze Palladium
-xpt=Unze Platin
-xts=Testw\u00e4hrung
-xxx=Unbekannte W\u00e4hrung
-yer=Jemen-Rial
-yum=Neuer Dinar
-zar=S\u00fcdafrikanischer Rand
-zmk=Kwacha
-zwd=Simbabwe-Dollar
-zwl=Simbabwe-Dollar (2009)
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_AT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_AT.properties
deleted file mode 100755
index 9070045..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_AT.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-ATS=\u00F6S
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_CH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_CH.properties
deleted file mode 100755
index 0475667..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_CH.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CHF=SFr.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_DE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_DE.properties
deleted file mode 100755
index 7968d92..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_DE.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-DEM=DM
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_GR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_GR.properties
deleted file mode 100755
index 1444f75..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_GR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-GRD=\u03B4\u03C1\u03C7
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_LU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_LU.properties
deleted file mode 100755
index 6c757a1..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_de_LU.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-LUF=F
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_CY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_CY.properties
deleted file mode 100755
index 207db80..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_CY.properties
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-CYP=\u00a3
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_GR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_GR.properties
deleted file mode 100755
index 1444f75..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_el_GR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-GRD=\u03B4\u03C1\u03C7
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_AU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_AU.properties
deleted file mode 100755
index 0264357..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_AU.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-AUD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_CA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_CA.properties
deleted file mode 100755
index 846bfe3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_CA.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CAD=$
-USD=US$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_GB.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_GB.properties
deleted file mode 100755
index 30e0616..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_GB.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-GBP=\u00A3
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IE.properties
deleted file mode 100755
index 3a72f05..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IE.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-IEP=IR\u00A3
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IN.properties
deleted file mode 100755
index a57871d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_IN.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-INR=Rs.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_MT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_MT.properties
deleted file mode 100755
index 0cd749b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_MT.properties
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-MTL=Lm
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_NZ.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_NZ.properties
deleted file mode 100755
index 2afb18e..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_NZ.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-NZD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_PH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_PH.properties
deleted file mode 100755
index a26d9c1..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_PH.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-PHP=Php
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_SG.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_SG.properties
deleted file mode 100755
index 9eced4d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_SG.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-SGD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_US.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_US.properties
deleted file mode 100755
index f8fef79..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_US.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-USD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_ZA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_ZA.properties
deleted file mode 100755
index 50fead9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_en_ZA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ZAR=R
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es.properties
deleted file mode 100755
index 9ea7553..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es.properties
+++ /dev/null
@@ -1,278 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=peseta andorrana
-aed=d\u00edrham de los Emiratos \u00c1rabes Unidos
-afa=afgani (1927-2002)
-afn=afgani
-all=lek alban\u00e9s
-amd=dram armenio
-ang=flor\u00edn de las Antillas Neerlandesas
-aoa=kwanza angole\u00f1o
-ars=peso argentino
-ats=chel\u00edn austriaco
-aud=d\u00f3lar australiano
-awg=flor\u00edn de Aruba
-azm=manat azer\u00ed (1993-2006)
-azn=manat azer\u00ed
-bam=marco convertible de Bosnia-Herzegovina
-bbd=d\u00f3lar de Barbados
-bdt=taka de Bangladesh
-bef=franco belga
-bgl=lev fuerte b\u00falgaro
-bgn=nuevo lev b\u00falgaro
-bhd=dinar bahrein\u00ed
-bif=franco de Burundi
-bmd=d\u00f3lar de Bermudas
-bnd=d\u00f3lar de Brun\u00e9i
-bob=boliviano
-bov=MVDOL boliviano
-brl=real brasile\u00f1o
-bsd=d\u00f3lar de las Bahamas
-btn=ngultrum butan\u00e9s
-bwp=pula botsuano
-byb=nuevo rublo bielorruso (1994-1999)
-byr=rublo bielorruso
-bzd=d\u00f3lar de Belice
-cad=d\u00f3lar canadiense
-cdf=franco congole\u00f1o
-chf=franco suizo
-clf=unidad de fomento chilena
-clp=peso chileno
-cny=yuan renminbi chino
-cop=peso colombiano
-crc=col\u00f3n costarricense
-csd=antiguo dinar serbio
-cuc=peso cubano convertible
-cup=peso cubano
-cve=escudo de Cabo Verde
-cyp=libra chipriota
-czk=corona checa
-dem=marco alem\u00e1n
-djf=franco de Yibuti
-dkk=corona danesa
-dop=peso dominicano
-dzd=dinar argelino
-eek=corona estonia
-egp=libra egipcia
-ern=nakfa eritreo
-esp=peseta espa\u00f1ola
-etb=birr et\u00edope
-eur=euro
-fim=marco finland\u00e9s
-fjd=d\u00f3lar de las Islas Fiyi
-fkp=libra de las Islas Malvinas
-frf=franco franc\u00e9s
-gbp=libra esterlina brit\u00e1nica
-gel=lari georgiano
-ghc=cedi ghan\u00e9s (1979-2007)
-ghs=cedi ghan\u00e9s
-gip=libra de Gibraltar
-gmd=dalasi gambiano
-gnf=franco guineano
-grd=dracma griego
-gtq=quetzal guatemalteco
-gwp=peso de Guinea-Biss\u00e1u
-gyd=d\u00f3lar guyan\u00e9s
-hkd=d\u00f3lar de Hong Kong
-hnl=lempira hondure\u00f1o
-hrk=kuna croata
-htg=gourde haitiano
-huf=flor\u00edn h\u00fangaro
-idr=rupia indonesia
-iep=libra irlandesa
-ils=nuevo sheqel israel\u00ed
-inr=rupia india
-iqd=dinar iraqu\u00ed
-irr=rial iran\u00ed
-isk=corona islandesa
-itl=lira italiana
-jmd=d\u00f3lar de Jamaica
-jod=dinar jordano
-jpy=yen japon\u00e9s
-kes=chel\u00edn keniata
-kgs=som kirgu\u00eds
-khr=riel camboyano
-kmf=franco comorense
-kpw=won norcoreano
-krw=won surcoreano
-kwd=dinar kuwait\u00ed
-kyd=d\u00f3lar de las Islas Caim\u00e1n
-kzt=tenge kazako
-lak=kip laosiano
-lbp=libra libanesa
-lkr=rupia de Sri Lanka
-lrd=d\u00f3lar liberiano
-lsl=loti lesothense
-ltl=litas lituano
-luf=franco luxemburgu\u00e9s
-lvl=lats let\u00f3n
-lyd=dinar libio
-mad=dirham marroqu\u00ed
-mdl=leu moldavo
-mga=ariary malgache
-mgf=franco malgache
-mkd=dinar macedonio
-mmk=kyat de Myanmar
-mnt=tugrik mongol
-mop=pataca de Macao
-mro=ouguiya mauritano
-mtl=lira maltesa
-mur=rupia mauriciana
-mvr=rufiyaa de Maldivas
-mwk=kwacha de Malawi
-mxn=peso mexicano
-mxv=unidad de inversi\u00f3n (UDI) mexicana
-myr=ringgit malasio
-mzm=antiguo metical mozambique\u00f1o
-mzn=metical mozambique\u00f1o
-nad=d\u00f3lar de Namibia
-ngn=naira nigeriano
-nio=c\u00f3rdoba oro nicarag\u00fcense
-nlg=flor\u00edn neerland\u00e9s
-nok=corona noruega
-npr=rupia nepalesa
-nzd=d\u00f3lar neozeland\u00e9s
-omr=rial oman\u00ed
-pab=balboa paname\u00f1o
-pen=nuevo sol peruano
-pgk=kina de Pap\u00faa Nueva Guinea
-php=peso filipino
-pkr=rupia pakistan\u00ed
-pln=zloty polaco
-pte=escudo portugu\u00e9s
-pyg=guaran\u00ed paraguayo
-qar=riyal de Qatar
-rol=antiguo leu rumano
-ron=leu rumano
-rsd=dinar serbio
-rub=rublo ruso
-rur=rublo ruso (1991-1998)
-rwf=franco ruand\u00e9s
-sar=riyal saud\u00ed
-sbd=d\u00f3lar de las Islas Salom\u00f3n
-scr=rupia de Seychelles
-sdd=dinar sudan\u00e9s
-sdg=libra sudanesa
-sek=corona sueca
-sgd=d\u00f3lar singapurense
-shp=libra de Santa Elena
-sit=t\u00f3lar esloveno
-skk=corona eslovaca
-sll=leone de Sierra Leona
-sos=chel\u00edn somal\u00ed
-srd=d\u00f3lar surinam\u00e9s
-srg=flor\u00edn surinam\u00e9s
-std=dobra de Santo Tom\u00e9 y Pr\u00edncipe
-svc=col\u00f3n salvadore\u00f1o
-syp=libra siria
-szl=lilangeni suazi
-thb=baht tailand\u00e9s
-tjs=somoni tayiko
-tmm=manat turcomano
-tmt=nuevo manat turcomano
-tnd=dinar tunecino
-top=pa\u02bbanga tongano
-tpe=escudo timorense
-trl=lira turca antigua
-try=nueva lira turca
-ttd=d\u00f3lar de Trinidad y Tobago
-twd=nuevo d\u00f3lar taiwan\u00e9s
-tzs=chel\u00edn tanzano
-uah=grivna ucraniana
-ugx=chel\u00edn ugand\u00e9s
-usd=d\u00f3lar estadounidense
-usn=d\u00f3lar estadounidense (d\u00eda siguiente)
-uss=d\u00f3lar estadounidense (mismo d\u00eda)
-uyu=peso uruguayo
-uzs=sum uzbeko
-veb=bol\u00edvar venezolano
-vef=bol\u00edvar fuerte venezolano
-vnd=dong vietnamita
-vuv=vatu vanuatuense
-wst=tala samoano
-xaf=franco CFA BEAC
-xag=plata
-xau=oro
-xba=unidad compuesta europea
-xbb=unidad monetaria europea
-xbc=unidad de cuenta europea (XBC)
-xbd=unidad de cuenta europea (XBD)
-xcd=d\u00f3lar del Caribe Oriental
-xdr=derechos especiales de giro
-xfo=franco oro franc\u00e9s
-xfu=franco UIC franc\u00e9s
-xof=franco CFA BCEAO
-xpd=paladio
-xpf=franco CFP
-xpt=platino
-xts=c\u00f3digo reservado para pruebas
-xxx=Sin divisa
-yer=rial yemen\u00ed
-yum=super dinar yugoslavo
-zar=rand sudafricano
-zmk=kwacha zambiano
-zwd=d\u00f3lar de Zimbabue
-zwl=d\u00f3lar zimbabuense
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_AR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_AR.properties
deleted file mode 100755
index 7c5e137..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_AR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ARS=$
-USD=US$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_BO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_BO.properties
deleted file mode 100755
index 40b17b3..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_BO.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-BOB=B$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CL.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CL.properties
deleted file mode 100755
index 3ceace6..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CL.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CLP=Ch$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CO.properties
deleted file mode 100755
index c684c54..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CO.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-COP=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CR.properties
deleted file mode 100755
index 4330f9e..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CR.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CRC=C
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CU.properties
deleted file mode 100755
index 23ebbef..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_CU.properties
+++ /dev/null
@@ -1,67 +0,0 @@
-#
-# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-CUP=CU$
-CUC=CUC$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_DO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_DO.properties
deleted file mode 100755
index f746a08..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_DO.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-DOP=RD$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_EC.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_EC.properties
deleted file mode 100755
index f8fef79..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_EC.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-USD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_ES.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_ES.properties
deleted file mode 100755
index 7dd49e6..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_ES.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-ESP=Pts
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_GT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_GT.properties
deleted file mode 100755
index 2cc3253..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_GT.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-GTQ=Q
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_HN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_HN.properties
deleted file mode 100755
index 33269e0..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_HN.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-HNL=L
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_MX.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_MX.properties
deleted file mode 100755
index 9b15a12..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_MX.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-MXN=$
-USD=US$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_NI.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_NI.properties
deleted file mode 100755
index 59486dc..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_NI.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-NIO=$C
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PA.properties
deleted file mode 100755
index 1912c1a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-PAB=B
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PE.properties
deleted file mode 100755
index 4e05b3d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PE.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-PEN=S/
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PR.properties
deleted file mode 100755
index f8fef79..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PR.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-USD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PY.properties
deleted file mode 100755
index c820d53..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_PY.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-PYG=G
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_SV.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_SV.properties
deleted file mode 100755
index 04ac7f7..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_SV.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-SVC=C
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_US.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_US.properties
deleted file mode 100755
index a0a3c31..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_US.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-USD=US$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_UY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_UY.properties
deleted file mode 100755
index ea25ef2..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_UY.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-UYU=NU$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_VE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_VE.properties
deleted file mode 100755
index dd5b782..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_es_VE.properties
+++ /dev/null
@@ -1,40 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-VEB=Bs
-VEF=Bs.F.
-
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_et_EE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_et_EE.properties
deleted file mode 100755
index 333360e..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_et_EE.properties
+++ /dev/null
@@ -1,69 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-EEK=kr
-eek=Eesti kroon
-EUR=\u20ac
-eur=euro
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fi_FI.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fi_FI.properties
deleted file mode 100755
index 6e37ff0..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fi_FI.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-FIM=mk
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr.properties
deleted file mode 100755
index ecba10c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr.properties
+++ /dev/null
@@ -1,277 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=peseta andorrane
-aed=dirham des \u00c9mirats arabes unis
-afa=afghani (1927\u20132002)
-afn=afghani
-all=lek albanais
-amd=dram arm\u00e9nien
-ang=florin antillais
-aoa=kwanza angolais
-ars=peso argentin
-ats=schilling autrichien
-aud=dollar australien
-awg=florin arubais
-azm=manat az\u00e9ri (1993-2006)
-azn=manat az\u00e9ri
-bam=mark convertible bosniaque
-bbd=dollar barbadien
-bdt=taka bangladeshi
-bef=franc belge
-bgl=lev bulgare (1962\u20131999)
-bgn=nouveau lev bulgare
-bhd=dinar bahre\u00efni
-bif=franc burundais
-bmd=dollar bermudien
-bnd=dollar brun\u00e9ien
-bob=boliviano
-bov=mvdol bolivien
-brl=r\u00e9al br\u00e9silien
-bsd=dollar baham\u00e9en
-btn=ngultrum bouthanais
-bwp=pula botswanais
-byb=nouveau rouble bi\u00e9lorusse (1994-1999)
-byr=rouble bi\u00e9lorusse
-bzd=dollar b\u00e9liz\u00e9en
-cad=dollar canadien
-cdf=franc congolais
-chf=franc suisse
-clf=unit\u00e9 d\u2019investissement chilienne
-clp=peso chilien
-cny=yuan renminbi chinois
-cop=peso colombien
-crc=col\u00f3n costaricain
-csd=dinar serbo-mont\u00e9n\u00e9grin
-cuc=peso cubain convertible
-cup=peso cubain
-cve=escudo capverdien
-cyp=livre chypriote
-czk=couronne tch\u00e8que
-dem=mark allemand
-djf=franc djiboutien
-dkk=couronne danoise
-dop=peso dominicain
-dzd=dinar alg\u00e9rien
-eek=couronne estonienne
-egp=livre \u00e9gyptienne
-ern=nafka \u00e9rythr\u00e9en
-esp=peseta espagnole
-etb=birr \u00e9thiopien
-eur=euro
-fim=mark finlandais
-fjd=dollar fidjien
-fkp=livre des Falkland
-frf=franc fran\u00e7ais
-gbp=livre sterling
-gel=lari g\u00e9orgien
-ghc=c\u00e9di
-ghs=c\u00e9di ghan\u00e9en
-gip=livre de Gibraltar
-gmd=dalasi gambien
-gnf=franc guin\u00e9en
-grd=drachme grecque
-gtq=quetzal guat\u00e9malt\u00e8que
-gwp=peso bissau-guin\u00e9en
-gyd=dollar du Guyana
-hkd=dollar de Hong Kong
-hnl=lempira hondurien
-hrk=kuna croate
-htg=gourde ha\u00eftienne
-huf=forint hongrois
-idr=roupie indon\u00e9sienne
-iep=livre irlandaise
-ils=nouveau shekel isra\u00e9lien
-inr=roupie indienne
-iqd=dinar irakien
-irr=rial iranien
-isk=couronne islandaise
-itl=lire italienne
-jmd=dollar jama\u00efcain
-jod=dinar jordanien
-jpy=yen japonais
-kes=shilling k\u00e9nyan
-kgs=som kirghize
-khr=riel cambodgien
-kmf=franc comorien
-kpw=won nord-cor\u00e9en
-krw=won sud-cor\u00e9en
-kwd=dinar kowe\u00eftien
-kyd=dollar des \u00eeles Ca\u00efmanes
-kzt=tenge kazakh
-lak=kip loatien
-lbp=livre libanaise
-lkr=roupie srilankaise
-lrd=dollar lib\u00e9rien
-lsl=loti lesothan
-ltl=litas lituanien
-luf=franc luxembourgeois
-lvl=lats letton
-lyd=dinar lybien
-mad=dirham marocain
-mdl=leu moldave
-mga=ariary malgache
-mgf=franc malgache
-mkd=denar mac\u00e9donien
-mmk=kyat myanmarais
-mnt=tugrik mongol
-mop=pataca macanaise
-mro=ouguiya mauritanien
-mtl=lire maltaise
-mur=roupie mauricienne
-mvr=rufiyaa maldivienne
-mwk=kwacha malawite
-mxn=peso mexicain
-mxv=unit\u00e9 de conversion mexicaine (UDI)
-myr=ringgit malais
-mzm=m\u00e9tical
-mzn=metical mozambicain
-nad=dollar namibien
-ngn=naira nig\u00e9rian
-nio=c\u00f3rdoba oro nicaraguayen
-nlg=florin n\u00e9erlandais
-nok=couronne norv\u00e9gienne
-npr=roupie n\u00e9palaise
-nzd=dollar n\u00e9o-z\u00e9landais
-omr=rial omani
-pab=balboa panam\u00e9en
-pen=nouveau sol p\u00e9ruvien
-pgk=kina papouan-n\u00e9o-guin\u00e9en
-php=peso philippin
-pkr=roupie pakistanaise
-pln=zloty polonais
-pte=escudo portugais
-pyg=guaran\u00ed paraguayen
-qar=rial qatari
-rol=ancien leu roumain
-ron=leu roumain
-rsd=dinar serbe
-rub=rouble russe
-rur=rouble russe (1991\u20131998)
-rwf=franc rwandais
-sar=rial saoudien
-sbd=dollar des \u00eeles Salomon
-scr=roupie des Seychelles
-sdd=dinar soudanais
-sdg=livre soudanaise
-sek=couronne su\u00e9doise
-sgd=dollar de Singapour
-shp=livre de Sainte-H\u00e9l\u00e8ne
-sit=tolar slov\u00e8ne
-skk=couronne slovaque
-sll=leone sierra-l\u00e9onais
-sos=shilling somalien
-srd=dollar surinamais
-srg=florin surinamais
-std=dobra santom\u00e9en
-svc=col\u00f3n salvadorien
-syp=livre syrienne
-szl=lilangeni swazi
-thb=baht tha\u00eflandais
-tjs=somoni tadjik
-tmm=manat turkm\u00e8ne
-tmt=nouveau manat turkm\u00e8ne
-tnd=dinar tunisien
-top=pa\u2019anga tongan
-tpe=escudo timorais
-trl=livre turque
-try=nouvelle livre turque
-ttd=dollar trinidadien
-twd=nouveau dollar ta\u00efwanais
-tzs=shilling tanzanien
-uah=hryvnia ukrainienne
-ugx=shilling ougandais
-usd=dollar des \u00c9tats-Unis
-usn=dollar des Etats-Unis (jour suivant)
-uss=dollar des Etats-Unis (jour m\u00eame)
-uyu=peso uruguayen
-uzs=sum ouzbek
-veb=bolivar
-vef=bolivar fuerte v\u00e9n\u00e9zu\u00e9lien
-vnd=d\u00f4ng vietnamien
-vuv=vatu vanuatuan
-wst=tala samoan
-xaf=franc CFA (BEAC)
-xag=argent
-xau=or
-xba=unit\u00e9 europ\u00e9enne compos\u00e9e
-xbb=unit\u00e9 mon\u00e9taire europ\u00e9enne
-xbc=unit\u00e9 de compte europ\u00e9enne (XBC)
-xbd=unit\u00e9 de compte europ\u00e9enne (XBD)
-xcd=dollar des Cara\u00efbes orientales
-xdr=droit de tirage sp\u00e9cial
-xfo=franc or
-xfu=franc UIC
-xof=franc CFA (BCEAO)
-xpd=palladium
-xpf=franc CFP
-xpt=platine
-xts=(devise de test)
-xxx=devise inconnue ou non valide
-yer=rial y\u00e9m\u00e9nite
-yum=dinar yougoslave Noviy
-zar=rand sud-africain
-zmk=kwacha zambien
-zwd=dollar zimbabw\u00e9en
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_BE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_BE.properties
deleted file mode 100755
index dcb952d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_BE.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-BEF=FB
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CA.properties
deleted file mode 100755
index 33f98dc..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CAD=$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CH.properties
deleted file mode 100755
index 0475667..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_CH.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CHF=SFr.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_FR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_FR.properties
deleted file mode 100755
index 87f0d57..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_FR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-FRF=F
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_LU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_LU.properties
deleted file mode 100755
index 6c757a1..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_fr_LU.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-LUF=F
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ga_IE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ga_IE.properties
deleted file mode 100755
index 894bc6b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ga_IE.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hi_IN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_hi_IN.properties
deleted file mode 100755
index 5863f04..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hi_IN.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-INR=\u0930\u0942
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hr_HR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_hr_HR.properties
deleted file mode 100755
index 22d1c41..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hr_HR.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-HRK=Kn
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hu_HU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_hu_HU.properties
deleted file mode 100755
index 673f811..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_hu_HU.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-HUF=Ft
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_in_ID.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_in_ID.properties
deleted file mode 100755
index 193075b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_in_ID.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-IDR=Rp
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_is_IS.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_is_IS.properties
deleted file mode 100755
index ad9389f..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_is_IS.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ISK=kr.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_it.properties
deleted file mode 100755
index 9e3ad2a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it.properties
+++ /dev/null
@@ -1,267 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=Peseta Andorrana
-aed=Dirham degli Emirati Arabi Uniti
-afa=Afgani (1927-2002)
-afn=Afgani
-all=Lek Albanese
-amd=Dram Armeno
-ang=Fiorino delle Antille Olandesi
-aoa=Kwanza Angolano
-ars=Peso Argentino
-ats=Scellino Austriaco
-aud=Dollaro Australiano
-awg=Fiorino di Aruba
-azm=Manat Azero (1993-2006)
-bam=Marco Conv. Bosnia-Erzegovina
-bbd=Dollaro di Barbados
-bdt=Taka Bangladese
-bef=Franco Belga
-bgl=Lev Bulgaro
-bgn=Nuovo Lev Bulgaro
-bhd=Dinaro del Bahraini
-bif=Franco del Burundi
-bmd=Dollaro delle Bermuda
-bnd=Dollaro del Brunei
-bob=Boliviano
-bov=Mvdol Boliviano
-brl=Real Brasiliano
-bsd=Dollaro delle Bahamas
-btn=Ngultrum Butanese
-bwp=Pula del Botswana
-byb=Nuovo Rublo Bielorussia (1994-1999)
-byr=Rublo Bielorussia
-bzd=Dollaro Belize
-cad=Dollaro Canadese
-cdf=Franco Congolese
-chf=Franco Svizzero
-clf=Unidades de Fomento Chilene
-clp=Peso Cileno
-cny=Renmimbi Cinese
-cop=Peso Colombiano
-crc=Col\u00f3n Costaricano
-cup=Peso Cubano
-cve=Escudo del Capo Verde
-cyp=Sterlina Cipriota
-czk=Corona Ceca
-dem=Marco Tedesco
-djf=Franco Gibutiano
-dkk=Corona Danese
-dop=Peso Dominicano
-dzd=Dinaro Algerino
-eek=Corona dell\u2019Estonia
-egp=Sterlina Egiziana
-ern=Nakfa Eritreo
-esp=Peseta Spagnola
-etb=Birr Etiopico
-fim=Markka Finlandese
-fjd=Dollaro delle Figi
-fkp=Sterlina delle Falkland
-frf=Franco Francese
-gbp=Sterlina Inglese
-gel=Lari Georgiano
-ghc=Cedi del Ghana
-ghs=Cedi ghanese
-gip=Sterlina di Gibilterra
-gmd=Dalasi del Gambia
-gnf=Franco della Guinea
-grd=Dracma Greca
-gtq=Quetzal Guatemalteco
-gwp=Peso della Guinea-Bissau
-gyd=Dollaro della Guyana
-hkd=Dollaro di Hong Kong
-hnl=Lempira Hoduregno
-hrk=Kuna Croata
-htg=Gourde Haitiano
-huf=Fiorino Ungherese
-idr=Rupia Indonesiana
-iep=Sterlina irlandese
-ils=Nuovo sheqel israeliano
-inr=Rupia Indiana
-iqd=Dinaro Iracheno
-irr=Rial Iraniano
-isk=Corona Islandese
-itl=Lira Italiana
-jmd=Dollaro Giamaicano
-jod=Dinaro Giordano
-jpy=Yen Giapponese
-kes=Scellino Keniota
-kgs=Som Kirghiso
-khr=Riel Cambogiano
-kmf=Franco Comoriano
-kpw=Won Nordcoreano
-krw=Won Sudcoreano
-kwd=Dinaro Kuwaitiano
-kyd=Dollaro delle Isole Cayman
-kzt=Tenge Kazaco
-lak=Kip Laotiano
-lbp=Sterlina Libanese
-lkr=Rupia di Sri Lanka
-lrd=Dollaro Liberiano
-lsl=Loti del Lesotho
-ltl=Lita Lituana
-luf=Franco del Lussemburgo
-lvl=Lat Lettone
-lyd=Dinaro Libico
-mad=Dirham Marocchino
-mdl=Leu Moldavo
-mga=Ariary Malgascio
-mgf=Franco Malgascio
-mkd=Dinaro Macedone
-mmk=Kyat di Myanmar
-mnt=Tugrik Mongolo
-mop=Pataca di Macao
-mro=Ouguiya della Mauritania
-mtl=Lira Maltese
-mur=Rupia Mauriziana
-mvr=Rufiyaa delle Maldive
-mwk=Kwacha Malawiano
-mxn=Peso Messicano
-mxv=Unidad de Inversion (UDI) Messicana
-myr=Ringgit della Malesia
-mzn=Metical del Mozambico
-nad=Dollaro Namibiano
-ngn=Naira Nigeriana
-nio=C\u00f3rdoba oro nicaraguense
-nlg=Fiorino Olandese
-nok=Corona Norvegese
-npr=Rupia Nepalese
-nzd=Dollaro Neozelandese
-omr=Rial Omanita
-pab=Balboa di Panama
-pen=Sol Nuevo Peruviano
-pgk=Kina della Papua Nuova Guinea
-php=Peso delle Filippine
-pkr=Rupia del Pakistan
-pln=Zloty Polacco
-pte=Escudo Portoghese
-pyg=Guarani del Paraguay
-qar=Rial del Qatar
-rol=Leu della Romania
-rsd=Dinaro serbo
-rub=Rublo Russo
-rur=Rublo della CSI
-rwf=Franco Ruandese
-sar=Ryal Saudita
-sbd=Dollaro delle Isole Solomon
-scr=Rupia delle Seychelles
-sdd=Dinaro Sudanese
-sdg=Sterlina sudanese
-sek=Corona Svedese
-sgd=Dollaro di Singapore
-shp=Sterlina di Sant\u2019Elena
-sit=Tallero Sloveno
-skk=Corona Slovacca
-sll=Leone della Sierra Leone
-sos=Scellino Somalo
-srd=Dollaro surinamese
-srg=Fiorino del Suriname
-std=Dobra di Sao Tom\u00e9 e Principe
-svc=Col\u00f3n Salvadoregno
-syp=Sterlina Siriana
-szl=Lilangeni dello Swaziland
-thb=Baht Tailandese
-tjs=Somoni del Tajikistan
-tmm=Manat Turkmeno
-tnd=Dinaro Tunisino
-top=Pa\u02bbanga di Tonga
-tpe=Escudo di Timor
-trl=Lira Turca
-ttd=Dollaro di Trinidad e Tobago
-twd=Nuovo dollaro taiwanese
-tzs=Scellino della Tanzania
-uah=Hrivna Ucraina
-ugx=Scellino Ugandese
-usd=Dollaro Statunitense
-usn=Dollaro Statunitense (Next day)
-uss=Dollaro Statunitense (Same day)
-uyu=Peso Uruguayo uruguaiano
-uzs=Sum dell\u2019Uzbekistan
-veb=Bolivar Venezuelano
-vef=Bol\u00edvar venezuelano forte
-vnd=Dong Vietnamita
-vuv=Vatu di Vanuatu
-wst=Tala della Samoa Occidentale
-xaf=Franco CFA BEAC
-xag=Argento
-xau=Oro
-xba=Unit\u00e0 composita europea
-xbb=Unit\u00e0 monetaria europea
-xbc=Unit\u00e0 di acconto europea (XBC)
-xbd=Unit\u00e0 di acconto europea (XBD)
-xcd=Dollaro dei Caraibi Orientali
-xdr=Diritti Speciali di Incasso
-xfo=Franco Oro Francese
-xfu=Franco UIC Francese
-xof=Franco CFA BCEAO
-xpd=Palladio
-xpf=Franco CFP
-xxx=Nessuna valuta
-yer=Rial dello Yemen
-yum=Dinaro Noviy Yugoslavo
-zar=Rand Sudafricano
-zmk=Kwacha dello Zambia
-zwd=Dollaro dello Zimbabwe
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_CH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_CH.properties
deleted file mode 100755
index 0475667..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_CH.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-CHF=SFr.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_IT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_IT.properties
deleted file mode 100755
index db66ef4..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_it_IT.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-ITL=L.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_iw_IL.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_iw_IL.properties
deleted file mode 100755
index 939d9a6..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_iw_IL.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ILS=\u05e9\"\u05d7
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja.properties
deleted file mode 100755
index afbc0c7..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja.properties
+++ /dev/null
@@ -1,278 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=\u30a2\u30f3\u30c9\u30e9 \u30da\u30bb\u30bf
-aed=UAE \u30c7\u30a3\u30eb\u30cf\u30e0
-afa=\u30a2\u30d5\u30ac\u30cb\u30fc (1927-2002)
-afn=\u30a2\u30d5\u30ac\u30cb\u30fc
-all=\u30a2\u30eb\u30d0\u30cb\u30a2 \u30ec\u30af
-amd=\u30a2\u30eb\u30e1\u30cb\u30a2 \u30c9\u30e9\u30e0
-ang=\u30aa\u30e9\u30f3\u30c0\u9818\u30a2\u30f3\u30c6\u30a3\u30eb \u30ae\u30eb\u30c0\u30fc
-aoa=\u30af\u30ef\u30f3\u30b6
-ars=\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3 \u30da\u30bd
-ats=\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2 \u30b7\u30ea\u30f3\u30b0
-aud=\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2 \u30c9\u30eb
-awg=\u30a2\u30eb\u30d0 \u30ae\u30eb\u30c0\u30fc
-azm=\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3 \u30de\u30ca\u30c8 (1993-2006)
-azn=\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3 \u30de\u30ca\u30c8
-bam=\u30dc\u30b9\u30cb\u30a2 \u30de\u30eb\u30af (BAM)
-bbd=\u30d0\u30eb\u30d0\u30c9\u30b9 \u30c9\u30eb
-bdt=\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5 \u30bf\u30ab
-bef=\u30d9\u30eb\u30ae\u30fc \u30d5\u30e9\u30f3
-bgl=\u30d6\u30eb\u30ac\u30ea\u30a2 \u30ec\u30d5
-bgn=\u30d6\u30eb\u30ac\u30ea\u30a2 \u65b0\u30ec\u30d5
-bhd=\u30d0\u30fc\u30ec\u30fc\u30f3 \u30c7\u30a3\u30ca\u30fc\u30eb
-bif=\u30d6\u30eb\u30f3\u30b8 \u30d5\u30e9\u30f3
-bmd=\u30d0\u30df\u30e5\u30fc\u30c0 \u30c9\u30eb
-bnd=\u30d6\u30eb\u30cd\u30a4 \u30c9\u30eb
-bob=\u30dc\u30ea\u30d3\u30a2\u30fc\u30ce
-bov=\u30dc\u30ea\u30d3\u30a2 Mvdol
-brl=\u30d6\u30e9\u30b8\u30eb \u30ec\u30a2\u30eb
-bsd=\u30d0\u30cf\u30de \u30c9\u30eb
-btn=\u30d6\u30fc\u30bf\u30f3 \u30cb\u30e5\u30eb\u30bf\u30e0
-bwp=\u30dc\u30c4\u30ef\u30ca \u30d7\u30e9
-byb=\u30d9\u30e9\u30eb\u30fc\u30b7 \u30eb\u30fc\u30d6\u30eb (1994-1999)
-byr=\u30d9\u30e9\u30eb\u30fc\u30b7 \u30eb\u30fc\u30d6\u30eb
-bzd=\u30d9\u30ea\u30fc\u30ba \u30c9\u30eb
-cad=\u30ab\u30ca\u30c0 \u30c9\u30eb
-cdf=\u30b3\u30f3\u30b4 \u30d5\u30e9\u30f3
-chf=\u30b9\u30a4\u30b9 \u30d5\u30e9\u30f3
-clf=\u30c1\u30ea \u30a6\u30cb\u30c0 \u30c7 \u30d5\u30a9\u30e1\u30f3\u30c8
-clp=\u30c1\u30ea \u30da\u30bd
-cny=\u4e2d\u56fd\u4eba\u6c11\u5143
-cop=\u30b3\u30ed\u30f3\u30d3\u30a2 \u30da\u30bd
-crc=\u30b3\u30b9\u30bf\u30ea\u30ab \u30b3\u30ed\u30f3
-csd=\u30bb\u30eb\u30d3\u30a2\u30f3 \u30c7\u30a3\u30ca\u30fc\u30eb
-cuc=\u30ad\u30e5\u30fc\u30d0 \u514c\u63db\u30da\u30bd
-cup=\u30ad\u30e5\u30fc\u30d0 \u30da\u30bd
-cve=\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7 \u30a8\u30b9\u30af\u30fc\u30c9
-cyp=\u30ad\u30d7\u30ed\u30b9 \u30dd\u30f3\u30c9
-czk=\u30c1\u30a7\u30b3 \u30b3\u30eb\u30ca
-dem=\u30c9\u30a4\u30c4 \u30de\u30eb\u30af
-djf=\u30b8\u30d6\u30c1 \u30d5\u30e9\u30f3
-dkk=\u30c7\u30f3\u30de\u30fc\u30af \u30af\u30ed\u30fc\u30cd
-dop=\u30c9\u30df\u30cb\u30ab \u30da\u30bd
-dzd=\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2 \u30c7\u30a3\u30ca\u30fc\u30eb
-eek=\u30a8\u30b9\u30c8\u30cb\u30a2 \u30af\u30eb\u30fc\u30f3
-egp=\u30a8\u30b8\u30d7\u30c8 \u30dd\u30f3\u30c9
-ern=\u30a8\u30ea\u30c8\u30ea\u30a2 \u30ca\u30af\u30d5\u30a1
-esp=\u30b9\u30da\u30a4\u30f3 \u30da\u30bb\u30bf
-etb=\u30a8\u30c1\u30aa\u30d4\u30a2 \u30d6\u30eb
-eur=\u30e6\u30fc\u30ed
-fim=\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9 \u30de\u30eb\u30ab
-fjd=\u30d5\u30a3\u30b8\u30fc\u8af8\u5cf6 \u30c9\u30eb
-fkp=\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\uff08\u30de\u30eb\u30d3\u30ca\u30b9\uff09\u8af8\u5cf6 \u30dd\u30f3\u30c9
-frf=\u30d5\u30e9\u30f3\u30b9 \u30d5\u30e9\u30f3
-gbp=\u82f1\u56fd\u30dd\u30f3\u30c9
-gel=\u30b0\u30eb\u30b8\u30a2 \u30e9\u30ea
-ghc=\u30ac\u30fc\u30ca \u30bb\u30c7\u30a3 (1979-2007)
-ghs=\u30ac\u30fc\u30ca \u30bb\u30c7\u30a3
-gip=\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb \u30dd\u30f3\u30c9
-gmd=\u30ac\u30f3\u30d3\u30a2 \u30c0\u30e9\u30b7
-gnf=\u30ae\u30cb\u30a2 \u30d5\u30e9\u30f3
-grd=\u30ae\u30ea\u30b7\u30e3 \u30c9\u30e9\u30af\u30de
-gtq=\u30b0\u30a2\u30c6\u30de\u30e9 \u30b1\u30c4\u30a1\u30eb
-gwp=\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6 \u30da\u30bd
-gyd=\u30ac\u30a4\u30a2\u30ca \u30c9\u30eb
-hkd=\u9999\u6e2f\u30c9\u30eb
-hnl=\u30db\u30f3\u30b8\u30e5\u30e9\u30b9 \u30ec\u30f3\u30d4\u30e9
-hrk=\u30af\u30ed\u30a2\u30c1\u30a2 \u30af\u30fc\u30ca
-htg=\u30cf\u30a4\u30c1 \u30b0\u30fc\u30eb\u30c9
-huf=\u30cf\u30f3\u30ac\u30ea\u30fc \u30d5\u30a9\u30ea\u30f3\u30c8
-idr=\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2 \u30eb\u30d4\u30a2
-iep=\u30a2\u30a4\u30ea\u30c3\u30b7\u30e5 \u30dd\u30f3\u30c9
-ils=\u30a4\u30b9\u30e9\u30a8\u30eb\u65b0\u30b7\u30a7\u30b1\u30eb
-inr=\u30a4\u30f3\u30c9 \u30eb\u30d4\u30fc
-iqd=\u30a4\u30e9\u30af \u30c7\u30a3\u30ca\u30fc\u30eb
-irr=\u30a4\u30e9\u30f3 \u30ea\u30a2\u30eb
-isk=\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9 \u30af\u30ed\u30fc\u30ca
-itl=\u30a4\u30bf\u30ea\u30a2 \u30ea\u30e9
-jmd=\u30b8\u30e3\u30de\u30a4\u30ab \u30c9\u30eb
-jod=\u30e8\u30eb\u30c0\u30f3 \u30c7\u30a3\u30ca\u30fc\u30eb
-jpy=\u65e5\u672c\u5186
-kes=\u30b1\u30cb\u30a2 \u30b7\u30ea\u30f3\u30b0
-kgs=\u30ad\u30eb\u30ae\u30b9\u30bf\u30f3 \u30bd\u30e0
-khr=\u30ab\u30f3\u30dc\u30b8\u30a2 \u30ea\u30a8\u30eb
-kmf=\u30b3\u30e2\u30ed \u30d5\u30e9\u30f3
-kpw=\u5317\u671d\u9bae \u30a6\u30a9\u30f3
-krw=\u97d3\u56fd \u30a6\u30a9\u30f3
-kwd=\u30af\u30a6\u30a7\u30fc\u30c8 \u30c7\u30a3\u30ca\u30fc\u30eb
-kyd=\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6 \u30c9\u30eb
-kzt=\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3 \u30c6\u30f3\u30b2
-lak=\u30e9\u30aa\u30b9 \u30ad\u30fc\u30d7
-lbp=\u30ec\u30d0\u30ce\u30f3 \u30dd\u30f3\u30c9
-lkr=\u30b9\u30ea\u30e9\u30f3\u30ab \u30eb\u30d4\u30fc
-lrd=\u30ea\u30d9\u30ea\u30a2 \u30c9\u30eb
-lsl=\u30ec\u30bd\u30c8 \u30ed\u30c6\u30a3
-ltl=\u30ea\u30c8\u30a2\u30cb\u30a2 \u30ea\u30bf\u30b9
-luf=\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30b0 \u30d5\u30e9\u30f3
-lvl=\u30e9\u30c8\u30d3\u30a2 \u30e9\u30c3\u30c4
-lyd=\u30ea\u30d3\u30a2 \u30c7\u30a3\u30ca\u30fc\u30eb
-mad=\u30e2\u30ed\u30c3\u30b3 \u30c7\u30a3\u30eb\u30cf\u30e0
-mdl=\u30e2\u30eb\u30c9\u30d0 \u30ec\u30a4
-mga=\u30de\u30c0\u30ac\u30b9\u30ab\u30eb \u30a2\u30ea\u30a2\u30ea
-mgf=\u30de\u30c0\u30ac\u30b9\u30ab\u30eb \u30d5\u30e9\u30f3
-mkd=\u30de\u30b1\u30c9\u30cb\u30a2 \u30c7\u30ca\u30eb
-mmk=\u30df\u30e3\u30f3\u30de\u30fc \u30c1\u30e3\u30c3\u30c8
-mnt=\u30e2\u30f3\u30b4\u30eb \u30c8\u30b0\u30ed\u30b0
-mop=\u30de\u30ab\u30aa \u30d1\u30bf\u30ab
-mro=\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2 \u30a6\u30ae\u30a2
-mtl=\u30de\u30eb\u30bf \u30ea\u30e9
-mur=\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9 \u30eb\u30d4\u30fc
-mvr=\u30e2\u30eb\u30c7\u30a3\u30d6\u8af8\u5cf6 \u30eb\u30d5\u30a3\u30a2
-mwk=\u30de\u30e9\u30a6\u30a3 \u30af\u30ef\u30c1\u30e3
-mxn=\u30e1\u30ad\u30b7\u30b3 \u30da\u30bd
-mxv=\u30e1\u30ad\u30b7\u30b3 UDI
-myr=\u30de\u30ec\u30fc\u30b7\u30a2 \u30ea\u30f3\u30ae\u30c3\u30c8
-mzm=\u30e2\u30b6\u30f3\u30d4\u30fc\u30af \u30e1\u30c6\u30a3\u30ab\u30eb
-mzn=\u30e2\u30b6\u30f3\u30d3\u30fc\u30af \u30e1\u30c6\u30a3\u30ab\u30eb
-nad=\u30ca\u30df\u30d3\u30a2 \u30c9\u30eb
-ngn=\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2 \u30ca\u30a4\u30e9
-nio=\u30cb\u30ab\u30e9\u30b0\u30a2 \u30b3\u30eb\u30c9\u30d0 \u30aa\u30ed
-nlg=\u30aa\u30e9\u30f3\u30c0 \u30ae\u30eb\u30c0\u30fc
-nok=\u30ce\u30eb\u30a6\u30a7\u30fc \u30af\u30ed\u30fc\u30cd
-npr=\u30cd\u30d1\u30fc\u30eb \u30eb\u30d4\u30fc
-nzd=\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9 \u30c9\u30eb
-omr=\u30aa\u30de\u30fc\u30f3 \u30ea\u30a2\u30eb
-pab=\u30d1\u30ca\u30de \u30d0\u30eb\u30dc\u30a2
-pen=\u30da\u30eb\u30fc \u65b0\u30bd\u30eb
-pgk=\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2 \u30ad\u30ca
-php=\u30d5\u30a3\u30ea\u30d4\u30f3 \u30da\u30bd
-pkr=\u30d1\u30ad\u30b9\u30bf\u30f3 \u30eb\u30d4\u30fc
-pln=\u30dd\u30fc\u30e9\u30f3\u30c9 \u30ba\u30a6\u30a9\u30c6\u30a3
-pte=\u30dd\u30eb\u30c8\u30ac\u30eb \u30a8\u30b9\u30af\u30fc\u30c9
-pyg=\u30d1\u30e9\u30b0\u30a2\u30a4 \u30b0\u30a2\u30e9\u30cb
-qar=\u30ab\u30bf\u30fc\u30eb \u30ea\u30a2\u30eb
-rol=\u30eb\u30fc\u30de\u30cb\u30a2 \u65e7\u30ec\u30a4
-ron=\u30eb\u30fc\u30de\u30cb\u30a2 \u30ec\u30a4
-rsd=\u30c7\u30a3\u30ca\u30fc\u30eb (\u30bb\u30eb\u30d3\u30a2)
-rub=\u30ed\u30b7\u30a2 \u30eb\u30fc\u30d6\u30eb
-rur=\u30ed\u30b7\u30a2 \u30eb\u30fc\u30d6\u30eb (1991-1998)
-rwf=\u30eb\u30ef\u30f3\u30c0 \u30d5\u30e9\u30f3
-sar=\u30b5\u30a6\u30b8 \u30ea\u30e4\u30eb
-sbd=\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6 \u30c9\u30eb
-scr=\u30bb\u30a4\u30b7\u30a7\u30eb \u30eb\u30d4\u30fc
-sdd=\u30b9\u30fc\u30c0\u30f3 \u30c7\u30a3\u30ca\u30fc\u30eb
-sdg=\u30b9\u30fc\u30c0\u30f3 \u30dd\u30f3\u30c9
-sek=\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3 \u30af\u30ed\u30fc\u30ca
-sgd=\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb \u30c9\u30eb
-shp=\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca\u5cf6 \u30dd\u30f3\u30c9
-sit=\u30b9\u30ed\u30d9\u30cb\u30a2 \u30c8\u30e9\u30fc\u30eb
-skk=\u30b9\u30ed\u30d0\u30ad\u30a2 \u30b3\u30eb\u30ca
-sll=\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd \u30ec\u30aa\u30f3
-sos=\u30bd\u30de\u30ea\u30a2 \u30b7\u30ea\u30f3\u30b0
-srd=\u30b9\u30ea\u30ca\u30e0 \u30c9\u30eb
-srg=\u30b9\u30ea\u30ca\u30e0 \u30ae\u30eb\u30c0\u30fc
-std=\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da \u30c9\u30d6\u30e9
-svc=\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb \u30b3\u30ed\u30f3
-syp=\u30b7\u30ea\u30a2 \u30dd\u30f3\u30c9
-szl=\u30b9\u30ef\u30b8\u30e9\u30f3\u30c9 \u30ea\u30e9\u30f3\u30b2\u30cb
-thb=\u30bf\u30a4 \u30d0\u30fc\u30c4
-tjs=\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3 \u30bd\u30e2\u30cb
-tmm=\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3 \u30de\u30ca\u30c8
-tmt=\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3 \u65b0\u30de\u30ca\u30c8
-tnd=\u30c1\u30e5\u30cb\u30b8\u30a2 \u30c7\u30a3\u30ca\u30fc\u30eb
-top=\u30c8\u30f3\u30ac \u30d1\u30fb\u30a2\u30f3\u30ac
-tpe=\u30c6\u30a3\u30e2\u30fc\u30eb \u30a8\u30b9\u30af\u30fc\u30c9
-trl=\u30c8\u30eb\u30b3 \u30ea\u30e9
-try=\u65b0\u30c8\u30eb\u30b3\u30ea\u30e9
-ttd=\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30c8\u30d0\u30b4 \u30c9\u30eb
-twd=\u65b0\u53f0\u6e7e\u30c9\u30eb
-tzs=\u30bf\u30f3\u30b6\u30cb\u30a2 \u30b7\u30ea\u30f3\u30b0
-uah=\u30a6\u30af\u30e9\u30a4\u30ca \u30b0\u30ea\u30d6\u30ca
-ugx=\u30a6\u30ac\u30f3\u30c0 \u30b7\u30ea\u30f3\u30b0
-usd=\u7c73\u30c9\u30eb
-usn=\u7c73\u30c9\u30eb (\u7fcc\u65e5)
-uss=\u7c73\u30c9\u30eb (\u5f53\u65e5)
-uyu=\u30a6\u30eb\u30b0\u30a2\u30a4 \u30da\u30bd
-uzs=\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3 \u30b9\u30e0
-veb=\u30d9\u30cd\u30ba\u30a8\u30e9 \u30dc\u30ea\u30d0\u30eb
-vef=\u30d9\u30cd\u30ba\u30a8\u30e9 \u30dc\u30ea\u30d0\u30eb\u30d5\u30a8\u30eb\u30c6
-vnd=\u30d9\u30c8\u30ca\u30e0 \u30c9\u30f3
-vuv=\u30d0\u30cc\u30a2\u30c4 \u30d0\u30c4
-wst=\u897f\u30b5\u30e2\u30a2 \u30bf\u30e9
-xaf=CFA \u30d5\u30e9\u30f3 BEAC
-xag=\u9280
-xau=\u91d1
-xba=\u30e8\u30fc\u30ed\u30c3\u30d1\u6df7\u5408\u5358\u4f4d (EURCO)
-xbb=\u30e8\u30fc\u30ed\u30c3\u30d1\u901a\u8ca8\u5358\u4f4d (EMU-6)
-xbc=\u30e8\u30fc\u30ed\u30c3\u30d1\u52d8\u5b9a\u5358\u4f4d (EUA-9)
-xbd=\u30e8\u30fc\u30ed\u30c3\u30d1\u52d8\u5b9a\u5358\u4f4d (EUA-17)
-xcd=\u6771\u30ab\u30ea\u30d6 \u30c9\u30eb
-xdr=\u7279\u5225\u5f15\u304d\u51fa\u3057\u6a29
-xfo=\u30d5\u30e9\u30f3\u30b9\u91d1\u30d5\u30e9\u30f3
-xfu=\u30d5\u30e9\u30f3\u30b9 UIC \u30d5\u30e9\u30f3
-xof=CFA \u30d5\u30e9\u30f3 BCEAO
-xpd=\u30d1\u30e9\u30b8\u30a6\u30e0
-xpf=CFP \u30d5\u30e9\u30f3
-xpt=\u30d7\u30e9\u30c1\u30ca
-xts=\u30c6\u30b9\u30c8\u7528\u901a\u8ca8\u30b3\u30fc\u30c9
-xxx=\u4e0d\u660e\u307e\u305f\u306f\u7121\u52b9\u306a\u901a\u8ca8
-yer=\u30a4\u30a8\u30e1\u30f3 \u30ea\u30a2\u30eb
-yum=\u30e6\u30fc\u30b4\u30b9\u30e9\u30d3\u30a2 \u30b9\u30fc\u30d1\u30fc \u30c7\u30a3\u30ca\u30fc\u30eb
-zar=\u5357\u30a2\u30d5\u30ea\u30ab \u30e9\u30f3\u30c9
-zmk=\u30b6\u30f3\u30d3\u30a2 \u30af\u30ef\u30c1\u30e3
-zwd=\u30b8\u30f3\u30d0\u30d6\u30a8 \u30c9\u30eb
-zwl=\u30b8\u30f3\u30d0\u30d6\u30a8 \u30c9\u30eb (2009)
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja_JP.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja_JP.properties
deleted file mode 100755
index 58bfca6..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ja_JP.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-JPY=\uffe5
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko.properties
deleted file mode 100755
index 959bf7c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko.properties
+++ /dev/null
@@ -1,276 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=\uc548\ub3c4\ub77c \ud398\uc138\ud0c0
-aed=\uc544\ub78d\uc5d0\ubbf8\ub9ac\ud2b8 \ub514\ub974\ud568
-afa=\uc544\ud504\uac00\ub2c8 (1927-2002)
-afn=\uc544\ud504\uac00\ub2c8
-all=\uc54c\ubc14\ub2c8\uc544 \ub808\ud06c
-amd=\uc544\ub974\uba54\ub2c8\uc544 \ub4dc\ub78c
-ang=\ub124\ub35c\ub780\ub4dc\ub839 \uc548\ud2f8\ub808\uc2a4 \uae38\ub354
-aoa=\uc559\uace8\ub77c \ucf74\uc790
-ars=\uc544\ub974\ud5e8\ud2f0\ub098 \ud398\uc18c
-ats=\ud638\uc8fc \uc2e4\ub9c1
-aud=\ud638\uc8fc \ub2ec\ub7ec
-awg=\uc544\ub8e8\ubc14 \uae38\ub354
-azm=\uc544\uc81c\ub974\ubc14\uc774\uc820 \ub9c8\ub098\ud2b8(1993-2006)
-azn=\uc544\uc81c\ub974\ubc14\uc774\uc794 \ub9c8\ub098\ud2b8
-bam=\ubcf4\uc2a4\ub2c8\uc544-\ud5e4\ub974\uccb4\uace0\ube44\ub098 \ud0dc\ud658 \ub9c8\ub974\ud06c
-bbd=\ubc14\ubca0\uc774\ub3c4\uc2a4 \ub2ec\ub7ec
-bdt=\ubc29\uae00\ub77c\ub370\uc2dc \ud0c0\uce74
-bef=\ubca8\uae30\uc5d0 \ud504\ub791
-bgl=\ubd88\uac00\ub9ac\uc544 \ub3d9\uc804 \ub81b
-bgn=\ubd88\uac00\ub9ac\uc544 \uc2e0\uad8c \ub81b
-bhd=\ubc14\ub808\uc778 \ub514\ub098\ub974
-bif=\ubd80\ub8ec\ub514 \ud504\ub791
-bmd=\ubc84\ubba4\ub2e4 \ub2ec\ub7ec
-bnd=\ubd80\ub8e8\ub098\uc774 \ub2ec\ub7ec
-bob=\ubcfc\ub9ac\ube44\uc544\ub178
-bov=\ubcfc\ub9ac\ube44\uc544\ub178 Mvdol(\uae30\uae08)
-brl=\ube0c\ub77c\uc9c8 \ub808\uc54c
-bsd=\ubc14\ud558\ub9c8 \ub2ec\ub7ec
-btn=\ubd80\ud0c4 \ub20c\ud22c\ub214
-bwp=\ubcf4\uce20\uc640\ub098 \ud3f4\ub77c
-byb=\ubca8\ub77c\ub8e8\uc2a4 \uc2e0\uad8c \ub8e8\ube14 (1994-1999)
-byr=\ubca8\ub77c\ub8e8\uc2a4 \ub8e8\ube14
-bzd=\ubca8\ub9ac\uc988 \ub2ec\ub7ec
-cad=\uce90\ub098\ub2e4 \ub2ec\ub7ec
-cdf=\ucf69\uace0 \ud504\ub791 \ucf69\uace8\ub77c\uc2a4
-chf=\uc2a4\uc704\uc2a4 \ud504\ub791
-clf=\uce60\ub808 UF (Unidades de Fomento)
-clp=\uce60\ub808 \ud398\uc18c
-cny=\uc911\uad6d \uc704\uc548 \uc778\ubbfc\ud3d0
-cop=\ucf5c\ub86c\ube44\uc544 \ud398\uc18c
-crc=\ucf54\uc2a4\ud0c0\ub9ac\uce74 \ucf5c\ub860
-csd=\uace0 \uc138\ub974\ube44\uc544 \ub514\ub098\ub974
-cuc=\ucfe0\ubc14 \ud0dc\ud658 \ud398\uc18c
-cup=\ucfe0\ubc14 \ud398\uc18c
-cve=\uce74\ubcf4\ubca0\ub974\ub370 \uc5d0\uc2a4\ucfe0\ub3c4
-cyp=\uc2f8\uc774\ud504\ub7ec\uc2a4 \ud30c\uc6b4\ub4dc
-czk=\uccb4\ucf54 \uacf5\ud654\uad6d \ucf54\ub8e8\ub098
-dem=\ub3c5\uc77c \ub9c8\ub974\ud06c
-djf=\uc9c0\ubd80\ud2f0 \ud504\ub791
-dkk=\ub374\ub9c8\ud06c \ud06c\ub85c\ub124
-dop=\ub3c4\ubbf8\ub2c8\uce74 \ud398\uc18c
-dzd=\uc54c\uc81c\ub9ac \ub514\ub098\ub974
-eek=\uc5d0\uc2a4\ud1a0\ub2c8\uc544 \ud06c\ub8ec
-egp=\uc774\uc9d1\ud2b8 \ud30c\uc6b4\ub4dc
-ern=\uc5d0\ub9ac\ud2b8\ub9ac\uc544 \ub098\ud06c\ud30c
-esp=\uc2a4\ud398\uc778 \ud398\uc138\ud0c0
-etb=\uc774\ub514\uc624\ud53c\uc544 \ube44\ub974
-eur=\uc720\ub85c\ud654
-fim=\ud540\ub780\ub4dc \ub9c8\ub974\uce74
-fjd=\ud53c\uc9c0 \ub2ec\ub7ec
-fkp=\ud3ec\ud074\ub79c\ub4dc\uc81c\ub3c4 \ud30c\uc6b4\ub4dc
-frf=\ud504\ub791\uc2a4 \ud504\ub791
-gbp=\uc601\uad6d\ub839 \ud30c\uc6b4\ub4dc \uc2a4\ud138\ub9c1
-gel=\uadf8\ub8e8\uc9c0\uc57c \ub77c\ub9ac
-ghc=\uac00\ub098 \uc2dc\ub514 (1979-2007)
-ghs=\uac00\ub098 \uc2dc\ub514
-gip=\uc9c0\ube0c\ub864\ud130 \ud30c\uc6b4\ub4dc
-gmd=\uac10\ube44\uc544 \ub2ec\ub77c\uc2dc
-gnf=\uae30\ub2c8 \ud504\ub791
-grd=\uadf8\ub9ac\uc2a4 \ub4dc\ub77c\ud06c\ub9c8
-gtq=\uacfc\ud14c\ub9d0\ub77c \ucf00\ud2b8\uc0b4
-gwp=\uae30\ub124\ube44\uc3d8 \ud398\uc18c
-gyd=\uac00\uc774\uc544\ub098 \ub2ec\ub7ec
-hkd=\ud64d\ucf69 \ub2ec\ub7ec
-hnl=\uc628\ub450\ub77c\uc2a4 \ub818\ud53c\ub77c
-hrk=\ud06c\ub85c\uc544\ud2f0\uc544 \ucfe0\ub098
-htg=\ud558\uc774\ud2f0 \uad6c\ub974\ub4dc
-huf=\ud5dd\uac00\ub9ac \ud3ec\ub9b0\ud2b8
-idr=\uc778\ub3c4\ub124\uc2dc\uc544 \ub8e8\ud53c\uc544
-iep=\uc544\uc77c\ub79c\ub4dc \ud30c\uc6b4\ub4dc
-ils=\uc774\uc2a4\ub77c\uc5d8 \uc2e0\uad8c \uc138\ucf08
-inr=\uc778\ub3c4 \ub8e8\ud53c
-iqd=\uc774\ub77c\ud06c \ub514\ub098\ub974
-irr=\uc774\ub780 \ub9ac\uc584
-isk=\uc544\uc774\uc2ac\ub780\ub4dc \ud06c\ub85c\ub098
-itl=\uc774\ud0c8\ub9ac\uc544 \ub9ac\ub77c
-jmd=\uc790\uba54\uc774\uce74 \ub2ec\ub7ec
-jod=\uc694\ub974\ub2e8 \ub514\ub098\ub974
-jpy=\uc77c\ubcf8 \uc5d4\ud654
-kes=\ucf00\ub0d0 \uc2e4\ub9c1
-kgs=\ud0a4\ub974\uae30\uc2a4\uc2a4\ud0c4 \uc19c
-khr=\uce84\ubcf4\ub514\uc544 \ub9ac\uc584
-kmf=\ucf54\ubaa8\ub974 \ud504\ub791
-kpw=\uc870\uc120 \ubbfc\uc8fc\uc8fc\uc758 \uc778\ubbfc \uacf5\ud654\uad6d \uc6d0
-krw=\ub300\ud55c\ubbfc\uad6d \uc6d0
-kwd=\ucfe0\uc6e8\uc774\ud2b8 \ub514\ub098\ub974
-kyd=\ucf00\uc774\ub9e8 \uc81c\ub3c4 \ub2ec\ub7ec
-kzt=\uce74\uc790\ud750\uc2a4\ud0c4 \ud150\uac8c
-lak=\ub77c\uc624\uc2a4 \ud0a4\ud504
-lbp=\ub808\ubc14\ub17c \ud30c\uc6b4\ub4dc
-lkr=\uc2a4\ub9ac\ub791\uce74 \ub8e8\ud53c
-lrd=\ub77c\uc774\ubca0\ub9ac\uc544 \ub2ec\ub7ec
-lsl=\ub808\uc18c\ud1a0 \ub85c\ud2f0
-ltl=\ub9ac\ud22c\uc544\ub2c8\uc544 \ub9ac\ud0c0
-luf=\ub8e9\uc148\ubd80\ub974\ud06c \ud504\ub791
-lvl=\ub77c\ud2b8\ube44\uc544 \ub77c\ud2b8
-lyd=\ub9ac\ube44\uc544 \ub514\ub098\ub974
-mad=\ubaa8\ub85c\ucf54 \ub514\ub818
-mdl=\ubab0\ub3c4\ubc14 \ub808\uc774
-mga=\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974 \uc544\ub9ac\uc544\ub9ac
-mgf=\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974 \ud504\ub791
-mkd=\ub9c8\ucf00\ub3c4\ub2c8\uc544 \ub514\ub098\ub974
-mmk=\ubbf8\uc580\ub9c8 \ud0a4\uc58f
-mnt=\ubabd\uace8 \ud22c\uadf8\ub9ad
-mop=\ub9c8\uce74\uc624 \ud30c\ud0c0\uce74
-mro=\ubaa8\ub9ac\ud0c0\ub2c8 \uc6b0\uae30\uc57c
-mtl=\ubab0\ud0c0 \ub9ac\ub77c
-mur=\ubaa8\ub9ac\uc154\uc2a4 \ub8e8\ud53c
-mvr=\ubab0\ub514\ube0c \uc81c\ub3c4 \ub8e8\ud53c\uc544
-mwk=\ub9d0\ub77c\uc704 \ucf70\uccd0
-mxn=\uba55\uc2dc\ucf54 \ud398\uc18c
-mxv=\uba55\uc2dc\ucf54 UDI(Unidad de Inversion)
-myr=\ub9d0\ub808\uc774\uc2dc\uc544 \ub9c1\uae43
-mzm=\uace0 \ubaa8\uc7a0\ube44\ud06c \uba54\ud2f0\uce7c
-mzn=\ubaa8\uc7a0\ube44\ud06c \uba54\ud2f0\uce7c
-nad=\ub098\ubbf8\ube44\uc544 \ub2ec\ub7ec
-ngn=\ub2c8\uc81c\ub974 \ub098\uc774\ub77c
-nio=\ub2c8\uce74\ub77c\uacfc \ucf54\ub974\ub3c4\ubc14 \uc624\ub85c
-nlg=\ub124\ub378\ub780\ub4dc \uae38\ub354
-nok=\ub178\ub974\uc6e8\uc774 \ud06c\ub85c\ub124
-npr=\ub124\ud314 \ub8e8\ud53c
-nzd=\ub274\uc9c8\ub79c\ub4dc \ub2ec\ub7ec
-omr=\uc624\ub9cc \ub9ac\uc584
-pab=\ud30c\ub098\ub9c8 \ubc1c\ubcf4\uc544
-pen=\ud398\ub8e8 \uc194 \ub204\uc5d0\ubcf4
-pgk=\ud30c\ud478\uc544\ub274\uae30\ub2c8 \ud0a4\ub098
-php=\ud544\ub9ac\ud540 \ud398\uc18c
-pkr=\ud30c\ud0a4\uc2a4\ud0c4 \ub8e8\ud53c
-pln=\ud3f4\ub780\ub4dc \uc990\ub85c\ud2f0
-pte=\ud3ec\ub974\ud22c\uac08 \uc5d0\uc2a4\ucfe0\ub3c4
-pyg=\ud30c\ub77c\uacfc\uc774 \uacfc\ub77c\ub2c8
-qar=\uce74\ud0c0\ub974 \ub9ac\uc584
-rol=\ub8e8\ub9c8\ub2c8\uc544 \ub808\uc774
-ron=\ub8e8\ub9c8\ub2c8\uc544 \ub808\uc6b0
-rsd=\uc138\ub974\ube44\uc544 \ub514\ub098\ub974
-rub=\ub7ec\uc2dc\uc544 \ub8e8\ube14
-rur=\ub7ec\uc2dc\uc544 \ub8e8\ube14 (1991-1998)
-rwf=\ub974\uc644\ub2e4 \ud504\ub791
-sar=\uc0ac\uc6b0\ub514\uc544\ub77c\ube44\uc544 \ub9ac\uc584
-sbd=\uc194\ub85c\ubaac \uc81c\ub3c4 \ub2ec\ub7ec
-scr=\uc138\uc774\uc274 \ub8e8\ud53c
-sdd=\uc218\ub2e8 \ub514\ub098\ub974
-sdg=\uc218\ub2e8 \ud30c\uc6b4\ub4dc
-sek=\uc2a4\uc6e8\ub374 \ud06c\ub85c\ub098
-sgd=\uc2f1\uac00\ud3f4 \ub2ec\ub7ec
-shp=\uc138\uc778\ud2b8\ud5ec\ub808\ub098 \ud30c\uc6b4\ub4dc
-sit=\uc2ac\ub85c\ubca0\ub2c8\uc544 \ud1a8\ub77c\ub974
-skk=\uc2ac\ub85c\ubc14\ud0a4\uc544 \ucf54\ub8e8\ub098
-sll=\uc2dc\uc5d0\ub77c\ub9ac\uc628 \ub9ac\uc628
-sos=\uc18c\ub9d0\ub9ac\uc544 \uc2e4\ub9c1
-srd=\uc218\ub9ac\ub0a8 \ub2ec\ub7ec
-srg=\uc218\ub9ac\ub0a8 \uae38\ub354
-std=\uc0c1\ud22c\uba54 \ud504\ub9b0\uc2dc\ud398 \ub3c4\ube0c\ub77c
-svc=\uc5d8\uc0b4\ubc14\ub3c4\ub974 \ucf5c\ub860
-syp=\uc2dc\ub9ac\uc544 \ud30c\uc6b4\ub4dc
-szl=\uc2a4\uc640\uc9c8\ub780\ub4dc \ub9b4\ub791\uac8c\ub2c8
-thb=\ud0dc\uad6d \ubc14\ud2b8
-tjs=\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4 \uc18c\ubaa8\ub2c8
-tmm=\ud22c\ub974\ud06c\uba54\ub2c8\uc2a4\ud0c4 \ub9c8\ub098\ud2b8
-tnd=\ud280\ub2c8\uc9c0 \ub514\ub098\ub974
-top=\ud1b5\uac00 \ud30c\uc559\uac00
-tpe=\ud2f0\ubaa8\ub974 \uc5d0\uc2a4\ucfe0\ub3c4
-trl=\ud130\ud0a4 \ub9ac\ub77c
-try=\uc2e0 \ud130\ud0a4 \ub9ac\ub77c
-ttd=\ud2b8\ub9ac\ub2c8\ub2e4\ub4dc \ud1a0\ubc14\uace0 \ub2ec\ub7ec
-twd=\ub300\ub9cc \uc2e0\uad8c \ub2ec\ub7ec
-tzs=\ud0c4\uc790\ub2c8\uc544 \uc2e4\ub9c1
-uah=\uc6b0\ud06c\ub77c\uc774\ub098 \uadf8\ub9ac\ube0c\ub098
-ugx=\uc6b0\uac04\ub2e4 \uc2e4\ub9c1
-usd=\ubbf8\uad6d \ub2ec\ub7ec
-usn=\ubbf8\uad6d \ub2ec\ub7ec(\ub2e4\uc74c\ub0a0)
-uss=\ubbf8\uad6d \ub2ec\ub7ec(\ub2f9\uc77c)
-uyu=\uc6b0\ub8e8\uacfc\uc774 \ud398\uc18c \uc6b0\ub8e8\uacfc\uc694
-uzs=\uc6b0\uc988\ubca0\ud0a4\uc2a4\ud0c4 \uc228
-veb=\ubca0\ub124\uc8fc\uc5d8\ub77c \ubcfc\ub9ac\ubc14\ub974
-vef=\ubca0\ub124\uc8fc\uc5d8\ub77c \ubcfc\ub9ac\ubc14\ub974 \ud478\uc5d0\ub974\ub5bc
-vnd=\ubca0\ud2b8\ub0a8 \ub3d9
-vuv=\ubc14\ub204\uc544\ud22c \ubc14\ud22c
-wst=\uc11c \uc0ac\ubaa8\uc544 \ud0c8\ub77c
-xaf=CFA \ud504\ub791 BEAC
-xag=\uc740\ud654
-xau=\uae08
-xba=\uc720\ub974\ucf54 (\uc720\ub7fd \ud68c\uacc4 \ub2e8\uc704)
-xbb=\uc720\ub7fd \ud1b5\ud654 \ub3d9\ub9f9
-xbc=\uc720\ub7fd \uacc4\uc0b0 \ub2e8\uc704 (XBC)
-xbd=\uc720\ub7fd \uacc4\uc0b0 \ub2e8\uc704 (XBD)
-xcd=\ub3d9\uce74\ub9ac\ube0c \ub2ec\ub7ec
-xdr=\ud2b9\ubcc4\uc778\ucd9c\uad8c
-xfo=\ud504\ub791\uc2a4 Gold \ud504\ub791
-xfu=\ud504\ub791\uc2a4 UIC-\ud504\ub791
-xof=CFA \ud504\ub791 BCEAO
-xpd=\ud314\ub77c\ub4d0
-xpf=CFP \ud504\ub791
-xpt=\ubc31\uae08
-xts=\ud14c\uc2a4\ud2b8 \ud1b5\ud654 \ucf54\ub4dc
-xxx=\uc54c\uc218\uc5c6\uac70\ub098 \uc720\ud6a8\ud558\uc9c0\uc54a\uc740 \ud1b5\ud654\ub2e8\uc704
-yer=\uc608\uba58 \ub9ac\uc54c
-yum=\uc720\uace0\uc2ac\ub77c\ube44\uc544 \ub178\ube44 \ub514\ub098\ub974
-zar=\ub0a8\uc544\ud504\ub9ac\uce74 \ub79c\ub4dc
-zmk=\uc7d8\ube44\uc544 \ucf70\uccd0
-zwd=\uc9d0\ubc14\ube0c\uc6e8 \ub2ec\ub7ec
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko_KR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko_KR.properties
deleted file mode 100755
index c9320ee..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ko_KR.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-KRW=\uffe6
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_lt_LT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_lt_LT.properties
deleted file mode 100755
index 7e784dd..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_lt_LT.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-LTL=Lt
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_lv_LV.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_lv_LV.properties
deleted file mode 100755
index d8ed95c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_lv_LV.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-LVL=Ls
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_mk_MK.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_mk_MK.properties
deleted file mode 100755
index 62a45f2..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_mk_MK.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-MKD=Den
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ms_MY.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ms_MY.properties
deleted file mode 100755
index 7829c5c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ms_MY.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-MYR=RM
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_mt_MT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_mt_MT.properties
deleted file mode 100755
index 0cd749b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_mt_MT.properties
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-MTL=Lm
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_BE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_BE.properties
deleted file mode 100755
index c39ed72..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_BE.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-BEF=BF
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_NL.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_NL.properties
deleted file mode 100755
index 007096a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_nl_NL.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-NLG=fl
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_no_NO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_no_NO.properties
deleted file mode 100755
index 1af2443..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_no_NO.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-NOK=kr
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pl_PL.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_pl_PL.properties
deleted file mode 100755
index 47fc2ae..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pl_PL.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-PLN=z\u0142
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt.properties
deleted file mode 100755
index 20a62c8..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt.properties
+++ /dev/null
@@ -1,278 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=Peseta de Andorra
-aed=Dir\u00e9m dos Emirados \u00c1rabes Unidos
-afa=Afegane (1927-2002)
-afn=Afegane
-all=Lek Alban\u00eas
-amd=Dram arm\u00eanio
-ang=Guilder das Antilhas Holandesas
-aoa=Cuanza angolano
-ars=Peso argentino
-ats=Xelim austr\u00edaco
-aud=D\u00f3lar australiano
-awg=Guilder de Aruba
-azm=Manat azerbaijano
-azn=Manat do Azerbaij\u00e3o
-bam=Marco b\u00f3snio-herzegovino convers\u00edvel
-bbd=D\u00f3lar de Barbados
-bdt=Taka de Bangladesh
-bef=Franco belga
-bgl=Lev forte b\u00falgaro
-bgn=Lev novo b\u00falgaro
-bhd=Dinar bareinita
-bif=Franco do Burundi
-bmd=D\u00f3lar das Bermudas
-bnd=D\u00f3lar do Brunei
-bob=Boliviano
-bov=Mvdol boliviano
-brl=Real brasileiro
-bsd=D\u00f3lar das Bahamas
-btn=Ngultrum do But\u00e3o
-bwp=Pula botsuanesa
-byb=Rublo novo bielo-russo (1994-1999)
-byr=Rublo bielo-russo
-bzd=D\u00f3lar do Belize
-cad=D\u00f3lar canadense
-cdf=Franco congol\u00eas
-chf=Franco su\u00ed\u00e7o
-clf=Unidades de Fomento chilenas
-clp=Peso chileno
-cny=Yuan Renminbi chin\u00eas
-cop=Peso colombiano
-crc=Colon da Costa Rica
-csd=Dinar s\u00e9rvio antigo
-cuc=Peso cubano convers\u00edvel
-cup=Peso cubano
-cve=Escudo cabo-verdiano
-cyp=Libra cipriota
-czk=Coroa checa
-dem=Marco alem\u00e3o
-djf=Franco do Djibuti
-dkk=Coroa dinamarquesa
-dop=Peso dominicano
-dzd=Dinar argelino
-eek=Coroa estoniana
-egp=Libra eg\u00edpcia
-ern=Nakfa da Eritreia
-esp=Peseta espanhola
-etb=Birr et\u00edope
-fim=Marca finlandesa
-fjd=D\u00f3lar de Fiji
-fkp=Libra das Malvinas
-frf=Franco franc\u00eas
-gbp=Libra esterlina brit\u00e2nica
-gel=Lari georgiano
-ghc=Cedi de Gana (1979-2007)
-ghs=Cedi gan\u00eas
-gip=Libra de Gibraltar
-gmd=Dalasi de G\u00e2mbia
-gnf=Franco de Guin\u00e9
-grd=Dracma grego
-gtq=Quet\u00e7al da Guatemala
-gwp=Peso da Guin\u00e9-Bissau
-gyd=D\u00f3lar da Guiana
-hkd=D\u00f3lar de Hong Kong
-hnl=Lempira de Honduras
-hrk=Kuna croata
-htg=Gurde do Haiti
-huf=Forinte h\u00fangaro
-idr=Rupia indon\u00e9sia
-iep=Libra irlandesa
-ils=Sheqel Novo israelita
-inr=R\u00fapia indiana
-iqd=Dinar iraquiano
-irr=Rial iraniano
-isk=Coroa islandesa
-itl=Lira italiana
-jmd=D\u00f3lar jamaicano
-jod=Dinar jordaniano
-jpy=Iene japon\u00eas
-kes=Xelim queniano
-kgs=Som quirguiz
-khr=Riel cambojano
-kmf=Franco de Comores
-kpw=Won norte-coreano
-krw=Won sul-coreano
-kwd=Dinar coveitiano
-kyd=D\u00f3lar das Ilhas Caiman
-kzt=Tenge do Cazaquist\u00e3o
-lak=Kip de Laos
-lbp=Libra libanesa
-lkr=Rupia do Sri Lanka
-lrd=D\u00f3lar liberiano
-lsl=Loti do Lesoto
-ltl=Lita lituano
-luf=Franco luxemburgu\u00eas
-lvl=Lats let\u00e3o
-lyd=Dinar l\u00edbio
-mad=Dir\u00e9m marroquino
-mdl=Leu mold\u00e1vio
-mga=Ariary de Madagascar
-mgf=Franco de Madagascar
-mkd=Dinar maced\u00f4nio
-mmk=Kyat de Mianmar
-mnt=Tugrik mongol
-mop=Pataca macaense
-mro=Ouguiya da Maurit\u00e2nia
-mtl=Lira maltesa
-mur=Rupia de Maur\u00edcio
-mvr=Rupias das Ilhas Maldivas
-mwk=Cuacha do Mal\u00e1ui
-mxn=Peso mexicano
-mxv=Unidade Mexicana de Investimento (UDI)
-myr=Ringgit malaio
-mzm=Metical antigo de Mo\u00e7ambique
-mzn=Metical do Mo\u00e7ambique
-nad=D\u00f3lar da Nam\u00edbia
-ngn=Naira nigeriana
-nio=C\u00f3rdoba Ouro nicaraguense
-nlg=Florim holand\u00eas
-nok=Coroa norueguesa
-npr=Rupia nepalesa
-nzd=D\u00f3lar da Nova Zel\u00e2ndia
-omr=Rial de Om\u00e3
-pab=Balboa panamenho
-pen=Sol Novo peruano
-pgk=Kina da Papua-Nova Guin\u00e9
-php=Peso filipino
-pkr=Rupia paquistanesa
-pln=Zloti polon\u00eas
-pte=Escudo portugu\u00eas
-pyg=Guarani paraguaio
-qar=Rial catariano
-rol=Leu romeno antigo
-ron=Leu romeno
-rsd=Dinar s\u00e9rvio
-rub=Rublo russo
-rur=Rublo russo (1991-1998)
-rwf=Franco ruand\u00eas
-sar=Rial saudita
-sbd=D\u00f3lar das Ilhas Salom\u00e3o
-scr=Rupia das Seychelles
-sdd=Dinar sudan\u00eas
-sdg=Libra sudanesa
-sek=Coroa sueca
-sgd=D\u00f3lar de Cingapura
-shp=Libra de Santa Helena
-sit=Tolar Bons esloveno
-skk=Coroa eslovaca
-sll=Leone de Serra Leoa
-sos=Xelim somali
-srd=D\u00f3lar do Suriname
-srg=Florim do Suriname
-std=Dobra de S\u00e3o Tom\u00e9 e Pr\u00edncipe
-svc=Colom salvadorenho
-syp=Libra s\u00edria
-szl=Lilangeni da Suazil\u00e2ndia
-thb=Baht tailand\u00eas
-tjs=Somoni tadjique
-tmm=Manat do Turcomenist\u00e3o
-tmt=Novo Manat do Turcomenist\u00e3o
-tnd=Dinar tunisiano
-top=Pa\u02bbanga de Tonga
-tpe=Escudo timorense
-trl=Lira turca antiga
-try=Lira turca
-ttd=D\u00f3lar de Trinidad e Tobago
-twd=D\u00f3lar Novo de Taiwan
-tzs=Xelim da Tanz\u00e2nia
-uah=Hryvnia ucraniano
-ugx=Xelim ugandense
-usd=D\u00f3lar norte-americano
-usn=D\u00f3lar norte-americano (Dia seguinte)
-uss=D\u00f3lar norte-americano (Mesmo dia)
-uyu=Peso uruguaio
-uzs=Sum do Usbequist\u00e3o
-veb=Bol\u00edvar venezuelano
-vef=Bol\u00edvar v enezuelano forte
-vnd=Dong vietnamita
-vuv=Vatu de Vanuatu
-wst=Tala samoano
-xaf=Franco CFA BEAC
-xag=Prata
-xau=Ouro
-xba=Unidade Composta Europeia
-xbb=Unidade Monet\u00e1ria Europeia
-xbc=Unidade de Conta Europeia (XBC)
-xbd=Unidade de Conta Europeia (XBD)
-xcd=D\u00f3lar do Caribe Oriental
-xdr=Direitos Especiais de Giro
-xfo=Franco-ouro franc\u00eas
-xfu=Franco UIC franc\u00eas
-xof=Franco CFA BCEAO
-xpd=Pal\u00e1dio
-xpf=Franco CFP
-xpt=Platina
-xts=C\u00f3digo de Moeda de Teste
-xxx=Moeda Desconhecida ou Inv\u00e1lida
-yer=Rial iemenita
-yum=Dinar noviy iugoslavo
-zar=Rand sul-africano
-zmk=Cuacha zambiano
-zwd=D\u00f3lar do Zimb\u00e1bue
-zwl=D\u00f3lar do Zimb\u00e1bue (2009)
-zwr=D\u00f3lar do Zimb\u00e1bue (2008)
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_BR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_BR.properties
deleted file mode 100755
index 7b6aba9..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_BR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-BRL=R$
-USD=US$
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_PT.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_PT.properties
deleted file mode 100755
index 1d4b7f7..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_pt_PT.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-PTE=Esc.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ro_RO.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ro_RO.properties
deleted file mode 100755
index 4dea5ae..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ro_RO.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ROL=LEI
-RON=LEI
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ru_RU.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_ru_RU.properties
deleted file mode 100755
index 89fe9c1..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_ru_RU.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-RUB=\u0440\u0443\u0431.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sk_SK.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sk_SK.properties
deleted file mode 100755
index eb10a65..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sk_SK.properties
+++ /dev/null
@@ -1,68 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-SKK=Sk
-skk=Slovensk\u00e1 koruna
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sl_SI.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sl_SI.properties
deleted file mode 100755
index 27a8a7bf..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sl_SI.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-SIT=tol
-EUR=\u20AC
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sq_AL.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sq_AL.properties
deleted file mode 100755
index 98652aa..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sq_AL.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-ALL=Lek
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_BA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_BA.properties
deleted file mode 100755
index 80fe12c..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_BA.properties
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-BAM=\u041a\u041c.
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_CS.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_CS.properties
deleted file mode 100755
index 1ba3f20..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_CS.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_BA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_BA.properties
deleted file mode 100755
index 7dc0375..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_BA.properties
+++ /dev/null
@@ -1,69 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-BAM=KM
-bam=Bosansko-Hercegova\u010dka konvertibilna marka
-EUR=\u20ac
-eur=Evro
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_ME.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_ME.properties
deleted file mode 100755
index 0983b6a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_ME.properties
+++ /dev/null
@@ -1,67 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-EUR=\u20ac
-eur=Evro
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_RS.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_RS.properties
deleted file mode 100755
index 3a299f4..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_Latn_RS.properties
+++ /dev/null
@@ -1,67 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-RSD=din.
-rsd=Srpski dinar
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_ME.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_ME.properties
deleted file mode 100755
index 7b5fb3d..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_ME.properties
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-EUR=\u20ac
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_RS.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_RS.properties
deleted file mode 100755
index 8355522..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sr_RS.properties
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-RSD=\u0434\u0438\u043d.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv.properties
deleted file mode 100755
index 2d15627..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv.properties
+++ /dev/null
@@ -1,271 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-adp=andorransk peseta
-aed=F\u00f6renade Arabemiratens dirham
-afa=afghani (1927-2002)
-afn=afghani
-all=albansk lek
-amd=armenisk dram
-ang=Nederl\u00e4ndska Antillernas gulden
-aoa=angolansk kwanza
-ars=argentinsk peso
-ats=\u00f6sterrikisk schilling
-aud=australisk dollar
-awg=Aruba-gulden
-azm=azerbajdzjansk manat (1993-2006)
-azn=azerbajdzjansk manat
-bam=bosnisk-hercegovinsk mark (konvertibel)
-bbd=Barbados-dollar
-bdt=bangladeshisk taka
-bef=belgisk franc
-bgn=bulgarisk ny lev
-bhd=Bahrain-dinar
-bif=burundisk franc
-bmd=Bermuda-dollar
-bnd=Brunei-dollar
-bob=boliviano
-bov=boliviansk mvdol
-brl=brasiliansk real
-bsd=Bahamas-dollar
-btn=bhutanesisk ngultrum
-bwp=botswansk pula
-byb=vitrysk ny rubel (1994-1999)
-byr=vitrysk rubel
-bzd=belizisk dollar
-cad=kanadensisk dollar
-cdf=kongolesisk franc
-chf=schweizisk franc
-clf=chilensk unidad de fomento
-clp=chilensk peso
-cny=kinesisk yuan renminbi
-cop=colombiansk peso
-crc=costarikansk col\u00f3n
-csd=jugoslavisk dinar
-cup=kubansk peso
-cve=kapverdisk escudo
-cyp=cypriotiskt pund
-czk=tjeckisk koruna
-dem=tysk mark
-djf=djiboutisk franc
-dkk=dansk krona
-dop=dominikansk peso
-dzd=algerisk dinar
-eek=estnisk krona
-egp=egyptiskt pund
-ern=eritreansk nakfa
-esp=spansk peseta
-etb=etiopisk birr
-eur=euro
-fim=finsk mark
-fjd=Fiji-dollar
-fkp=Falklands\u00f6arnas pund
-frf=fransk franc
-gbp=brittiskt pund sterling
-gel=georgisk lari
-ghc=ghanansk cedi (1979-2007)
-ghs=ghanansk cedi
-gip=gibraltiskt pund
-gmd=gambisk dalasi
-gnf=guineansk franc
-grd=grekisk drachma
-gtq=guatemalansk quetzal
-gwp=Guinea-Bissau-peso
-gyd=guyanansk dollar
-hkd=Hongkong-dollar
-hnl=honduransk lempira
-hrk=kroatisk kuna
-htg=haitisk gourde
-huf=ungersk forint
-idr=indonesisk rupiah
-iep=irl\u00e4ndskt pund
-ils=israelisk ny shekel
-inr=indisk rupie
-iqd=irakisk dinar
-irr=iransk rial
-isk=isl\u00e4ndsk krona
-itl=italiensk lira
-jmd=Jamaica-dollar
-jod=jordansk dinar
-jpy=japansk yen
-kes=kenyansk shilling
-kgs=kirgizisk som
-khr=kambodjansk riel
-kmf=komorisk franc
-kpw=nordkoreansk won
-krw=sydkoreansk won
-kwd=kuwaitisk dinar
-kyd=Cayman-dollar
-kzt=kazakisk tenge
-lak=laotisk kip
-lbp=libanesiskt pund
-lkr=srilankesisk rupie
-lrd=Liberia-dollar
-lsl=lesothisk loti
-ltl=litauisk litas
-luf=luxemburgsk franc
-lvl=lettisk lats
-lyd=libysk dinar
-mad=marockansk dirham
-mdl=moldavisk leu
-mga=madagaskisk ariary
-mgf=madagaskisk franc
-mkd=makedonisk denar
-mmk=myanmarisk kyat
-mnt=mongolisk tugrik
-mop=Macao-pataca
-mro=mauretansk ouguiya
-mtl=maltesisk lira
-mur=mauritisk rupie
-mvr=maldivisk rufiyaa
-mwk=malawisk kwacha
-mxn=mexikansk peso
-mxv=mexikansk unidad de inversion
-myr=malaysisk ringgit
-mzm=gammal mo\u00e7ambikisk metical
-mzn=mo\u00e7ambikisk metical
-nad=Namibia-dollar
-ngn=nigeriansk naira
-nio=nicaraguansk c\u00f3rdoba oro
-nlg=nederl\u00e4ndsk gulden
-nok=norsk krona
-npr=nepalesisk rupie
-nzd=nyzeel\u00e4ndsk dollar
-omr=omansk rial
-pab=panamansk balboa
-pen=peruansk sol nuevo
-pgk=papuansk kina
-php=filippinsk peso
-pkr=pakistansk rupie
-pln=polsk zloty
-pte=portugisisk escudo
-pyg=paraguaysk guarani
-qar=qatarisk rial
-rol=gammal rum\u00e4nsk leu
-ron=rum\u00e4nsk leu
-rsd=Serbisk dinar
-rub=rysk rubel
-rur=rysk rubel (1991-1998)
-rwf=rwandisk franc
-sar=saudisk riyal
-sbd=Salomon-dollar
-scr=seychellisk rupie
-sdd=sudanesisk dinar
-sdg=sudanesiskt pund
-sek=svensk krona
-sgd=Singapore-dollar
-shp=S\:t Helena-pund
-sit=slovensk tolar
-skk=slovakisk koruna
-sll=sierraleonsk leone
-sos=somalisk shilling
-srd=Surinam-dollar
-srg=surinamesisk gulden
-std=S\u00e3o Tom\u00e9 och Pr\u00edncipe-dobra
-svc=salvadoransk col\u00f3n
-syp=syriskt pund
-szl=swazil\u00e4ndsk lilangeni
-thb=thail\u00e4ndsk baht
-tjs=tadzjikisk somoni
-tmm=turkmensk manat
-tnd=tunisisk dinar
-top=tongansk pa\u02bbanga
-tpe=timoriansk escudo
-trl=gammal turkisk lira
-try=ny turkisk lira
-ttd=Trinidad ochTobago-dollar
-twd=taiwanesisk ny dollar
-tzs=tanzanisk shilling
-uah=ukrainsk hryvnia
-ugx=ugandisk shilling
-usd=US-dollar
-usn=US-dollar (n\u00e4sta dag)
-uss=US-dollar (samma dag)
-uyu=uruguayansk peso
-uzs=uzbekisk sum
-veb=venezuelansk bolivar
-vef=venezuelansk bolivar fuerte
-vnd=vietnamesisk dong
-vuv=vanuatisk vatu
-wst=v\u00e4stsamoansk tala
-xag=silver
-xau=guld
-xba=europeisk kompositenhet
-xbb=europeisk monet\u00e4r enhet
-xbc=europeisk kontoenhet (XBC)
-xbd=europeisk kontoenhet (XBD)
-xcd=\u00f6stkaribisk dollar
-xdr=IMF s\u00e4rskild dragningsr\u00e4tt
-xfo=fransk guldfranc
-xpd=palladium
-xpf=CFP-franc
-xpt=platina
-xts=test-valutakod
-xxx=ok\u00e4nd eller ogiltig valuta
-yer=jemenitisk rial
-yum=jugoslavisk ny dinar
-zar=sydafrikansk rand
-zmk=zambisk kwacha
-zwd=Zimbabwe-dollar
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv_SE.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv_SE.properties
deleted file mode 100755
index b430481..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_sv_SE.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-EUR=\u20AC
-SEK=kr
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_th_TH.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_th_TH.properties
deleted file mode 100755
index a66c7bc..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_th_TH.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-THB=\u0e3f
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_tr_TR.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_tr_TR.properties
deleted file mode 100755
index b4c109b..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_tr_TR.properties
+++ /dev/null
@@ -1,39 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-TRL=TL
-TRY=TL
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_uk_UA.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_uk_UA.properties
deleted file mode 100755
index ebe2325..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_uk_UA.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-UAH=\u0433\u0440\u043d.
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_vi_VN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_vi_VN.properties
deleted file mode 100755
index 72ddc2a..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_vi_VN.properties
+++ /dev/null
@@ -1,38 +0,0 @@
-# 
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-# 
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-VND=\u0111
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_CN.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_CN.properties
deleted file mode 100755
index 804ac91..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_CN.properties
+++ /dev/null
@@ -1,278 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-CNY=\uffe5
-cny=\u4eba\u6c11\u5e01
-adp=\u5b89\u9053\u5c14\u6bd4\u585e\u5854
-aed=\u963f\u8054\u914b\u8fea\u62c9\u59c6
-afa=\u963f\u5bcc\u6c57\u5c3c (1927-2002)
-afn=\u963f\u5bcc\u6c57\u5c3c
-all=\u963f\u5c14\u5df4\u5c3c\u4e9a\u5217\u514b
-amd=\u4e9a\u7f8e\u5c3c\u4e9a\u5fb7\u62c9\u59c6
-ang=\u8377\u5170\u5b89\u66ff\u5170\u76fe
-aoa=\u5b89\u54e5\u62c9\u5bbd\u624e
-ars=\u963f\u6839\u5ef7\u6bd4\u7d22
-ats=\u5965\u5730\u5229\u5148\u4ee4
-aud=\u6fb3\u5927\u5229\u4e9a\u5143
-awg=\u963f\u9c81\u5df4\u57fa\u5c14\u5fb7\u5143
-azm=\u963f\u585e\u62dc\u7586\u9a6c\u7eb3\u7279 (1993-2006)
-azn=\u963f\u585e\u62dc\u7586\u9a6c\u7eb3\u7279
-bam=\u6ce2\u58eb\u5c3c\u4e9a-\u8d6b\u585e\u54e5\u7ef4\u7eb3\u5151\u6362\u5238
-bbd=\u5df4\u5df4\u591a\u65af\u5143
-bdt=\u5b5f\u52a0\u62c9\u5854\u5361
-bef=\u6bd4\u5229\u65f6\u6cd5\u90ce
-bgl=\u4fdd\u52a0\u5229\u4e9a\u786c\u5217\u5f17
-bgn=\u4fdd\u52a0\u5229\u4e9a\u65b0\u5217\u5f17
-bhd=\u5df4\u6797\u7b2c\u7eb3\u5c14
-bif=\u5e03\u9686\u8fea\u6cd5\u90ce
-bmd=\u767e\u6155\u5927\u5143
-bnd=\u6587\u83b1\u5143
-bob=\u73bb\u5229\u7ef4\u4e9a\u8bfa
-bov=\u73bb\u5229\u7ef4\u4e9a Mvdol\uff08\u8d44\u91d1\uff09
-brl=\u5df4\u897f\u96f7\u4e9a\u5c14
-bsd=\u5df4\u54c8\u9a6c\u5143
-btn=\u4e0d\u4e39\u52aa\u624e\u59c6
-bwp=\u535a\u8328\u74e6\u7eb3\u666e\u62c9
-byb=\u767d\u4fc4\u7f57\u65af\u65b0\u5362\u5e03 (1994-1999)
-byr=\u767d\u4fc4\u7f57\u65af\u5362\u5e03
-bzd=\u4f2f\u5229\u5179\u5143
-cad=\u52a0\u62ff\u5927\u5143
-cdf=\u521a\u679c\u6cd5\u90ce
-chf=\u745e\u58eb\u6cd5\u90ce
-clf=\u667a\u5229 Unidades de Fomento\uff08\u8d44\u91d1\uff09
-clp=\u667a\u5229\u6bd4\u7d22
-cop=\u54e5\u4f26\u6bd4\u4e9a\u6bd4\u7d22
-crc=\u54e5\u65af\u8fbe\u9ece\u52a0\u79d1\u6717
-csd=\u65e7\u585e\u5c14\u7ef4\u4e9a\u7b2c\u7eb3\u5c14
-cuc=\u53e4\u5df4\u53ef\u5151\u6362\u6bd4\u7d22
-cup=\u53e4\u5df4\u6bd4\u7d22
-cve=\u4f5b\u5f97\u89d2\u57c3\u65af\u5e93\u591a
-cyp=\u585e\u6d66\u8def\u65af\u9551
-czk=\u6377\u514b\u514b\u90ce
-dem=\u5fb7\u56fd\u9a6c\u514b
-djf=\u5409\u5e03\u63d0\u6cd5\u90ce
-dkk=\u4e39\u9ea6\u514b\u6717
-dop=\u591a\u7c73\u5c3c\u52a0\u6bd4\u7d22
-dzd=\u963f\u5c14\u53ca\u5229\u4e9a\u7b2c\u7eb3\u5c14
-eek=\u7231\u6c99\u5c3c\u4e9a\u514b\u6717
-egp=\u57c3\u53ca\u9551
-ern=\u5384\u7acb\u7279\u91cc\u4e9a\u7eb3\u514b\u6cd5
-esp=\u897f\u73ed\u7259\u6bd4\u585e\u5854
-etb=\u57c3\u585e\u4fc4\u6bd4\u4e9a\u6bd4\u5c14
-eur=\u6b27\u5143
-fim=\u82ac\u5170\u9a6c\u514b
-fjd=\u6590\u6d4e\u5143
-fkp=\u798f\u514b\u5170\u9551
-frf=\u6cd5\u56fd\u6cd5\u90ce
-gbp=\u82f1\u9551
-gel=\u4e54\u6cbb\u4e9a\u62c9\u745e
-ghc=\u52a0\u7eb3\u585e\u7b2c
-ghs=\u52a0\u7eb3\u585e\u5730
-gip=\u76f4\u5e03\u7f57\u9640\u9551
-gmd=\u5188\u6bd4\u4e9a\u8fbe\u62c9\u897f
-gnf=\u51e0\u5185\u4e9a\u6cd5\u90ce
-grd=\u5e0c\u814a\u5fb7\u62c9\u514b\u9a6c
-gtq=\u5371\u5730\u9a6c\u62c9\u683c\u67e5\u5c14
-gwp=\u51e0\u5185\u4e9a\u6bd4\u7ecd\u6bd4\u7d22
-gyd=\u572d\u4e9a\u90a3\u5143
-hkd=\u6e2f\u5143
-hnl=\u6d2a\u90fd\u62c9\u65af\u62c9\u4f26\u76ae\u62c9
-hrk=\u514b\u7f57\u5730\u4e9a\u5e93\u7eb3
-htg=\u6d77\u5730\u53e4\u5fb7
-huf=\u5308\u7259\u5229\u798f\u6797
-idr=\u5370\u5ea6\u5c3c\u897f\u4e9a\u76fe
-iep=\u7231\u5c14\u5170\u9551
-ils=\u4ee5\u8272\u5217\u65b0\u8c22\u514b\u5c14
-inr=\u5370\u5ea6\u5362\u6bd4
-iqd=\u4f0a\u62c9\u514b\u7b2c\u7eb3\u5c14
-irr=\u4f0a\u6717\u91cc\u4e9a\u5c14
-isk=\u51b0\u5c9b\u514b\u6717
-itl=\u610f\u5927\u5229\u91cc\u62c9
-jmd=\u7259\u4e70\u52a0\u5143
-jod=\u7ea6\u65e6\u7b2c\u7eb3\u5c14
-jpy=\u65e5\u5143
-kes=\u80af\u5c3c\u4e9a\u5148\u4ee4
-kgs=\u5409\u5c14\u5409\u65af\u65af\u5766\u7d22\u59c6
-khr=\u67ec\u57d4\u5be8\u745e\u5c14
-kmf=\u79d1\u6469\u7f57\u6cd5\u90ce
-kpw=\u671d\u9c9c\u5706
-krw=\u97e9\u5706
-kwd=\u79d1\u5a01\u7279\u7b2c\u7eb3\u5c14
-kyd=\u5f00\u66fc\u5143
-kzt=\u54c8\u8428\u514b\u65af\u5766\u575a\u6208
-lak=\u8001\u631d\u57fa\u666e
-lbp=\u9ece\u5df4\u5ae9\u9551
-lkr=\u65af\u91cc\u5170\u5361\u5362\u6bd4
-lrd=\u5229\u6bd4\u4e9a\u5143
-lsl=\u83b1\u7d22\u6258\u6d1b\u8482
-ltl=\u7acb\u9676\u5b9b\u7acb\u7279
-luf=\u5362\u68ee\u5821\u6cd5\u90ce
-lvl=\u62c9\u8131\u7ef4\u4e9a\u62c9\u7279
-lyd=\u5229\u6bd4\u4e9a\u7b2c\u7eb3\u5c14
-mad=\u6469\u6d1b\u54e5\u8fea\u62c9\u59c6
-mdl=\u6469\u5c14\u591a\u74e6\u5217\u4f0a
-mga=\u9a6c\u8fbe\u52a0\u65af\u52a0\u963f\u91cc\u4e9a\u91cc
-mgf=\u9a6c\u8fbe\u52a0\u65af\u52a0\u6cd5\u90ce
-mkd=\u9a6c\u5176\u987f\u6234\u4ee3\u7eb3\u5c14
-mmk=\u7f05\u7538\u5f00\u4e9a\u7279
-mnt=\u8499\u53e4\u56fe\u683c\u91cc\u514b
-mop=\u6fb3\u95e8\u5143
-mro=\u6bdb\u91cc\u5854\u5c3c\u4e9a\u4e4c\u5409\u4e9a
-mtl=\u9a6c\u8033\u4ed6\u91cc\u62c9
-mur=\u6bdb\u91cc\u6c42\u65af\u5362\u6bd4
-mvr=\u9a6c\u5c14\u4ee3\u592b\u62c9\u83f2\u4e9a
-mwk=\u9a6c\u62c9\u7ef4\u514b\u74e6\u67e5
-mxn=\u58a8\u897f\u54e5\u6bd4\u7d22
-mxv=\u58a8\u897f\u54e5 Unidad de Inversion (UDI)\uff08\u8d44\u91d1\uff09
-myr=\u9a6c\u6765\u897f\u4e9a\u6797\u5409\u7279
-mzm=\u65e7\u83ab\u6851\u6bd4\u514b\u7f8e\u63d0\u5361
-mzn=\u83ab\u6851\u6bd4\u514b\u7f8e\u63d0\u5361
-nad=\u7eb3\u7c73\u6bd4\u4e9a\u5143
-ngn=\u5c3c\u65e5\u5229\u4e9a\u5948\u62c9
-nio=\u5c3c\u52a0\u62c9\u74dc\u91d1\u79d1\u591a\u5df4
-nlg=\u8377\u5170\u76fe
-nok=\u632a\u5a01\u514b\u6717
-npr=\u5c3c\u6cca\u5c14\u5362\u6bd4
-nzd=\u65b0\u897f\u5170\u5143
-omr=\u963f\u66fc\u91cc\u4e9a\u5c14
-pab=\u5df4\u62ff\u9a6c\u5df4\u6ce2\u4e9a
-pen=\u79d8\u9c81\u65b0\u7d22\u5c14
-pgk=\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a\u57fa\u90a3
-php=\u83f2\u5f8b\u5bbe\u6bd4\u7d22
-pkr=\u5df4\u57fa\u65af\u5766\u5362\u6bd4
-pln=\u6ce2\u5170\u5179\u7f57\u63d0
-pte=\u8461\u8404\u7259\u57c3\u65af\u5e93\u591a
-pyg=\u5df4\u62c9\u572d\u74dc\u62c9\u5c3c
-qar=\u5361\u5854\u5c14\u91cc\u4e9a\u5c14
-rol=\u65e7\u7f57\u9a6c\u5c3c\u4e9a\u5217\u4f0a
-ron=\u7f57\u9a6c\u5c3c\u4e9a\u5217\u4f0a
-rsd=\u585e\u5c14\u7ef4\u4e9a\u7b2c\u7eb3\u5c14
-rub=\u4fc4\u56fd\u5362\u5e03
-rur=\u4fc4\u56fd\u5362\u5e03 (1991-1998)
-rwf=\u5362\u65fa\u8fbe\u6cd5\u90ce
-sar=\u6c99\u7279\u91cc\u4e9a\u5c14
-sbd=\u6240\u7f57\u95e8\u7fa4\u5c9b\u5143
-scr=\u585e\u820c\u5c14\u5362\u6bd4
-sdd=\u82cf\u4e39\u7b2c\u7eb3\u5c14
-sek=\u745e\u5178\u514b\u6717
-sgd=\u65b0\u52a0\u5761\u5143
-shp=\u5723\u8d6b\u52d2\u62ff\u7fa4\u5c9b\u78c5
-sit=\u65af\u6d1b\u6587\u5c3c\u4e9a\u6258\u62c9\u5c14
-skk=\u65af\u6d1b\u4f10\u514b\u514b\u6717
-sll=\u585e\u62c9\u5229\u6602\u5229\u6602
-sos=\u7d22\u9a6c\u91cc\u5148\u4ee4
-srd=\u82cf\u91cc\u5357\u5143
-srg=\u82cf\u91cc\u5357\u76fe
-std=\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4\u591a\u5e03\u62c9
-svc=\u8428\u5c14\u74e6\u591a\u79d1\u6717
-syp=\u53d9\u5229\u4e9a\u9551
-szl=\u65af\u5a01\u58eb\u5170\u91cc\u5170\u5409\u5c3c
-thb=\u6cf0\u94e2
-tjs=\u5854\u5409\u514b\u65af\u5766\u7d22\u83ab\u5c3c
-tmm=\u571f\u5e93\u66fc\u65af\u5766\u9a6c\u7eb3\u7279
-tmt=\u571f\u5e93\u66fc\u65af\u5766\u65b0\u9a6c\u7eb3\u7279
-tnd=\u7a81\u5c3c\u65af\u7b2c\u7eb3\u5c14
-top=\u6c64\u52a0\u6f58\u52a0
-tpe=\u5e1d\u6c76\u57c3\u65af\u5e93\u591a
-trl=\u571f\u8033\u5176\u91cc\u62c9
-try=\u65b0\u571f\u8033\u5176\u91cc\u62c9
-ttd=\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5\u5143
-twd=\u65b0\u53f0\u5e01
-tzs=\u5766\u6851\u5c3c\u4e9a\u5148\u4ee4
-uah=\u4e4c\u514b\u5170\u683c\u91cc\u592b\u5c3c\u4e9a
-ugx=\u4e4c\u5e72\u8fbe\u5148\u4ee4
-usd=\u7f8e\u5143
-usn=\u7f8e\u5143\uff08\u6b21\u65e5\uff09
-uss=\u7f8e\u5143\uff08\u5f53\u65e5\uff09
-uyu=\u4e4c\u62c9\u572d\u6bd4\u7d22
-uzs=\u4e4c\u5179\u522b\u514b\u65af\u82cf\u59c6
-veb=\u59d4\u5185\u745e\u62c9\u535a\u5229\u74e6
-vef=\u59d4\u5185\u745e\u62c9\u5f3a\u52bf\u73bb\u5229\u74e6
-vnd=\u8d8a\u5357\u76fe
-vuv=\u74e6\u52aa\u963f\u56fe\u74e6\u56fe
-wst=\u897f\u8428\u6469\u4e9a\u5854\u62c9
-xaf=\u4e2d\u975e\u91d1\u878d\u5408\u4f5c\u6cd5\u90ce
-xag=\u94f6
-xau=\u9ec4\u91d1
-xba=\u6b27\u6d32\u590d\u5408\u5355\u4f4d
-xbb=\u6b27\u6d32\u8d27\u5e01\u8054\u76df
-xbc=\u6b27\u6d32\u8ba1\u7b97\u5355\u4f4d (XBC)
-xbd=\u6b27\u6d32\u8ba1\u7b97\u5355\u4f4d (XBD)
-xcd=\u4e1c\u52a0\u52d2\u6bd4\u5143
-xdr=\u7279\u522b\u63d0\u6b3e\u6743
-xfo=\u6cd5\u56fd\u91d1\u6cd5\u90ce
-xfu=\u6cd5\u56fd UIC \u6cd5\u90ce
-xof=\u975e\u6d32\u91d1\u878d\u5171\u540c\u4f53\u6cd5\u90ce
-xpd=\u94af
-xpf=\u592a\u5e73\u6d0b\u6cd5\u90ce
-xpt=\u94c2
-xts=\u4e3a\u6d4b\u8bd5\u4fdd\u7559\u7684\u4ee3\u7801
-xxx=\u8d27\u5e01\u672a\u77e5\u6216\u65e0\u6548
-yer=\u4e5f\u95e8\u91cc\u4e9a\u5c14
-yum=\u5357\u65af\u62c9\u592b\u504c\u5a01\u7b2c\u7eb3\u5c14
-zar=\u5357\u975e\u5170\u7279
-zmk=\u8d5e\u6bd4\u4e9a\u514b\u74e6\u67e5
-zwd=\u6d25\u5df4\u5e03\u97e6\u5143
-zwl=\u6d25\u5df4\u5e03\u97e6\u5143 (2009)
diff --git a/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_TW.properties b/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_TW.properties
deleted file mode 100755
index 3ec99f1..0000000
--- a/ojluni/src/main/java/sun/util/resources/CurrencyNames_zh_TW.properties
+++ /dev/null
@@ -1,279 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-TWD=NT$
-twd=\u65b0\u81fa\u5e63
-adp=\u5b89\u9053\u723e\u966a\u58eb\u7279
-aed=\u963f\u62c9\u4f2f\u806f\u5408\u5927\u516c\u570b\u8fea\u723e\u6c57
-afa=\u963f\u5bcc\u6c57\u5c3c (1927-2002)
-afn=\u963f\u5bcc\u6c57\u5c3c
-all=\u963f\u723e\u5df4\u5c3c\u4e9e\u5217\u514b
-amd=\u4e9e\u7f8e\u5c3c\u4e9e\u5fb7\u62c9\u59c6
-ang=\u53e4\u82f1\u6587
-aoa=\u5b89\u54e5\u62c9\u5bec\u624e
-ars=\u963f\u6839\u5ef7\u62ab\u7d22
-ats=\u5967\u5730\u5229\u5148\u4ee4
-aud=\u6fb3\u5e63
-awg=\u963f\u9b6f\u5df4\u76fe
-azm=\u4e9e\u585e\u62dc\u7136\u99ac\u7d0d\u7279 (1993-2006)
-azn=\u4e9e\u585e\u62dc\u7136\u99ac\u7d0d\u7279
-bam=\u6ce2\u58eb\u5c3c\u4e9e-\u9ed1\u585e\u54e5\u7dad\u90a3\u53ef\u8f49\u63db\u99ac\u514b
-bbd=\u5df4\u8c9d\u591a\u5143
-bdt=\u5b5f\u52a0\u62c9\u5854\u5361
-bef=\u6bd4\u5229\u6642\u6cd5\u90ce
-bgl=\u4fdd\u52a0\u5229\u4e9e\u786c\u5217\u5f17
-bgn=\u4fdd\u52a0\u5229\u4e9e\u65b0\u5217\u5f17
-bhd=\u5df4\u6797\u7b2c\u7d0d\u723e
-bif=\u84b2\u9686\u5730\u6cd5\u90ce
-bmd=\u767e\u6155\u9054\u5e63
-bnd=\u6c76\u840a\u5143
-bob=\u73bb\u5229\u7dad\u4e9e\u8ca8\u5e63\u55ae\u4f4d
-bov=\u73bb\u5229\u7dad\u4e9e\u5e55\u591a
-brl=\u5df4\u897f\u91cc\u62c9
-bsd=\u5df4\u54c8\u99ac\u5143
-btn=\u4e0d\u4e39\u52aa\u624e\u59c6
-bwp=\u6ce2\u672d\u90a3\u666e\u62c9
-byb=\u767d\u4fc4\u7f85\u65af\u65b0\u76e7\u5e03 (1994-1999)
-byr=\u767d\u4fc4\u7f85\u65af\u76e7\u5e03
-bzd=\u8c9d\u91cc\u65af\u5143
-cad=\u52a0\u5e63
-cdf=\u525b\u679c\u6cd5\u90ce
-chf=\u745e\u58eb\u6cd5\u90ce
-clf=\u5361\u6797\u6cb9\u9054\u4f5b\u66fc\u8dce
-clp=\u667a\u5229\u62ab\u7d22
-cny=\u4eba\u6c11\u5e63
-cop=\u54e5\u502b\u6bd4\u4e9e\u62ab\u7d22
-crc=\u54e5\u65af\u5927\u9ece\u52a0\u79d1\u90ce
-csd=\u65e7\u585e\u5c14\u7ef4\u4e9a\u7b2c\u7eb3\u5c14
-cuc=\u53e4\u5df4\u53ef\u8f49\u63db\u62ab\u7d22
-cup=\u53e4\u5df4\u62ab\u7d22
-cve=\u7dad\u5fb7\u89d2\u57c3\u65af\u5eab\u591a
-cyp=\u8cfd\u666e\u52d2\u65af\u938a
-czk=\u6377\u514b\u514b\u6717
-dem=\u5fb7\u570b\u99ac\u514b
-djf=\u5409\u5e03\u5730\u6cd5\u90ce
-dkk=\u4e39\u9ea5\u514b\u7f85\u7d0d
-dop=\u591a\u660e\u5c3c\u52a0\u62ab\u7d22
-dzd=\u963f\u723e\u53ca\u5229\u4e9e\u7b2c\u7d0d\u723e
-eek=\u611b\u6c99\u5c3c\u4e9e\u514b\u6717
-egp=\u57c3\u53ca\u938a
-ern=\u5384\u7acb\u7279\u91cc\u4e9e\u7d0d\u514b\u6cd5
-esp=\u897f\u73ed\u7259\u966a\u58eb\u7279
-etb=\u8863\u7d22\u6bd4\u4e9e\u6bd4\u723e
-eur=\u6b50\u5143
-fim=\u82ac\u862d\u99ac\u514b
-fjd=\u6590\u6fdf\u5143
-fkp=\u798f\u514b\u862d\u7fa4\u5cf6\u938a
-frf=\u6cd5\u570b\u6cd5\u90ce
-gbp=\u82f1\u938a
-gel=\u55ac\u6cbb\u62c9\u91cc
-ghc=\u8fe6\u7d0d\u4ed9\u8515 (1979-2007)
-ghs=\u8fe6\u7d0d\u4ed9\u8515
-gip=\u76f4\u5e03\u7f85\u9640\u938a
-gmd=\u7518\u6bd4\u4e9e\u9054\u62c9\u897f
-gnf=\u5e7e\u5167\u4e9e\u6cd5\u90ce
-grd=\u5e0c\u81d8\u5fb7\u62c9\u514b\u99ac
-gtq=\u74dc\u5730\u99ac\u62c9\u683c\u67e5\u723e
-gwp=\u5e7e\u5167\u4e9e\u6bd4\u7d22\u62ab\u7d22
-gyd=\u572d\u4e9e\u90a3\u5143
-hkd=\u6e2f\u5143
-hnl=\u6d2a\u90fd\u62c9\u65af\u502b\u76ae\u62c9
-hrk=\u514b\u7f85\u5730\u4e9e\u5eab\u7d0d
-htg=\u6d77\u5730\u53e4\u5fb7
-huf=\u5308\u7259\u5229\u798f\u6797
-idr=\u5370\u5c3c\u76fe
-iep=\u611b\u723e\u862d\u938a
-ils=\u4ee5\u8272\u5217\u65b0\u8b1d\u514b\u723e
-inr=\u5370\u5ea6\u76e7\u6bd4
-iqd=\u4f0a\u62c9\u514b\u7b2c\u7d0d\u723e
-irr=\u4f0a\u6717\u91cc\u4e9e\u723e
-isk=\u51b0\u5cf6\u514b\u6717
-itl=\u7fa9\u5927\u5229\u91cc\u62c9
-jmd=\u7259\u8cb7\u52a0\u5143
-jod=\u7d04\u65e6\u7b2c\u7d0d\u723e
-jpy=\u65e5\u5713
-kes=\u80af\u5c3c\u4e9e\u5148\u4ee4
-kgs=\u5409\u723e\u5409\u65af\u7d22\u99ac
-khr=\u67ec\u57d4\u5be8\u745e\u723e
-kmf=\u79d1\u6469\u7f85\u6cd5\u90ce
-kpw=\u5317\u97d3\u571c
-krw=\u97d3\u571c
-kwd=\u79d1\u5a01\u7279\u7b2c\u7d0d\u723e
-kyd=\u958b\u66fc\u7fa4\u5cf6\u7f8e\u5143
-kzt=\u5361\u624e\u514b\u65af\u5766\u5766\u5409
-lak=\u8001\u631d\u57fa\u666e
-lbp=\u9ece\u5df4\u5ae9\u938a
-lkr=\u65af\u91cc\u862d\u5361\u76e7\u5e03
-lrd=\u8cf4\u6bd4\u745e\u4e9e\u5143
-lsl=\u8cf4\u7d22\u6258\u7f85\u8482
-ltl=\u7acb\u9676\u5b9b\u91cc\u5854
-luf=\u76e7\u68ee\u5821\u6cd5\u90ce
-lvl=\u62c9\u812b\u7dad\u4e9e\u62c9\u7279\u9280\u5e63
-lyd=\u5229\u6bd4\u4e9e\u7b2c\u7d0d\u723e
-mad=\u6469\u6d1b\u54e5\u8fea\u62c9\u59c6
-mdl=\u6469\u675c\u96f2\u5217\u4f0a
-mga=\u99ac\u9054\u52a0\u65af\u52a0\u827e\u745e\u723e
-mgf=\u99ac\u9054\u52a0\u65af\u52a0\u6cd5\u90ce
-mkd=\u99ac\u5176\u9813\u7b2c\u7d0d\u723e
-mmk=\u7dec\u7538\u5143
-mnt=\u8499\u53e4\u5716\u683c\u91cc\u514b
-mop=\u6fb3\u9580\u5143
-mro=\u8305\u5229\u5854\u5c3c\u4e9e\u70cf\u5409\u4e9e
-mtl=\u99ac\u723e\u4ed6\u91cc\u62c9
-mur=\u6a21\u91cc\u897f\u65af\u76e7\u5e03
-mvr=\u99ac\u723e\u5730\u592b\u6d77\u5cf6\u76e7\u975e\u4e9e
-mwk=\u99ac\u62c9\u7dad\u514b\u74e6\u67e5
-mxn=\u58a8\u897f\u54e5\u62ab\u7d22
-mxv=\u58a8\u897f\u54e5 Unidad de Inversion (UDI)\uff08\u8d44\u91d1\uff09
-myr=\u99ac\u4f86\u897f\u4e9e\u4ee4\u5409
-mzm=\u83ab\u4e09\u6bd4\u514b\u6885\u8482\u5361\u723e
-mzn=\u83ab\u4e09\u6bd4\u514b\u7f8e\u63d0\u5361
-nad=\u7d0d\u7c73\u6bd4\u4e9e\u5143
-ngn=\u5948\u53ca\u5229\u4e9e\u5948\u62c9
-nio=\u5c3c\u52a0\u62c9\u74dc\u91d1\u79d1\u591a\u5df4
-nlg=\u8377\u862d\u76fe
-nok=\u632a\u5a01\u514b\u7f85\u7d0d
-npr=\u5c3c\u6cca\u723e\u76e7\u5e03
-nzd=\u7d10\u897f\u862d\u5e63
-omr=\u963f\u66fc\u91cc\u5967
-pab=\u5df4\u62ff\u99ac\u5df4\u6ce2\u4e9e
-pen=\u79d8\u9b6f\u65b0\u592a\u967d\u5e63
-pgk=\u5df4\u5e03\u4e9e\u7d10\u5e7e\u5167\u4e9e\u57fa\u90a3
-php=\u83f2\u5f8b\u8cd3\u62ab\u7d22
-pkr=\u5df4\u57fa\u65af\u5766\u76e7\u5e03
-pln=\u6ce2\u862d\u8332\u7f85\u63d0
-pte=\u8461\u8404\u7259\u57c3\u65af\u5eab\u591a
-pyg=\u5df4\u62c9\u572d\u74dc\u62c9\u5c3c
-qar=\u5361\u9054\u723e\u91cc\u4e9e\u723e
-rol=\u65e7\u7f57\u9a6c\u5c3c\u4e9a\u5217\u4f0a
-ron=\u7f85\u99ac\u5c3c\u4e9e\u5217\u4f0a
-rsd=\u585e\u723e\u7dad\u4e9e\u6234\u7d0d
-rub=\u4fc4\u7f85\u65af\u76e7\u5e03
-rur=\u4fc4\u7f85\u65af\u76e7\u5e03 (1991-1998)
-rwf=\u76e7\u5b89\u9054\u6cd5\u90ce
-sar=\u6c99\u70cf\u5730\u91cc\u96c5
-sbd=\u7d22\u7f85\u9580\u7fa4\u5cf6\u5143
-scr=\u585e\u5e2d\u723e\u76e7\u6bd4
-sdd=\u8607\u4e39\u7b2c\u7d0d\u723e
-sdg=\u8607\u4e39\u938a
-sek=\u745e\u5178\u514b\u7f85\u7d0d
-sgd=\u65b0\u52a0\u5761\u5e63
-shp=\u5723\u8d6b\u52d2\u62ff\u7fa4\u5c9b\u78c5
-sit=\u65af\u6d1b\u7dad\u5c3c\u4e9e\u6258\u52d2
-skk=\u65af\u6d1b\u4f10\u514b\u514b\u6717
-sll=\u7345\u5b50\u5c71\u5229\u6602
-sos=\u7d22\u99ac\u5229\u4e9e\u5148\u4ee4
-srd=\u82cf\u91cc\u5357\u5143
-srg=\u8607\u5229\u5357\u57fa\u723e
-std=\u8056\u591a\u7f8e\u5cf6\u548c\u666e\u6797\u897f\u6bd4\u5cf6\u591a\u5e03\u62c9
-svc=\u8428\u5c14\u74e6\u591a\u79d1\u6717
-syp=\u6558\u5229\u4e9e\u938a
-szl=\u65af\u5a01\u58eb\u5170\u91cc\u5170\u5409\u5c3c
-thb=\u6cf0\u9296
-tjs=\u5854\u5409\u514b\u65af\u5766\u7d22\u83ab\u5c3c
-tmm=\u571f\u5eab\u66fc\u99ac\u7d0d\u7279
-tmt=\u571f\u5eab\u66fc\u65b0\u99ac\u7d0d\u7279
-tnd=\u7a81\u5c3c\u897f\u4e9e\u7b2c\u7d0d\u723e
-top=\u6771\u52a0\u6f58\u52a0
-tpe=\u5e1d\u6c76\u57c3\u65af\u5e93\u591a
-trl=\u571f\u8033\u5176\u91cc\u62c9
-try=\u65b0\u571f\u8033\u5176\u91cc\u62c9
-ttd=\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5\u5143
-tzs=\u5766\u6851\u5c3c\u4e9a\u5148\u4ee4
-uah=\u70cf\u514b\u862d\u683c\u91cc\u592b\u90a3
-ugx=\u70cf\u5e72\u9054\u5148\u4ee4
-usd=\u7f8e\u5143
-usn=\u7f8e\u5143 (\u7b2c\u4e8c\u5929)
-uss=\u7f8e\u5143 (\u540c\u4e00\u5929)
-uyu=\u70cf\u62c9\u572d\u62ab\u7d22
-uzs=\u70cf\u8332\u5225\u514b\u7d22\u59c6
-veb=\u59d4\u5167\u745e\u62c9\u73bb\u5229\u74e6
-vef=\u59d4\u5167\u745e\u62c9\u5f37\u52e2\u73bb\u5229\u74e6
-vnd=\u8d8a\u5357\u76fe
-vuv=\u842c\u90a3\u675c\u842c\u675c
-wst=\u897f\u85a9\u6469\u4e9e\u5854\u62c9
-xaf=\u897f\u975e\u6cd5\u90ce BEAC
-xag=XAG
-xau=\u9ec3\u91d1
-xba=\u6b50\u6d32\u7d9c\u5408\u55ae\u4f4d
-xbb=\u6b50\u6d32\u8ca8\u5e63\u55ae\u4f4d XBB
-xbc=\u6b50\u6d32\u6703\u8a08\u55ae\u4f4d (XBC)
-xbd=\u6b50\u6d32\u6703\u8a08\u55ae\u4f4d (XBD)
-xcd=\u683c\u745e\u90a3\u9054\u5143
-xdr=\u7279\u6b8a\u63d0\u6b3e\u6b0a
-xfo=\u6cd5\u570b\u91d1\u6cd5\u90ce
-xfu=\u6cd5\u570b UIC \u6cd5\u90ce
-xof=\u897f\u975e\u6cd5\u90ce BCEAO
-xpd=\u94af
-xpf=CFP \u6cd5\u90ce
-xpt=\u94c2
-xts=XTS
-xxx=XXX
-yer=\u8449\u9580\u91cc\u96c5
-yum=\u5357\u65af\u62c9\u592b\u632a\u5a01\u4e9e\u7b2c\u7d0d\u723e
-zar=\u5357\u975e\u862d\u7279
-zmk=\u5c1a\u6bd4\u4e9e\u514b\u74e6\u67e5
-zwd=\u8f9b\u5df4\u5a01\u5143
-zwl=\u8f9b\u5df4\u5a01\u5143 (2009)
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames.properties
deleted file mode 100755
index 0552c94..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames.properties
+++ /dev/null
@@ -1,1170 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=Afar
-ab=Abkhazian
-ae=Avestan
-af=Afrikaans
-ak=Akan
-am=Amharic
-an=Aragonese
-ar=Arabic
-as=Assamese
-av=Avaric
-ay=Aymara
-az=Azerbaijani
-ba=Bashkir
-be=Belarusian
-bg=Bulgarian
-bh=Bihari
-bi=Bislama
-bm=Bambara
-bn=Bengali
-bo=Tibetan
-br=Breton
-bs=Bosnian
-ca=Catalan
-ce=Chechen
-ch=Chamorro
-co=Corsican
-cr=Cree
-cs=Czech
-cu=Church Slavic
-cv=Chuvash
-cy=Welsh
-da=Danish
-de=German
-dv=Divehi
-dz=Dzongkha
-ee=Ewe
-el=Greek
-en=English
-eo=Esperanto
-es=Spanish
-et=Estonian
-eu=Basque
-fa=Persian
-ff=Fulah
-fi=Finnish
-fj=Fijian
-fo=Faroese
-fr=French
-fy=Frisian
-ga=Irish
-gd=Scottish Gaelic
-gl=Gallegan
-gn=Guarani
-gu=Gujarati
-gv=Manx
-ha=Hausa
-he=Hebrew
-hi=Hindi
-ho=Hiri Motu
-hr=Croatian
-ht=Haitian
-hu=Hungarian
-hy=Armenian
-hz=Herero
-ia=Interlingua
-id=Indonesian
-ie=Interlingue
-ig=Igbo
-ii=Sichuan Yi
-ik=Inupiaq
-in=Indonesian
-io=Ido
-is=Icelandic
-it=Italian
-iu=Inuktitut
-iw=Hebrew
-ja=Japanese
-ji=Yiddish
-jv=Javanese
-ka=Georgian
-kg=Kongo
-ki=Kikuyu
-kj=Kwanyama
-kk=Kazakh
-kl=Greenlandic
-km=Khmer
-kn=Kannada
-ko=Korean
-kr=Kanuri
-ks=Kashmiri
-ku=Kurdish
-kv=Komi
-kw=Cornish
-ky=Kirghiz
-la=Latin
-lb=Luxembourgish
-lg=Ganda
-li=Limburgish
-ln=Lingala
-lo=Lao
-lt=Lithuanian
-lu=Luba-Katanga
-lv=Latvian
-mg=Malagasy
-mh=Marshallese
-mi=Maori
-mk=Macedonian
-ml=Malayalam
-mn=Mongolian
-mo=Moldavian
-mr=Marathi
-ms=Malay
-mt=Maltese
-my=Burmese
-na=Nauru
-nb=Norwegian Bokm\u00e5l
-nd=North Ndebele
-ne=Nepali
-ng=Ndonga
-nl=Dutch
-nn=Norwegian Nynorsk
-no=Norwegian
-nr=South Ndebele
-nv=Navajo
-ny=Nyanja
-oc=Occitan
-oj=Ojibwa
-om=Oromo
-or=Oriya
-os=Ossetian
-pa=Panjabi
-pi=Pali
-pl=Polish
-ps=Pushto
-pt=Portuguese
-qu=Quechua
-rm=Raeto-Romance
-rn=Rundi
-ro=Romanian
-ru=Russian
-rw=Kinyarwanda
-sa=Sanskrit
-sc=Sardinian
-sd=Sindhi
-se=Northern Sami
-sg=Sango
-si=Sinhalese
-sk=Slovak
-sl=Slovenian
-sm=Samoan
-sn=Shona
-so=Somali
-sq=Albanian
-sr=Serbian
-ss=Swati
-st=Southern Sotho
-su=Sundanese
-sv=Swedish
-sw=Swahili
-ta=Tamil
-te=Telugu
-tg=Tajik
-th=Thai
-ti=Tigrinya
-tk=Turkmen
-tl=Tagalog
-tn=Tswana
-to=Tonga
-tr=Turkish
-ts=Tsonga
-tt=Tatar
-tw=Twi
-ty=Tahitian
-ug=Uighur
-uk=Ukrainian
-ur=Urdu
-uz=Uzbek
-ve=Venda
-vi=Vietnamese
-vo=Volap\u00fck
-wa=Walloon
-wo=Wolof
-xh=Xhosa
-yi=Yiddish
-yo=Yoruba
-za=Zhuang
-zh=Chinese
-zu=Zulu
-
-# key is ISO 639.2 language code
-aar=Afar
-abk=Abkhazian
-ace=Achinese
-ach=Acoli
-ada=Adangme
-ady=Adyghe
-afa=Afro-Asiatic
-afh=Afrihili
-afr=Afrikaans
-ain=Ainu
-aka=Akan
-akk=Akkadian
-alb=Albanian
-ale=Aleut
-alg=Algonquian
-alt=Southern Altai
-amh=Amharic
-ang=English, Old (ca.450-1100)
-anp=Angika
-apa=Apache
-ara=Arabic
-arc=Official Aramaic (700-300 BCE)
-arg=Aragonese
-arm=Armenian
-arn=Mapudungun
-arp=Arapaho
-art=Artificial
-arw=Arawak
-asm=Assamese
-ast=Asturian
-ath=Athapascan
-aus=Australian
-ava=Avaric
-ave=Avestan
-awa=Awadhi
-aym=Aymara
-aze=Azerbaijani
-bad=Banda
-bai=Bamileke
-bak=Bashkir
-bal=Baluchi
-bam=Bambara
-ban=Balinese
-baq=Basque
-bas=Basa
-bat=Baltic
-bej=Beja
-bel=Belarusian
-bem=Bemba
-ben=Bengali
-ber=Berber
-bho=Bhojpuri
-bih=Bihari
-bik=Bikol
-bin=Bini
-bis=Bislama
-bla=Siksika
-bnt=Bantu
-bos=Bosnian
-bra=Braj
-bre=Breton
-btk=Batak
-bua=Buriat
-bug=Buginese
-bul=Bulgarian
-bur=Burmese
-byn=Blin
-cad=Caddo
-cai=Central American Indian
-car=Galibi Carib
-cat=Catalan
-cau=Caucasian
-ceb=Cebuano
-cel=Celtic
-cha=Chamorro
-chb=Chibcha
-che=Chechen
-chg=Chagatai
-chi=Chinese
-chk=Chuukese
-chm=Mari
-chn=Chinook jargon
-cho=Choctaw
-chp=Chipewyan
-chr=Cherokee
-chu=Church Slavic
-chv=Chuvash
-chy=Cheyenne
-cmc=Chamic
-cop=Coptic
-cor=Cornish
-cos=Corsican
-cpe=Creoles and pidgins, English based
-cpf=Creoles and pidgins, French-based
-cpp=Creoles and pidgins, Portuguese-based
-cre=Cree
-crh=Crimean Tatar
-crp=Creoles and pidgins
-csb=Kashubian
-cus=Cushitic
-cze=Czech
-dak=Dakota
-dan=Danish
-dar=Dargwa
-day=Land Dayak
-del=Delaware
-den=Slave (Athapascan)
-dgr=Dogrib
-din=Dinka
-div=Divehi
-doi=Dogri
-dra=Dravidian
-dsb=Lower Sorbian
-dua=Duala
-dum=Dutch, Middle (ca.1050-1350)
-dut=Dutch
-dyu=Dyula
-dzo=Dzongkha
-efi=Efik
-egy=Egyptian (Ancient)
-eka=Ekajuk
-elx=Elamite
-eng=English
-enm=English, Middle (1100-1500)
-epo=Esperanto
-est=Estonian
-ewe=Ewe
-ewo=Ewondo
-fan=Fang
-fao=Faroese
-fat=Fanti
-fij=Fijian
-fil=Filipino
-fin=Finnish
-fiu=Finno-Ugrian
-fon=Fon
-fre=French
-frm=French, Middle (ca.1400-1600)
-fro=French, Old (842-ca.1400)
-frr=Northern Frisian
-frs=Eastern Frisian
-fry=Western Frisian
-ful=Fulah
-fur=Friulian
-gaa=Ga
-gay=Gayo
-gba=Gbaya
-gem=Germanic
-geo=Georgian
-ger=German
-gez=Geez
-gil=Gilbertese
-gla=Gaelic
-gle=Irish
-glg=Galician
-glv=Manx
-gmh=German, Middle High (ca.1050-1500)
-goh=German, Old High (ca.750-1050)
-gon=Gondi
-gor=Gorontalo
-got=Gothic
-grb=Grebo
-grc=Greek, Ancient (to 1453)
-gre=Greek, Modern (1453-)
-grn=Guarani
-gsw=Swiss German
-guj=Gujarati
-gwi=Gwich'in
-hai=Haida
-hat=Haitian
-hau=Hausa
-haw=Hawaiian
-heb=Hebrew
-her=Herero
-hil=Hiligaynon
-him=Himachali
-hin=Hindi
-hit=Hittite
-hmn=Hmong
-hmo=Hiri Motu
-hrv=Croatian
-hsb=Upper Sorbian
-hun=Hungarian
-hup=Hupa
-iba=Iban
-ibo=Igbo
-ice=Icelandic
-ido=Ido
-iii=Sichuan Yi
-ijo=Ijo
-iku=Inuktitut
-ile=Interlingue
-ilo=Iloko
-ina=Interlingua (International Auxiliary Language Association)
-inc=Indic
-ind=Indonesian
-ine=Indo-European
-inh=Ingush
-ipk=Inupiaq
-ira=Iranian
-iro=Iroquoian
-ita=Italian
-jav=Javanese
-jbo=Lojban
-jpn=Japanese
-jpr=Judeo-Persian
-jrb=Judeo-Arabic
-kaa=Kara-Kalpak
-kab=Kabyle
-kac=Kachin
-kal=Kalaallisut
-kam=Kamba
-kan=Kannada
-kar=Karen
-kas=Kashmiri
-kau=Kanuri
-kaw=Kawi
-kaz=Kazakh
-kbd=Kabardian
-kha=Khasi
-khi=Khoisan
-khm=Central Khmer
-kho=Khotanese
-kik=Kikuyu
-kin=Kinyarwanda
-kir=Kirghiz
-kmb=Kimbundu
-kok=Konkani
-kom=Komi
-kon=Kongo
-kor=Korean
-kos=Kosraean
-kpe=Kpelle
-krc=Karachay-Balkar
-krl=Karelian
-kro=Kru
-kru=Kurukh
-kua=Kuanyama
-kum=Kumyk
-kur=Kurdish
-kut=Kutenai
-lad=Ladino
-lah=Lahnda
-lam=Lamba
-lao=Lao
-lat=Latin
-lav=Latvian
-lez=Lezghian
-lim=Limburgan
-lin=Lingala
-lit=Lithuanian
-lol=Mongo
-loz=Lozi
-ltz=Luxembourgish
-lua=Luba-Lulua
-lub=Luba-Katanga
-lug=Ganda
-lui=Luiseno
-lun=Lunda
-luo=Luo (Kenya and Tanzania)
-lus=Lushai
-mac=Macedonian
-mad=Madurese
-mag=Magahi
-mah=Marshallese
-mai=Maithili
-mak=Makasar
-mal=Malayalam
-man=Mandingo
-mao=Maori
-map=Austronesian
-mar=Marathi
-mas=Masai
-may=Malay
-mdf=Moksha
-mdr=Mandar
-men=Mende
-mga=Irish, Middle (900-1200)
-mic=Mi'kmaq
-min=Minangkabau
-mis=Uncoded
-mkh=Mon-Khmer
-mlg=Malagasy
-mlt=Maltese
-mnc=Manchu
-mni=Manipuri
-mno=Manobo
-moh=Mohawk
-mon=Mongolian
-mos=Mossi
-mul=Multiple
-mun=Munda
-mus=Creek
-mwl=Mirandese
-mwr=Marwari
-myn=Mayan
-myv=Erzya
-nah=Nahuatl
-nai=North American Indian
-nap=Neapolitan
-nau=Nauru
-nav=Navajo
-nbl=Ndebele, South
-nde=Ndebele, North
-ndo=Ndonga
-nds=Low German
-nep=Nepali
-new=Nepal Bhasa
-nia=Nias
-nic=Niger-Kordofanian
-niu=Niuean
-nno=Norwegian Nynorsk
-nob=Bokm\u00e5l, Norwegian
-nog=Nogai
-non=Norse, Old
-nor=Norwegian
-nqo=N'Ko
-nso=Pedi
-nub=Nubian
-nwc=Classical Newari
-nya=Chichewa
-nym=Nyamwezi
-nyn=Nyankole
-nyo=Nyoro
-nzi=Nzima
-oci=Occitan (post 1500)
-oji=Ojibwa
-ori=Oriya
-orm=Oromo
-osa=Osage
-oss=Ossetian
-ota=Turkish, Ottoman (1500-1928)
-oto=Otomian
-paa=Papuan
-pag=Pangasinan
-pal=Pahlavi
-pam=Pampanga
-pan=Panjabi
-pap=Papiamento
-pau=Palauan
-peo=Persian, Old (ca.600-400 B.C.)
-per=Persian
-phi=Philippine
-phn=Phoenician
-pli=Pali
-pol=Polish
-pon=Pohnpeian
-por=Portuguese
-pra=Prakrit
-pro=Proven\u00e7al, Old (to 1500)
-pus=Pushto; Pashto
-que=Quechua
-raj=Rajasthani
-rap=Rapanui
-rar=Rarotongan
-roa=Romance
-roh=Romansh
-rom=Romany
-rum=Romanian
-run=Rundi
-rup=Aromanian
-rus=Russian
-sad=Sandawe
-sag=Sango
-sah=Yakut
-sai=South American Indian
-sal=Salishan
-sam=Samaritan Aramaic
-san=Sanskrit
-sas=Sasak
-sat=Santali
-scn=Sicilian
-sco=Scots
-sel=Selkup
-sem=Semitic
-sga=Irish, Old (to 900)
-sgn=Sign
-shn=Shan
-sid=Sidamo
-sin=Sinhala
-sio=Siouan
-sit=Sino-Tibetan
-sla=Slavic
-slo=Slovak
-slv=Slovenian
-sma=Southern Sami
-sme=Northern Sami
-smi=Sami
-smj=Lule Sami
-smn=Inari Sami
-smo=Samoan
-sms=Skolt Sami
-sna=Shona
-snd=Sindhi
-snk=Soninke
-sog=Sogdian
-som=Somali
-son=Songhai
-sot=Sotho, Southern
-spa=Spanish
-srd=Sardinian
-srn=Sranan Tongo
-srp=Serbian
-srr=Serer
-ssa=Nilo-Saharan
-ssw=Swati
-suk=Sukuma
-sun=Sundanese
-sus=Susu
-sux=Sumerian
-swa=Swahili
-swe=Swedish
-syc=Classical Syriac
-syr=Syriac
-tah=Tahitian
-tai=Tai
-tam=Tamil
-tat=Tatar
-tel=Telugu
-tem=Timne
-ter=Tereno
-tet=Tetum
-tgk=Tajik
-tgl=Tagalog
-tha=Thai
-tib=Tibetan
-tig=Tigre
-tir=Tigrinya
-tiv=Tiv
-tkl=Tokelau
-tlh=Klingon
-tli=Tlingit
-tmh=Tamashek
-tog=Tonga (Nyasa)
-ton=Tonga (Tonga Islands)
-tpi=Tok Pisin
-tsi=Tsimshian
-tsn=Tswana
-tso=Tsonga
-tuk=Turkmen
-tum=Tumbuka
-tup=Tupi
-tur=Turkish
-tut=Altaic
-tvl=Tuvalu
-twi=Twi
-tyv=Tuvinian
-udm=Udmurt
-uga=Ugaritic
-uig=Uighur
-ukr=Ukrainian
-umb=Umbundu
-und=Undetermined
-urd=Urdu
-uzb=Uzbek
-vai=Vai
-ven=Venda
-vie=Vietnamese
-vol=Volap\u00fck
-vot=Votic
-wak=Wakashan
-wal=Wolaitta
-war=Waray
-was=Washo
-wel=Welsh
-wen=Sorbian
-wln=Walloon
-wol=Wolof
-xal=Kalmyk
-xho=Xhosa
-yao=Yao
-yap=Yapese
-yid=Yiddish
-yor=Yoruba
-ypk=Yupik
-zap=Zapotec
-zbl=Blissymbols
-zen=Zenaga
-zha=Zhuang
-znd=Zande
-zul=Zulu
-zun=Zuni
-zxx=No linguistic content
-zza=Zaza
-
-# script names
-# key is ISO 15924 script code
-
-Arab=Arabic
-Armi=Imperial Aramaic
-Armn=Armenian
-Avst=Avestan
-Bali=Balinese
-Bamu=Bamum
-Bass=Bassa Vah
-Batk=Batak
-Beng=Bengali
-Blis=Blissymbols
-Bopo=Bopomofo
-Brah=Brahmi
-Brai=Braille
-Bugi=Buginese
-Buhd=Buhid
-Cakm=Chakma
-Cans=Unified Canadian Aboriginal Syllabics
-Cari=Carian
-Cham=Cham
-Cher=Cherokee
-Cirt=Cirth
-Copt=Coptic
-Cprt=Cypriot
-Cyrl=Cyrillic
-Cyrs=Old Church Slavonic Cyrillic
-Deva=Devanagari
-Dsrt=Deseret
-Dupl=Duployan shorthand
-Egyd=Egyptian demotic
-Egyh=Egyptian hieratic
-Egyp=Egyptian hieroglyphs
-Elba=Elbasan
-Ethi=Ethiopic
-Geok=Khutsuri
-Geor=Georgian
-Glag=Glagolitic
-Goth=Gothic
-Gran=Grantha
-Grek=Greek
-Gujr=Gujarati
-Guru=Gurmukhi
-Hang=Hangul
-Hani=Han
-Hano=Hanunoo
-Hans=Simplified Han
-Hant=Traditional Han
-Hebr=Hebrew
-Hira=Hiragana
-Hmng=Pahawh Hmong
-Hrkt=Katakana or Hiragana
-Hung=Old Hungarian
-Inds=Indus
-Ital=Old Italic
-Java=Javanese
-Jpan=Japanese
-Kali=Kayah Li
-Kana=Katakana
-Khar=Kharoshthi
-Khmr=Khmer
-Knda=Kannada
-Kore=Korean
-Kpel=Kpelle
-Kthi=Kaithi
-Lana=Tai Tham
-Laoo=Lao
-Latf=Fraktur Latin
-Latg=Gaelic Latin
-Latn=Latin
-Lepc=Lepcha
-Limb=Limbu
-Lina=Linear A
-Linb=Linear B
-Lisu=Lisu
-Loma=Loma
-Lyci=Lycian
-Lydi=Lydian
-Mand=Mandaic
-Mani=Manichaean
-Maya=Mayan hieroglyphs
-Mend=Mende
-Merc=Meroitic Cursive
-Mero=Meroitic
-Mlym=Malayalam
-Mong=Mongolian
-Moon=Moon
-Mtei=Meitei Mayek
-Mymr=Myanmar
-Narb=Old North Arabian
-Nbat=Nabataean
-Nkgb=Nakhi Geba
-Nkoo=N\u2019Ko
-Ogam=Ogham
-Olck=Ol Chiki
-Orkh=Orkhon
-Orya=Oriya
-Osma=Osmanya
-Palm=Palmyrene
-Perm=Old Permic
-Phag=Phags-pa
-Phli=Inscriptional Pahlavi
-Phlp=Psalter Pahlavi
-Phlv=Book Pahlavi
-Phnx=Phoenician
-Plrd=Miao
-Prti=Inscriptional Parthian
-Rjng=Rejang
-Roro=Rongorongo
-Runr=Runic
-Samr=Samaritan
-Sara=Sarati
-Sarb=Old South Arabian
-Saur=Saurashtra
-Sgnw=SignWriting
-Shaw=Shavian
-Sind=Sindhi
-Sinh=Sinhala
-Sund=Sundanese
-Sylo=Syloti Nagri
-Syrc=Syriac
-Syre=Estrangelo Syriac
-Syrj=Western Syriac
-Syrn=Eastern Syriac
-Tagb=Tagbanwa
-Tale=Tai Le
-Talu=New Tai Lue
-Taml=Tamil
-Tavt=Tai Viet
-Telu=Telugu
-Teng=Tengwar
-Tfng=Tifinagh
-Tglg=Tagalog
-Thaa=Thaana
-Thai=Thai
-Tibt=Tibetan
-Ugar=Ugaritic
-Vaii=Vai
-Visp=Visible Speech
-Wara=Warang Citi
-Xpeo=Old Persian
-Xsux=Sumero-Akkadian Cuneiform
-Yiii=Yi
-Zinh=Inherited script
-Zmth=Mathematical Notation
-Zsym=Symbols
-Zxxx=Unwritten
-Zyyy=Undetermined script
-Zzzz=Uncoded script
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=United Arab Emirates
-AF=Afghanistan
-AG=Antigua and Barbuda
-AI=Anguilla
-AL=Albania
-AM=Armenia
-AN=Netherlands Antilles
-AO=Angola
-AQ=Antarctica
-AR=Argentina
-AS=American Samoa
-AT=Austria
-AU=Australia
-AW=Aruba
-AX=\u00c5land Islands
-AZ=Azerbaijan
-BA=Bosnia and Herzegovina
-BB=Barbados
-BD=Bangladesh
-BE=Belgium
-BF=Burkina Faso
-BG=Bulgaria
-BH=Bahrain
-BI=Burundi
-BJ=Benin
-BL=Saint Barth\u00e9lemy
-BM=Bermuda
-BN=Brunei
-BO=Bolivia
-BQ=Bonaire, Sint Eustatius and Saba
-BR=Brazil
-BS=Bahamas
-BT=Bhutan
-BV=Bouvet Island
-BW=Botswana
-BY=Belarus
-BZ=Belize
-CA=Canada
-CC=Cocos Islands
-CD=The Democratic Republic Of Congo
-CF=Central African Republic
-CG=Congo
-CH=Switzerland
-CI=C\u00F4te d'Ivoire
-CK=Cook Islands
-CL=Chile
-CM=Cameroon
-CN=China
-CO=Colombia
-CR=Costa Rica
-CS=Serbia and Montenegro
-CU=Cuba
-CV=Cape Verde
-CW=Cura\u00e7ao
-CX=Christmas Island
-CY=Cyprus
-CZ=Czech Republic
-DE=Germany
-DJ=Djibouti
-DK=Denmark
-DM=Dominica
-DO=Dominican Republic
-DZ=Algeria
-EC=Ecuador
-EE=Estonia
-EG=Egypt
-EH=Western Sahara
-ER=Eritrea
-ES=Spain
-ET=Ethiopia
-FI=Finland
-FJ=Fiji
-FK=Falkland Islands
-FM=Micronesia
-FO=Faroe Islands
-FR=France
-GA=Gabon
-GB=United Kingdom
-GD=Grenada
-GE=Georgia
-GF=French Guiana
-GG=Guernsey
-GH=Ghana
-GI=Gibraltar
-GL=Greenland
-GM=Gambia
-GN=Guinea
-GP=Guadeloupe
-GQ=Equatorial Guinea
-GR=Greece
-GS=South Georgia And The South Sandwich Islands
-GT=Guatemala
-GU=Guam
-GW=Guinea-Bissau
-GY=Guyana
-HK=Hong Kong
-HM=Heard Island And McDonald Islands
-HN=Honduras
-HR=Croatia
-HT=Haiti
-HU=Hungary
-ID=Indonesia
-IE=Ireland
-IL=Israel
-IM=Isle Of Man
-IN=India
-IO=British Indian Ocean Territory
-IQ=Iraq
-IR=Iran
-IS=Iceland
-IT=Italy
-JE=Jersey
-JM=Jamaica
-JO=Jordan
-JP=Japan
-KE=Kenya
-KG=Kyrgyzstan
-KH=Cambodia
-KI=Kiribati
-KM=Comoros
-KN=Saint Kitts And Nevis
-KP=North Korea
-KR=South Korea
-KW=Kuwait
-KY=Cayman Islands
-KZ=Kazakhstan
-LA=Laos
-LB=Lebanon
-LC=Saint Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Lithuania
-LU=Luxembourg
-LV=Latvia
-LY=Libya
-MA=Morocco
-MC=Monaco
-MD=Moldova
-ME=Montenegro
-MF=Saint Martin
-MG=Madagascar
-MH=Marshall Islands
-MK=Macedonia
-ML=Mali
-MM=Myanmar
-MN=Mongolia
-MO=Macao
-MP=Northern Mariana Islands
-MQ=Martinique
-MR=Mauritania
-MS=Montserrat
-MT=Malta
-MU=Mauritius
-MV=Maldives
-MW=Malawi
-MX=Mexico
-MY=Malaysia
-MZ=Mozambique
-NA=Namibia
-NC=New Caledonia
-NE=Niger
-NF=Norfolk Island
-NG=Nigeria
-NI=Nicaragua
-NL=Netherlands
-NO=Norway
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=New Zealand
-OM=Oman
-PA=Panama
-PE=Peru
-PF=French Polynesia
-PG=Papua New Guinea
-PH=Philippines
-PK=Pakistan
-PL=Poland
-PM=Saint Pierre And Miquelon
-PN=Pitcairn
-PR=Puerto Rico
-PS=Palestine
-PT=Portugal
-PW=Palau
-PY=Paraguay
-QA=Qatar
-RE=Reunion
-RO=Romania
-RS=Serbia
-RU=Russia
-RW=Rwanda
-SA=Saudi Arabia
-SB=Solomon Islands
-SC=Seychelles
-SD=Sudan
-SE=Sweden
-SG=Singapore
-SH=Saint Helena
-SI=Slovenia
-SJ=Svalbard And Jan Mayen
-SK=Slovakia
-SL=Sierra Leone
-SM=San Marino
-SN=Senegal
-SO=Somalia
-SR=Suriname
-ST=Sao Tome And Principe
-SV=El Salvador
-SX=Sint Maarten (Dutch part)
-SY=Syria
-SZ=Swaziland
-TC=Turks And Caicos Islands
-TD=Chad
-TF=French Southern Territories
-TG=Togo
-TH=Thailand
-TJ=Tajikistan
-TK=Tokelau
-TL=Timor-Leste
-TM=Turkmenistan
-TN=Tunisia
-TO=Tonga
-TR=Turkey
-TT=Trinidad and Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tanzania
-UA=Ukraine
-UG=Uganda
-UM=United States Minor Outlying Islands
-US=United States
-UY=Uruguay
-UZ=Uzbekistan
-VA=Vatican
-VC=Saint Vincent And The Grenadines
-VE=Venezuela
-VG=British Virgin Islands
-VI=U.S. Virgin Islands
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis And Futuna
-WS=Samoa
-YE=Yemen
-YT=Mayotte
-ZA=South Africa
-ZM=Zambia
-ZW=Zimbabwe
-
-# territory names
-# key is UN M.49 country and area code
-
-001=World
-002=Africa
-003=North America
-005=South America
-009=Oceania
-011=Western Africa
-013=Central America
-014=Eastern Africa
-015=Northern Africa
-017=Middle Africa
-018=Southern Africa
-019=Americas
-021=Northern America
-029=Caribbean
-030=Eastern Asia
-034=Southern Asia
-035=South-Eastern Asia
-039=Southern Europe
-053=Australia and New Zealand
-054=Melanesia
-057=Micronesian Region
-061=Polynesia
-142=Asia
-143=Central Asia
-145=Western Asia
-150=Europe
-151=Eastern Europe
-154=Northern Europe
-155=Western Europe
-419=Latin America and the Caribbean
-
-# variant names
-# key is %%variant
-# rarely localized
-
-%%EURO=Euro
-%%B=Bokm\u00e5l
-%%NY=Nynorsk
-
-
-# locale name patterns
-# rarely localized
-
-DisplayNamePattern={0,choice,0#|1#{1}|2#{1} ({2})}
-ListPattern={0,choice,0#|1#{1}|2#{1},{2}|3#{1},{2},{3}}
-ListCompositionPattern={0},{1}
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ar.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ar.properties
deleted file mode 100755
index a21d470..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ar.properties
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ar=\u0627\u0644\u0639\u0631\u0628\u064a\u0629
-
-# country names
-# key is ISO 3166 country code
-
-EG=\u0645\u0635\u0631
-DZ=\u0627\u0644\u062c\u0632\u0627\u0626\u0631
-BH=\u0627\u0644\u0628\u062d\u0631\u064a\u0646
-IQ=\u0627\u0644\u0639\u0631\u0627\u0642
-JO=\u0627\u0644\u0623\u0631\u062f\u0646
-KW=\u0627\u0644\u0643\u0648\u064a\u062a
-LB=\u0644\u0628\u0646\u0627\u0646
-LY=\u0644\u064a\u0628\u064a\u0627
-MA=\u0627\u0644\u0645\u063a\u0631\u0628
-OM=\u0633\u0644\u0637\u0646\u0629\u0020\u0639\u0645\u0627\u0646
-QA=\u0642\u0637\u0631
-SA=\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629
-SD=\u0627\u0644\u0633\u0648\u062f\u0627\u0646
-SY=\u0633\u0648\u0631\u064a\u0627
-TN=\u062a\u0648\u0646\u0633
-AE=\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a
-YE=\u0627\u0644\u064a\u0645\u0646
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_be.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_be.properties
deleted file mode 100755
index 25aaa3d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_be.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-be=\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0456
-
-# country names
-# key is ISO 3166 country code
-
-BY=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_bg.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_bg.properties
deleted file mode 100755
index 2ea8f30..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_bg.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-bg=\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438
-
-# country names
-# key is ISO 3166 country code
-
-BG=\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ca.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ca.properties
deleted file mode 100755
index 61ec333..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ca.properties
+++ /dev/null
@@ -1,382 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ab=abkhaz
-aa=\u00e0far
-af=afrikaans
-sq=alban\u00e8s
-am=amh\u00e0ric
-ar=\u00e2rab
-hy=armeni
-as=assam\u00e8s
-ay=aimara
-az=\u00e0zeri
-ba=baixkir
-eu=basc
-bn=bengal\u00ed
-dz=bhutan\u00e8s
-bh=bihari
-bi=bislama
-br=bret\u00f3
-bg=b\u00falgar
-my=birm\u00e0
-be=bielor\u00fas
-km=cambodj\u00e0
-ca=catal\u00e0
-zh=xin\u00e9s
-co=cors
-hr=croat
-cs=txec
-da=dan\u00e8s
-nl=neerland\u00e8s
-en=angl\u00e8s
-eo=esperanto
-et=estoni\u00e0
-fo=fero\u00e8s
-fj=fiji\u00e0
-fi=fin\u00e8s
-fr=franc\u00e8s
-fy=fris\u00f3
-gl=gallec
-ka=georgi\u00e0
-de=alemany
-el=grec
-kl=greenland\u00e8s
-gn=guaran\u00ed
-gu=gujarati
-ha=hausa
-he=hebreu
-iw=hebreu
-hi=hindi
-hu=hongar\u00e8s
-is=island\u00e8s
-id=indonesi
-in=indonesi
-ia=interlingua
-ie=interlingue
-iu=inuktitut
-ik=inupiak
-ga=irland\u00e8s
-it=itali\u00e0
-ja=japon\u00e8s
-jw=javan\u00e8s
-kn=kannada
-ks=caixmiri
-kk=kazakh
-rw=kinyarwanda
-ky=kirgu\u00eds
-rn=kirundi
-ko=core\u00e0
-ku=kurd
-lo=laosi\u00e0
-la=llat\u00ed
-lv=let\u00f3)
-ln=lingala
-lt=litu\u00e0
-mk=macedoni
-mg=malgaix
-ms=malai
-ml=malaialam
-mt=malt\u00e8s
-mi=maori
-mr=marathi
-mo=moldau
-mn=mongol
-na=nauru\u00e0
-ne=nepal\u00e8s
-no=noruec
-oc=occit\u00e0
-or=oriya
-om=oromo (afan)
-ps=paixto
-fa=persa
-pl=polon\u00e8s
-pt=portugu\u00e8s
-pa=panjabi
-qu=qu\u00e8txua
-rm=retorom\u00e0nic
-ro=roman\u00e8s
-ru=rus
-sm=samo\u00e0
-sg=sango
-sa=s\u00e0nscrit
-gd=escoc\u00e8s
-sr=serbi
-st=sotho
-tn=tswana
-sn=shona
-sd=sindhi
-si=sinhal\u00e8s
-ss=siswati
-sk=eslovac
-sl=eslov\u00e8
-so=somali
-es=espanyol
-su=sundan\u00e8s
-sw=swahili
-sv=suec
-tl=tag\u00e0log
-tg=tadjik
-ta=t\u00e0mil
-tt=t\u00e0tar
-te=telugu
-th=thai
-bo=tibet\u00e0
-ti=tigrinya
-to=tonga
-ts=tsonga
-tr=turc
-tk=turcman
-tw=twi
-ug=uigur
-uk=ucra\u00efn\u00e8s
-ur=urd\u00fa
-uz=uzbek
-vi=vietnamita
-vo=volapuk
-cy=gal\u00b7l\u00e8s
-wo=w\u00f2lof
-xh=xosa
-ji=jiddish
-yi=jiddish
-yo=ioruba
-za=zhuang
-zu=zulu
-
-# country names
-# key is ISO 3166 country code
-
-AF=Afganistan
-AL=Alb\u00e0nia
-DZ=Alg\u00e8ria
-AD=Andorra
-AO=Angola
-AI=Anguilla
-AR=Argentina
-AM=Arm\u00e8nia
-AW=Aruba
-AU=Austr\u00e0lia
-AT=\u00c2ustria
-AZ=Azerbaidjan
-BS=Bahames
-BH=Bahrain
-BD=Bangla Desh
-BB=Barbados
-BY=Bielor\u00fassia
-BE=B\u00e8lgica
-BZ=Belize
-BJ=Benin
-BM=Bermudes
-BT=Bhutan
-BO=Bol\u00edvia
-BA=B\u00f2snia i Hercegovina
-BW=Botswana
-BR=Brasil
-BN=Brunei
-BG=Bulg\u00e0ria
-BF=Burkina Faso
-BI=Burundi
-KH=Cambodja
-CM=Camerun
-CA=Canad\u00e0
-CV=Cap Verd
-CF=Rep\u00fablica Centrafricana
-TD=Txad
-CL=Xile
-CN=Xina
-CO=Col\u00f2mbia
-KM=Comores
-CG=Congo
-CR=Costa Rica
-CI=Costa d'Ivori
-HR=Cro\u00e0cia
-CU=Cuba
-CY=Xipre
-CZ=Rep\u00fablica Txeca
-DK=Dinamarca
-DJ=Djibouti
-DM=Dominica
-DO=Rep\u00fablica Dominicana
-TP=Timor Oriental
-EC=Equador
-EG=Egipte
-SV=El Salvador
-GQ=Guinea Equatorial
-ER=Eritrea
-EE=Est\u00f2nia
-ET=Eti\u00f2pia
-FJ=Fiji
-FI=Finl\u00e0ndia
-FR=Fran\u00e7a
-GF=Guaiana Francesa
-PF=Polin\u00e8sia Francesa
-TF=Territoris Meridionals Francesos ??
-GA=Gabon
-GM=G\u00e0mbia
-GE=Ge\u00f2rgia
-DE=Alemanya
-GH=Ghana
-GR=Gr\u00e8cia
-GP=Guadeloupe
-GT=Guatemala
-GN=Guinea
-GW=Guinea Bissau
-GY=Guyana
-HT=Hait\u00ed
-HN=Hondures
-HK=Hong Kong
-HU=Hongria
-IS=Isl\u00e0ndia
-IN=\u00cdndia
-ID=Indon\u00e8sia
-IR=Iran
-IQ=Iraq
-IE=Irlanda
-IL=Israel
-IT=It\u00e0lia
-JM=Jamaica
-JP=Jap\u00f3
-JO=Jord\u00e0nia
-KZ=Kazakhstan
-KE=Kenya
-KI=Kiribati
-KP=Corea del Nord
-KR=Corea del Sud
-KW=Kuwait
-KG=Kirgizistan
-LA=Laos
-LV=Let\u00f2nia
-LB=L\u00edban
-LS=Lesotho
-LR=Lib\u00e8ria
-LY=L\u00edbia
-LI=Liechtenstein
-LT=Litu\u00e0nia
-LU=Luxemburg
-MK=Maced\u00f2nia
-MG=Madagascar
-MY=Mal\u00e0isia
-ML=Mali
-MT=Malta
-MQ=Martinica
-MR=Maurit\u00e0nia
-MU=Maurici
-YT=Mayotte
-MX=M\u00e8xic
-FM=Micron\u00e8sia
-MD=Mold\u00e0via
-MC=M\u00f2naco
-MN=Mong\u00f2lia
-MS=Montserrat
-MA=Marroc
-MZ=Mo\u00e7ambic
-MM=Myanmar
-NA=Nam\u00edbia
-NP=Nepal
-NL=Pa\u00efsos Baixos
-AN=Antilles Holandeses
-NC=Nova Caled\u00f2nia
-NZ=Nova Zelanda
-NI=Nicaragua
-NE=N\u00edger
-NG=Nig\u00e8ria
-NU=Niue
-NO=Noruega
-OM=Oman
-PK=Pakistan
-PA=Panam\u00e0
-PG=Papua Nova Guinea
-PY=Paraguai
-PE=Per\u00fa
-PH=Filipines
-PL=Pol\u00f2nia
-PT=Portugal
-PR=Puerto Rico
-QA=Qatar
-RO=Romania
-RU=R\u00fassia
-RW=Rwanda
-SA=Ar\u00e0bia Saud\u00ed
-SN=Senegal
-SP=S\u00e8rbia
-SC=Seychelles
-SL=Sierra Leone
-SG=Singapur
-SK=Eslov\u00e0quia
-SI=Eslov\u00e8nia
-SO=Som\u00e0lia
-ZA=Sud-\u00e0frica
-ES=Espanya
-LK=Sri Lanka
-SD=Sudan
-SR=Surinam
-SZ=Swazil\u00e0ndia
-SE=Su\u00e8cia
-CH=Switzerland
-SY=S\u00edria
-TW=Taiwan
-TJ=Tadjikistan
-TZ=Tanz\u00e0nia
-TH=Tail\u00e0ndia
-TG=Togo
-TK=Tokelau
-TO=Tonga
-TT=Trinitat i Tobago
-TN=Tun\u00edsia
-TR=Turquia
-TM=Turkmenistan
-UG=Uganda
-UA=Ucra\u00efna
-AE=Uni\u00f3 dels Emirats \u00c0rabs
-GB=Regne Unit
-US=Estats Units
-UY=Uruguai
-UZ=Uzbekistan
-VU=Vanuatu
-VA=Vatic\u00e0
-VE=Vene\u00e7uela
-VN=Vietnam
-VG=Illes Verges Brit\u00e0niques
-VI=Illes Verges dels USA
-EH=S\u00e0hara Occidental
-YE=Iemen
-ZR=Zaire
-ZM=Z\u00e0mbia
-ZW=Zimbabwe
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_cs.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_cs.properties
deleted file mode 100755
index a2e8cda..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_cs.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-cs=\u010de\u0161tina
-
-# country names
-# key is ISO 3166 country code
-
-CZ=\u010cesk\u00e1 republika
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_da.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_da.properties
deleted file mode 100755
index 3981ca9..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_da.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-da=Dansk
-
-# country names
-# key is ISO 3166 country code
-
-DK=Danmark
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_de.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_de.properties
deleted file mode 100755
index dc66691..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_de.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=Afar
-ab=Abchasisch
-ae=Avestisch
-af=Afrikaans
-ak=Akan
-am=Amharisch
-an=Aragonisch
-ar=Arabisch
-as=Assamesisch
-av=Avarisch
-ay=Aymara
-az=Aserbaidschanisch
-ba=Baschkirisch
-be=Belorussisch
-bg=Bulgarisch
-bh=Biharisch
-bi=Bislamisch
-bm=Bambara
-bn=Bengalisch
-bo=Tibetanisch
-br=Bretonisch
-bs=Bosnisch
-ca=Katalanisch
-ce=Chechen
-ch=Chamorro
-co=Korsisch
-cr=Cree
-cs=Tschechisch
-cu=Church Slavic
-cv=Chuvash
-cy=Walisisch
-da=D\u00e4nisch
-de=Deutsch
-dv=Divehi
-dz=Bhutani
-ee=Ewe
-el=Griechisch
-en=Englisch
-eo=Esperanto
-es=Spanisch
-et=Estnisch
-eu=Baskisch
-fa=Persisch
-ff=Fulah
-fi=Finnisch
-fj=Fidschi
-fo=Far\u00f6isch
-fr=Franz\u00f6sisch
-fy=Friesisch
-ga=Irisch
-gd=Schottisches G\u00e4lisch
-gl=Galizisch
-gn=Guarani
-gu=Gujaratisch
-gv=Manx
-ha=Haussa
-he=Hebr\u00e4isch
-hi=Hindi
-ho=Hiri Motu
-hr=Kroatisch
-ht=Haitisch
-hu=Ungarisch
-hy=Armenisch
-hz=Herero
-ia=Interlingua
-id=Indonesisch
-ie=Interlingue
-ig=Igbo
-ii=Sichuan Yi
-ik=Inupiak
-in=Indonesisch
-io=Ido
-is=Isl\u00e4ndisch
-it=Italienisch
-iu=Inuktitut
-iw=Hebr\u00e4isch
-ja=Japanisch
-ji=Jiddish
-jv=Javanisch
-ka=Georgisch
-kg=Kongo
-ki=Kikuyu
-kj=Kwanyama
-kk=Kasachisch
-kl=Gr\u00f6nl\u00e4ndisch
-km=Kambodschanisch
-kn=Kannada
-ko=Koreanisch
-kr=Kanuri
-ks=Kaschmirisch
-ku=Kurdisch
-kv=Komi
-kw=Cornish
-ky=Kirgisisch
-la=Lateinisch
-lb=Letzeburgisch
-lg=Ganda
-li=Limburgisch
-ln=Lingalisch
-lo=Laotisch
-lt=Litauisch
-lu=Luba-Katanga
-lv=Lettisch
-mg=Malagasisch
-mh=Marshall
-mi=Maorisch
-mk=Mazedonisch
-ml=Malaysisch
-mn=Mongolisch
-mo=Moldavisch
-mr=Marathi
-ms=Malay
-mt=Maltesisch
-my=Burmesisch
-na=Nauruisch
-nb=Norwegisch, Bokm\u00e5l
-nd=Nord-Ndebele
-ne=Nepalisch
-ng=Ndonga
-nl=Niederl\u00e4ndisch
-nn=Norwegisch, Nynorsk
-no=Norwegisch
-nr=S\u00fcd-Ndebele
-nv=Navajo
-ny=Nyanja
-oc=Okzitanisch
-oj=Ojibwa
-om=Oromo (Afan)
-or=Orija
-os=Ossetisch
-pa=Pundjabisch
-pi=Pali
-pl=Polnisch
-ps=Paschtu (Pushto)
-pt=Portugiesisch
-qu=Quechua
-rm=R\u00e4toromanisch
-rn=Kirundisch
-ro=Rum\u00e4nisch
-ru=Russisch
-rw=Ruanda
-sa=Sanskrit
-sc=Sardisch
-sd=Zinti
-se=Nord-Sami
-sg=Sango
-si=Singhalesisch
-sk=Slowakisch
-sl=Slowenisch
-sm=Samoanisch
-sn=Schonisch
-so=Somalisch
-sq=Albanisch
-sr=Serbisch
-ss=Swasil\u00e4ndisch
-st=Sesothisch
-su=Sudanesisch
-sv=Schwedisch
-sw=Suaheli
-ta=Tamilisch
-te=Telugu
-tg=Tadschikisch
-th=Thai
-ti=Tigrinja
-tk=Turkmenisch
-tl=Tagalog
-tn=Sezuan
-to=Tongaisch
-tr=T\u00fcrkisch
-ts=Tsongaisch
-tt=Tatarisch
-tw=Twi
-ty=Tahitisch
-ug=Uigurisch
-uk=Ukrainisch
-ur=Urdu
-uz=Usbekisch
-ve=Venda
-vi=Vietnamesisch
-vo=Volap\u00fck
-wa=Wallonisch
-wo=Wolof
-xh=Xhosa
-yi=Jiddish
-yo=Joruba
-za=Zhuang
-zh=Chinesisch
-zu=Zulu
-
-# key is ISO 639.2 language code
-aar=Afar
-abk=Abchasisch
-ace=Aceh-Sprache
-ach=Acholi-Sprache
-ada=Adangme
-ady=Adygeisch
-afa=Afro-Asiatisch
-afh=Afrihili 
-afr=Afrikaans
-ain=Ainu-Sprache
-aka=Akan
-akk=Akkadisch
-alb=Albanisch
-ale=Aleutisch
-alg=Algonkin-Sprache
-alt=S\u00FCd-Altaisch
-amh=Amharisch
-ang=Altenglisch
-anp=Angika
-apa=Apache-Sprache
-ara=Arabisch
-arc=Aram\u00E4isch
-arg=Aragonisch
-arm=Armenisch
-arn=Araukanisch
-arp=Arapaho
-art=Kunstsprache
-arw=Arawak-Sprache
-asm=Assamesisch 
-ast=Asturianisch
-ath=Athapaskisch
-aus=Australisch
-ava=Avarisch
-ave=Avestisch 
-awa=Awadhi
-aym=Aymara
-aze=Aserbaidschanisch
-bad=Banda
-bai=Bamileke-Sprache
-bak=Baschkirisch
-bal=Belutschisch
-bam=Bambara
-ban=Balinesisch
-baq=Baskisch
-bas=Basaa-Sprache
-bat=Baltisch
-bej=Bedauye
-bel=Belorussisch
-bem=Bemba-Sprache
-ben=Bengalisch
-ber=Berber-Sprache
-bho=Bodschpuri
-bih=Biharisch
-bik=Bikol-Sprache
-bin=Bini-Sprache
-bis=Bislamisch
-bla=Blackfoot-Sprache
-bnt=Bantu-Sprache
-bos=Bosnisch
-bra=Braj-Bhakha
-bre=Bretonisch
-btk=Battakisch
-bua=Burjatisch
-bug=Buginesisch
-bul=Bulgarisch
-bur=Burmesisch
-byn=Blin
-cad=Caddo
-cai=Zentralamerikanische Indianersprache
-car=Karibisch
-cat=Katalanisch
-cau=Kaukasisch
-ceb=Cebuano
-cel=Keltisch
-cha=Chamorro
-chb=Chibcha-Sprache
-che=Tschetschenisch
-chg=Tschagataisch
-chi=Chinesisch
-chk=Trukesisch
-chm=Tscheremissisch
-chn=Chinook
-cho=Choctaw
-chp=Chipewyan
-chr=Cherokee
-chu=Kirchenslawisch
-chv=Chuvash
-chy=Cheyenne
-cmc=Cham-Sprache
-cop=Koptisch
-cor=Cornish
-cos=Korsisch
-cpe=Kreolisch-Englische Sprache
-cpf=Kreolisch-Franz\u00F6sische Sprache
-cpp=Kreolisch-Portugiesische Sprache
-cre=Cree
-crh=Krimtatarisch 
-crp=Kreolische Sprache 
-csb=Kaschubisch 
-cus=Kuschitisch
-cze=Tschechisch
-dak=Dakota-Sprache
-dan=D\u00E4nisch
-dar=Darginisch
-day=Dajak
-del=Delaware-Sprache
-den=Slave
-dgr=Dogrib
-din=Dinka-Sprache
-div=Divehi
-doi=Dogri
-dra=Drawidisch
-dsb=Niedersorbisch
-dua=Duala
-dum=Mittelniederl\u00E4ndisch
-dut=Niederl\u00E4ndisch
-dyu=Dyula-Sprache
-dzo=Bhutani
-efi=Efik
-egy=\u00C4gyptisch
-eka=Ekajuk
-elx=Elamisch
-eng=Englisch
-enm=Mittelenglisch
-epo=Esperanto
-est=Estnisch
-ewe=Ewe
-ewo=Ewondo
-fan=Pangwe-Sprache
-fao=F\u00E4r\u00F6isch 
-fat=Fanti-Sprache
-fij=Fidschi
-fil=Philippinisch
-fin=Finnisch
-fiu=Finnougrisch
-fon=Fon-Sprache
-fre=Franz\u00F6sisch
-frm=Mittelfranz\u00F6sisch
-fro=Altfranz\u00F6sisch
-frr=Nordfriesisch
-frs=Ostfriesisch
-fry=Westfriesisch
-ful=Fulah
-fur=Friulisch
-gaa=Ga-Sprache
-gay=Gayo
-gba=Gbaya-Sprache
-gem=Germanisch
-geo=Georgisch
-ger=Deutsch
-gez=Geez
-gil=Gilbertesisch
-gla=G\u00E4lisch
-gle=Irisch
-glg=Galizisch
-glv=Manx
-gmh=Mittelhochdeutsch
-goh=Althochdeutsch
-gon=Gondi-Sprache
-gor=Mongondou
-got=Gotisch
-grb=Grebo-Sprache
-grc=Altgriechisch
-gre=Modernes Griechisch (1453-)
-grn=Guarani
-gsw=Schweizerdeutsch
-guj=Gujaratisch
-gwi=Kutchin-Sprache
-hai=Haida-Sprache
-hat=Haitisch
-hau=Haussa
-haw=Hawaiisch
-heb=Hebr\u00E4isch
-her=Herero
-hil=Hiligaynon-Sprache
-him=Himachali
-hin=Hindi
-hit=Hethitisch
-hmn=Miao-Sprache
-hmo=Hiri Motu
-hrv=Kroatisch
-hsb=Obersorbisch
-hun=Ungarisch
-hup=Hupa
-iba=Iban
-ibo=Igbo
-ice=Isl\u00E4ndisch
-ido=Ido
-iii=Sichuan Yi
-ijo=Ijo-Sprache
-iku=Inuktitut
-ile=Interlingue
-ilo=Ilokano-Sprache
-ina=Interlingua (Internationale Hilfssprache, Vereinigung)
-inc=Indoarisch
-ind=Indonesisch
-ine=Indogermanisch
-inh=Inguschisch
-ipk=Inupiak
-ira=Iranische Sprache
-iro=Irokesische Sprache
-ita=Italienisch
-jav=Javanesisch
-jbo=Lojban
-jpn=Japanisch
-jpr=J\u00FCdisch-Persisch
-jrb=J\u00FCdisch-Arabisch
-kaa=Karakalpakisch
-kab=Kabylisch
-kac=Kachin-Sprache
-kal=Kalaallisut (Gr\u00F6nl\u00E4ndisch)
-kam=Kamba
-kan=Kannada
-kar=Karenisch
-kas=Kaschmirisch
-kau=Kanuri
-kaw=Kawi
-kaz=Kasachisch
-kbd=Kabardinisch 
-kha=Khasi-Sprache
-khi=Khoisan-Sprache
-khm=Khmerisch, Zentral
-kho=Sakisch
-kik=Kikuyu
-kin=Kinyarwanda
-kir=Kirgisisch
-kmb=Kimbundu-Sprache
-kok=Konkani
-kom=Komi
-kon=Kongo
-kor=Koreanisch
-kos=Kosraeanisch 
-kpe=Kpelle-Sprache
-krc=Karatschaiisch-Balkarisch
-krl=Karelisch
-kro=Kru-Sprache
-kru=Oraon-Sprache
-kua=Kuanyama
-kum=Kumykisch
-kur=Kurdisch
-kut=Kutenai-Sprache
-lad=Ladino
-lah=Lahnda
-lam=Lamba-Sprache
-lao=Laotisch
-lat=Lateinisch
-lav=Lettisch
-lez=Lesgisch
-lim=Limburgisch
-lin=Lingalisch
-lit=Litauisch
-lol=Mongo
-loz=Rotse-Sprache
-ltz=Luxemburgisch
-lua=Luba-Lulua
-lub=Luba-Katanga
-lug=Ganda
-lui=Luiseno-Sprache
-lun=Lunda-Sprache
-luo=Luo-Sprache
-lus=Lushai-Sprache
-mac=Mazedonisch
-mad=Maduresisch
-mag=Khotta
-mah=Marshall
-mai=Maithili
-mak=Makassarisch
-mal=Malaysisch
-man=Manding-Sprache
-mao=Maorisch
-map=Austronesisch
-mar=Marathi
-mas=Massai-Sprache
-may=Malay
-mdf=Moksha
-mdr=Mandaresisch
-men=Mende-Sprache
-mga=Mittelirisch (900-1200)
-mic=Micmac-Sprache
-min=Minangkabau-Sprache
-mis=(andere Sprache)
-mkh=Mon-Khmer-Sprache
-mlg=Malagasisch
-mlt=Maltesisch
-mnc=Mandschurisch
-mni=Meithei-Sprache
-mno=Manobo-Sprache
-moh=Mohawk-Sprache
-mon=Mongolisch
-mos=Mossi-Sprache
-mul=Mehrsprachig
-mun=Munda-Sprache
-mus=Muskogee-Sprache
-mwl=Mirandesisch
-mwr=Marwari
-myn=Maya-Sprache
-myv=Ersja-Mordwinisch
-nah=Nahuatl
-nai=Nordamerikanische Indianersprache
-nap=Neapolitanisch
-nau=Nauru
-nav=Navajo
-nbl=Ndebele, S\u00FCd
-nde=Ndebele, Nord
-ndo=Ndonga
-nds=Niederdeutsch
-nep=Nepalesisch
-new=Newan
-nia=Nias-Sprache
-nic=Cordoba
-niu=Niue-Sprache
-nno=Norwegisch, Nynorsk
-nob=Bokmal, Norwegisch
-nog=Nogai
-non=Altnordisch
-nor=Norwegisch
-nqo=N'Ko
-nso=Nord-Sotho-Sprache
-nub=Nubisch
-nwc=Alt-Newari
-nya=Chichewa
-nym=Nyamwezi-Sprache
-nyn=Nyankole
-nyo=Nyoro
-nzi=Nzima
-oci=Okzitanisch (nach 1500)
-oji=Ojibwa
-ori=Orija
-orm=Oromo (Afan)
-osa=Osage-Sprache
-oss=Ossetisch
-ota=Osmanisch
-oto=Otomangue-Sprache
-paa=Papuasprache
-pag=Pangasinan-Sprache
-pal=Mittelpersisch
-pam=Pampanggan-Sprache
-pan=Pundjabisch
-pap=Papiamento
-pau=Palau
-peo=Altpersisch
-per=Persisch
-phi=Philippinisch
-phn=Ph\u00F6nikisch
-pli=Pali
-pol=Polnisch
-pon=Ponapeanisch
-por=Portugiesisch
-pra=Prakrit
-pro=Altprovenzalisch
-pus=Paschtunisch
-que=Quechua
-raj=Rajasthani
-rap=Osterinsel-Sprache
-rar=Rarotonganisch
-roa=Romanische Sprache
-roh=Romantsch
-rom=Romani
-rum=Rum\u00E4nisch
-run=Kirundisch
-rup=Aromunisch
-rus=Russisch
-sad=Sandawe-Sprache
-sag=Sango
-sah=Jakutisch
-sai=S\u00FCdamerikanische Indianersprache
-sal=Salish-Sprache
-sam=Samaritanisch
-san=Sanskrit
-sas=Sasak
-sat=Santali
-scn=Sizilianisch
-sco=Schottisch
-sel=Selkupisch
-sem=Semitisch
-sga=Altirisch
-sgn=Geb\u00E4rdensprache
-shn=Schan-Sprache
-sid=Sidamo
-sin=Singhalesisch
-sio=Sioux-Sprache
-sit=Tolar
-sla=Slawisch
-slo=Slowakisch
-slv=Slowenisch
-sma=S\u00FCd-Samisch
-sme=Nord-Samisch
-smi=Lappisch
-smj=Lule-Lappisch
-smn=Inari-Lappisch
-smo=Samoanisch
-sms=Skolt-Lappisch
-sna=Schonisch
-snd=Zinti-Sprache
-snk=Soninke-Sprache
-sog=Sogdisch 
-som=Somalisch
-son=Songhai-Sprache
-sot=S\u00FCd-Sotho 
-spa=Spanisch
-srd=Sardisch
-srn=Srananisch
-srp=Serbisch
-srr=Serer-Sprache
-ssa=Nilosaharanisch
-ssw=Swasil\u00E4ndisch
-suk=Sukuma-Sprache
-sun=Sundanesisch
-sus=Susu
-sux=Sumerisch
-swa=Suaheli
-swe=Schwedisch
-syc=Altsyrisch
-syr=Syrisch
-tah=Tahitisch
-tai=Tai-Sprache
-tam=Tsongaisch
-tat=Tatarisch
-tel=Telugu
-tem=Temne
-ter=Tereno-Sprache
-tet=Tetum-Sprache
-tgk=Tadschikisch
-tgl=Tagalog
-tha=Thai
-tib=Tibetanisch
-tig=Tigre
-tir=Tigrinja
-tiv=Tiv-Sprache
-tkl=Tokelauanisch
-tlh=Klingonisch
-tli=Tlingit-Sprache
-tmh=Tamaseq
-tog=Tsonga-Sprache
-ton=Tonga (Tonga-Inseln)
-tpi=Neumelanesisch
-tsi=Tsimshian-Sprache
-tsn=Sezuan
-tso=Tsonga
-tuk=Turkmenisch
-tum=Tumbuka-Sprache
-tup=Tupi-Sprache
-tur=T\u00FCrkisch
-tut=Altaisch
-tvl=Elliceanisch
-twi=Twi
-tyv=Tuwinisch
-udm=Udmurtisch
-uga=Ugaritisch
-uig=Uigurisch
-ukr=Ukrainisch
-umb=Mbundu-Sprache
-und=Unbestimmte Sprache
-urd=Urdu
-uzb=Usbekisch
-vai=Vai-Sprache
-ven=Venda
-vie=Vietnamesisch
-vol=Volap\u00FCk
-vot=Wotisch
-wak=Wakashanisch
-wal=Walamo-Sprache
-war=Waray
-was=Washo-Sprache
-wel=Walisisch
-wen=Sorbisch
-wln=Wallonisch
-wol=Wolof
-xal=Kalm\u00FCckisch
-xho=Xhosa
-yao=Yao-Sprache
-yap=Yapesisch
-yid=Jiddish
-yor=Joruba
-ypk=Yupik-Sprache
-zap=Zapotekisch
-zbl=Bliss-Symbole
-zen=Zenaga
-zha=Zhuang
-znd=Zande-Sprache
-zul=Zulu
-zun=Zuni-Sprache
-zxx=Keine Sprachinhalte
-zza=Zaza
-
-# script names
-# key is ISO 15924 script code
-
-Arab=Arabisch
-Armi=Armi
-Armn=Armenisch
-Avst=Avestisch 
-Bali=Balinesisch
-Bamu=Bamum
-Bass=Bassa VHA
-Batk=Battakisch
-Beng=Bengalisch
-Blis=Bliss-Symbole
-Bopo=Bopomofo
-Brah=Brahmi
-Brai=Blindenschrift
-Bugi=Buginesisch
-Buhd=Buhid
-Cakm=Cakm
-Cans=UCAS
-Cari=Karisch
-Cham=Cham
-Cher=Cherokee
-Cirt=Cirth
-Copt=Koptisch
-Cprt=Zypriotisch
-Cyrl=Kyrillisch
-Cyrs=Altkirchenslawisch
-Deva=Devanagari
-Dsrt=Deseret
-Dupl=Duployan Shorthand
-Egyd=\u00C4gyptisch - Demotisch
-Egyh=\u00C4gyptisch - Hieratisch
-Egyp=\u00C4gyptische Hieroglyphen
-Elba=Elbasan
-Ethi=\u00C4thiopisch
-Geok=Khutsuri
-Geor=Georgisch
-Glag=Glagolitisch
-Goth=Gotisch
-Gran=Grantha
-Grek=Griechisch
-Gujr=Gujaratisch
-Guru=Gurmukhi
-Hang=Hangul
-Hani=Chinesisch
-Hano=Hanunoo
-Hans=Vereinfachte Chinesische Schrift
-Hant=Traditionelle Chinesische Schrift
-Hebr=Hebr\u00E4isch
-Hira=Hiragana
-Hmng=Pahawh Hmong
-Hrkt=Katakana oder Hiragana
-Hung=Altungarisch
-Inds=Indus-Schrift
-Ital=Altitalienisch
-Java=Javanesisch
-Jpan=Japanisch
-Kali=Kayah Li
-Kana=Katakana
-Khar=Kharoshthi
-Khmr=Kambodschanisch
-Knda=Kannada
-Kore=Koreanisch
-Kpel=Kpelle-Sprache
-Kthi=Kthi
-Lana=Lanna
-Laoo=Laotisch
-Latf=Lateinisch - Fraktur-Variante
-Latg=Lateinisch - G\u00E4lische Variante
-Latn=Lateinisch
-Lepc=Lepcha
-Limb=Limbu
-Lina=Linear A
-Linb=Linear B
-Lisu=Lisu
-Loma=Loma
-Lyci=Lykisch
-Lydi=Lydisch
-Mand=Mand\u00E4isch
-Mani=Manich\u00E4nisch
-Maya=Maya-Hieroglyphen
-Mend=Mende-Sprache
-Merc=Meroitisch, kursiv
-Mero=Meroitisch
-Mlym=Malaysisch
-Mong=Mongolisch
-Moon=Moon
-Mtei=Meitei Mayek
-Mymr=Birmanisch
-Narb=Altes Nordarabisch
-Nbat=Nabat\u00E4isch
-Nkgb=Nakhi Geba
-Nkoo=N'Ko
-Ogam=Ogham
-Olck=Ol Chiki
-Orkh=Orchon-Runen
-Orya=Orija
-Osma=Osmanisch
-Palm=Palmyrenisch
-Perm=Altpermisch
-Phag=Phags-pa
-Phli=Phli
-Phlp=Phlp
-Phlv=Pahlavi
-Phnx=Ph\u00F6nizisch
-Plrd=Pollard Phonetisch
-Prti=Prti
-Rjng=Rejang
-Roro=Rongorongo
-Runr=Runenschrift
-Samr=Samaritanisch
-Sara=Sarati
-Sarb=Alts\u00FCdarabisch
-Saur=Saurashtra
-Sgnw=Geb\u00E4rdensprache
-Shaw=Shaw-Alphabet
-Sind=Zinti-Sprache
-Sinh=Sinhala
-Sund=Sundanesisch
-Sylo=Syloti Nagri
-Syrc=Syrisch
-Syre=Syrisch - Estrangelo-Variante
-Syrj=Westsyrisch
-Syrn=Ostsyrisch
-Tagb=Tagbanwa
-Tale=Tai Le
-Talu=Tai Lue
-Taml=Tsongaisch
-Tavt=Tavt
-Telu=Telugu
-Teng=Tengwar
-Tfng=Tifinagh
-Tglg=Tagalog
-Thaa=Thaana
-Thai=Thai
-Tibt=Tibetanisch
-Ugar=Ugaritisch
-Vaii=Vai-Sprache
-Visp=Sichtbare Sprache
-Wara=Warang Citi
-Xpeo=Altpersisch
-Xsux=Sumerisch-akkadische Keilschrift
-Yiii=Yi
-Zinh=Geerbter Schriftwert
-Zmth=Zmth
-Zsym=Zsym
-Zxxx=Schriftlos
-Zyyy=Unbestimmt
-Zzzz=Uncodierte Schrift
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=Vereinigte Arabische Emirate
-AF=Afghanistan
-AG=Antigua und Barbuda
-AI=Anguilla
-AL=Albanien
-AM=Armenien
-AN=Niederl\u00e4ndische Antillen
-AO=Angola
-AQ=Antarktis
-AR=Argentinien
-AS=Amerikanisch-Samoa
-AT=\u00d6sterreich
-AU=Australien
-AW=Aruba
-AX=Aaland-Inseln
-AZ=Aserbaidschan
-BA=Bosnien und Herzegowina
-BB=Barbados
-BD=Bangladesch
-BE=Belgien
-BF=Burkina Faso
-BG=Bulgarien
-BH=Bahrain
-BI=Burundi
-BJ=Benin
-BL=Saint Barth\u00E9lemy
-BM=Bermuda
-BN=Brunei
-BO=Bolivien
-BQ=Bonaire, Sint Eustatius und Saba
-BR=Brasilien
-BS=Bahamas
-BT=Bhutan
-BV=Bouvet-Insel
-BW=Botsuana
-BY=Belarus
-BZ=Belize
-CA=Kanada
-CC=Kokos-Inseln
-CD=Demokratische Republik Kongo
-CF=Zentralafrikanische Republik
-CG=Kongo
-CH=Schweiz
-CI=Elfenbeink\u00fcste
-CK=Cook-Inseln
-CL=Chile
-CM=Kamerun
-CN=China
-CO=Kolumbien
-CR=Costa Rica
-CS=Serbien und Montenegro
-CU=Kuba
-CV=Kap Verde
-CW=Cura\u00E7ao
-CX=Weihnachtsinsel
-CY=Zypern
-CZ=Tschechische Republik
-DE=Deutschland
-DJ=Dschibuti
-DK=D\u00e4nemark
-DM=Dominica
-DO=Dominikanische Republik
-DZ=Algerien
-EC=Ecuador
-EE=Estland
-EG=\u00c4gypten
-EH=Westsahara
-ER=Eritrea
-ES=Spanien
-ET=\u00c4thiopien
-FI=Finnland
-FJ=Fidschi
-FK=Falkland-Inseln
-FM=Mikronesien
-FO=F\u00e4r\u00f6er-Inseln
-FR=Frankreich
-GA=Gabun
-GB=Vereinigtes K\u00f6nigreich
-GD=Grenada
-GE=Georgien
-GF=Franz\u00f6sisch-Guayana
-GG=Guernsey
-GH=Ghana
-GI=Gibraltar
-GL=Gr\u00f6nland
-GM=Gambia
-GN=Guinea
-GP=Guadeloupe
-GQ=\u00c4quatorial-Guinea
-GR=Griechenland
-GS=S\u00fcd-Georgia und die s\u00fcdlichen Sandwich-Inseln
-GT=Guatemala
-GU=Guam
-GW=Guinea-Bissau
-GY=Guyana
-HK=Hongkong
-HM=Heard- und McDonald-Inseln
-HN=Honduras
-HR=Kroatien
-HT=Haiti
-HU=Ungarn
-ID=Indonesien
-IE=Irland
-IL=Israel
-IM=Isle of Man
-IN=Indien
-IO=Britische Territorien im Indischen Ozean
-IQ=Irak
-IR=Iran
-IS=Island
-IT=Italien
-JE=Jersey
-JM=Jamaika
-JO=Jordanien
-JP=Japan
-KE=Kenia
-KG=Kirgistan
-KH=Kambodscha
-KI=Kiribati
-KM=Komoren
-KN=Saint Kitts und Nevis
-KP=Nordkorea
-KR=S\u00fcdkorea
-KW=Kuwait
-KY=Kaiman-Inseln
-KZ=Kasachstan
-LA=Laos
-LB=Libanon
-LC=St. Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Litauen
-LU=Luxemburg
-LV=Lettland
-LY=Libyen
-MA=Marokko
-MC=Monaco
-MD=Moldau
-ME=Montenegro
-MF=St. Martin
-MG=Madagaskar
-MH=Marshall-Inseln
-MK=Mazedonien
-ML=Mali
-MM=Myanmar
-MN=Mongolei
-MO=Macao
-MP=N\u00f6rdliche Mariannen-Inseln
-MQ=Martinique
-MR=Mauretanien
-MS=Montserrat
-MT=Malta
-MU=Mauritius
-MV=Maldiven
-MW=Malawi
-MX=Mexiko
-MY=Malaysia
-MZ=Mosambik
-NA=Namibia
-NC=Neukaledonien
-NE=Niger
-NF=Norfolk-Insel
-NG=Nigeria
-NI=Nicaragua
-NL=Niederlande
-NO=Norwegen
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Neuseeland
-OM=Oman
-PA=Panama
-PE=Peru
-PF=Franz\u00f6sisch-Polynesien
-PG=Papua-Neuguinea
-PH=Philippinen
-PK=Pakistan
-PL=Polen
-PM=St. Pierre und Miquelon
-PN=Pitcairn
-PR=Puerto Rico
-PS=Pal\u00e4stina
-PT=Portugal
-PW=Palau
-PY=Paraguay
-QA=Katar
-RE=Reunion
-RO=Rum\u00e4nien
-RS=Serbien
-RU=Russland
-RW=Ruanda
-SA=Saudi-Arabien
-SB=Solomon-Inseln
-SC=Seychellen
-SD=Sudan
-SE=Schweden
-SG=Singapur
-SH=St. Helena
-SI=Slowenien
-SJ=Svalbard und Jan Mayen
-SK=Slowakei
-SL=Sierra Leone
-SM=San Marino
-SN=Senegal
-SO=Somalia
-SR=Suriname
-ST=Sao Tome und Principe
-SV=El Salvador
-SX=Sint Maarten (Niederl\u00E4ndischer Teil)
-SY=Syrien
-SZ=Swasiland
-TC=Turks- und Caicos-Inseln
-TD=Tschad
-TF=Franz\u00f6sische S\u00fcdgebiete
-TG=Togo
-TH=Thailand
-TJ=Tadschikistan
-TK=Tokelau
-TL=Timor-Leste
-TM=Turkmenistan
-TN=Tunesien
-TO=Tonga
-TR=T\u00fcrkei
-TT=Trinidad und Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tansania
-UA=Ukraine
-UG=Uganda
-UM=\u00dcbrige Inseln im Pazifik der USA
-US=Vereinigte Staaten von Amerika
-UY=Uruguay
-UZ=Usbekistan
-VA=Vatikanstadt
-VC=St. Vincent und die Grenadinen
-VE=Venezuela
-VG=Britische Jungferninseln
-VI=Amerikanische Jungferninseln
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis und Futuna
-WS=Samoa
-YE=Jemen
-YT=Mayotte
-ZA=S\u00fcdafrika
-ZM=Sambia
-ZW=Simbabwe
-
-# territory names
-# key is UN M.49 country and area code
-
-001=Welt
-002=Afrika
-003=Nordamerika
-005=S\u00FCdamerika
-009=Ozeanien
-011=Westafrika
-013=Mittelamerika
-014=Ostafrika
-015=Nordafrika
-017=Zentralafrika
-018=S\u00FCdafrika
-019=Amerika
-021=N\u00F6rdliches Amerika
-029=Karibik
-030=Ostasien
-034=S\u00FCdasien
-035=S\u00FCdostasien
-039=S\u00FCdeuropa
-053=Australien und Neuseeland
-054=Melanesien
-057=Mikronesisches Inselgebiet
-061=Polynesien
-142=Asien
-143=Zentralasien
-145=Westasien
-150=Europa
-151=Osteuropa
-154=Nordeuropa
-155=Westeuropa
-419=Lateinamerika und Karibik
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_el.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_el.properties
deleted file mode 100755
index 00dcef2..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_el.properties
+++ /dev/null
@@ -1,342 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ar=\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac
-be=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03b9\u03ba\u03ac
-bg=\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03b9\u03ba\u03ac
-bn=\u039c\u03c0\u03b5\u03bd\u03b3\u03ba\u03ac\u03bb\u03b9
-bo=\u0398\u03b9\u03b2\u03b5\u03c4\u03b9\u03b1\u03bd\u03ac
-bs=\u0392\u03bf\u03c3\u03bd\u03b9\u03b1\u03ba\u03ac
-ca=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac
-co=\u039a\u03bf\u03c1\u03c3\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac
-cs=\u03a4\u03c3\u03b5\u03c7\u03b9\u03ba\u03ac
-cy=\u039f\u03c5\u03b1\u03bb\u03b9\u03ba\u03ac
-da=\u0394\u03b1\u03bd\u03b9\u03ba\u03ac
-de=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
-el=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
-en=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac
-es=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
-et=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac
-eu=\u0392\u03b1\u03c3\u03ba\u03b9\u03ba\u03ac
-fa=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac
-fi=\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-fr=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac
-ga=\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-gd=\u03a3\u03ba\u03c9\u03c4\u03b9\u03ba\u03ac \u039a\u03b5\u03bb\u03c4\u03b9\u03ba\u03ac
-he=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac
-hi=\u03a7\u03af\u03bd\u03c4\u03b9
-hr=\u039a\u03c1\u03bf\u03b1\u03c4\u03b9\u03ba\u03ac
-hu=\u039f\u03c5\u03b3\u03b3\u03c1\u03b9\u03ba\u03ac
-hy=\u0391\u03c1\u03bc\u03b5\u03bd\u03b9\u03ba\u03ac
-id=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
-in=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
-is=\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-it=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac
-iw=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac
-ja=\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac
-ji=\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac
-ka=\u0393\u03b5\u03c9\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac
-ko=\u039a\u03bf\u03c1\u03b5\u03b1\u03c4\u03b9\u03ba\u03ac
-la=\u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac
-lt=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03b9\u03ba\u03ac
-lv=\u039b\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac
-mk=\u03a3\u03bb\u03b1\u03b2\u03bf\u03bc\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03b9\u03ba\u03ac
-mn=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03b9\u03ba\u03ac
-mo=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03b9\u03ba\u03ac
-mt=\u039c\u03b1\u03bb\u03c4\u03b5\u03b6\u03b9\u03ba\u03ac
-nl=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-no=\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac
-pl=\u03a0\u03bf\u03bb\u03c9\u03bd\u03b9\u03ba\u03ac
-pt=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac
-ro=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
-ru=\u03a1\u03c9\u03c3\u03b9\u03ba\u03ac
-sk=\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03b9\u03ba\u03ac
-sl=\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03b9\u03ba\u03ac
-sq=\u0391\u03bb\u03b2\u03b1\u03bd\u03b9\u03ba\u03ac
-sr=\u03a3\u03b5\u03c1\u03b2\u03b9\u03ba\u03ac
-sv=\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac
-th=\u03a4\u03b1\u03ca\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-tr=\u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac
-uk=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03b9\u03ba\u03ac
-vi=\u0392\u03b9\u03b5\u03c4\u03bd\u03b1\u03bc\u03b5\u03b6\u03b9\u03ba\u03ac
-yi=\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac
-zh=\u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac
-AD=\u0391\u03bd\u03b4\u03cc\u03c1\u03b1
-AE=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b1 \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac \u0395\u03bc\u03b9\u03c1\u03ac\u03c4\u03b1
-AF=\u0391\u03c6\u03b3\u03b1\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd
-AG=\u0391\u03bd\u03c4\u03af\u03b3\u03ba\u03bf\u03c5\u03b1 \u03ba\u03b1\u03b9 \u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03bf\u03cd\u03bd\u03c4\u03b1
-AI=\u0391\u03bd\u03b3\u03ba\u03bf\u03c5\u03af\u03bb\u03b1
-AL=\u0391\u03bb\u03b2\u03b1\u03bd\u03af\u03b1
-AM=\u0391\u03c1\u03bc\u03b5\u03bd\u03af\u03b1
-AN=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ad\u03c2 \u0391\u03bd\u03c4\u03af\u03bb\u03bb\u03b5\u03c2
-AO=\u0391\u03bd\u03b3\u03ba\u03cc\u03bb\u03b1
-AQ=\u0391\u03bd\u03c4\u03b1\u03c1\u03ba\u03c4\u03b9\u03ba\u03ae
-AR=\u0391\u03c1\u03b3\u03b5\u03bd\u03c4\u03b9\u03bd\u03ae
-AS=\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u03a3\u03b1\u03bc\u03cc\u03b1
-AT=\u0391\u03c5\u03c3\u03c4\u03c1\u03af\u03b1
-AU=\u0391\u03c5\u03c3\u03c4\u03c1\u03b1\u03bb\u03af\u03b1
-AW=\u0391\u03c1\u03bf\u03cd\u03bc\u03c0\u03b1
-AX=\u039d\u03ae\u03c3\u03bf\u03b9 Aland
-AZ=\u0391\u03b6\u03b5\u03c1\u03bc\u03c0\u03b1\u03ca\u03c4\u03b6\u03ac\u03bd
-BA=\u0392\u03bf\u03c3\u03bd\u03af\u03b1 - \u0395\u03c1\u03b6\u03b5\u03b3\u03bf\u03b2\u03af\u03bd\u03b7
-BB=\u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03ac\u03bd\u03c4\u03bf\u03c2
-BD=\u039c\u03c0\u03b1\u03bd\u03b3\u03ba\u03bb\u03b1\u03bd\u03c4\u03ad\u03c2
-BE=\u0392\u03ad\u03bb\u03b3\u03b9\u03bf
-BF=\u039c\u03c0\u03bf\u03c5\u03c1\u03ba\u03af\u03bd\u03b1 \u03a6\u03ac\u03c3\u03bf
-BG=\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03af\u03b1
-BH=\u039c\u03c0\u03b1\u03c7\u03c1\u03ad\u03b9\u03bd
-BI=\u039c\u03c0\u03bf\u03c5\u03c1\u03bf\u03cd\u03bd\u03c4\u03b9
-BJ=\u039c\u03c0\u03ad\u03bd\u03b9\u03bd
-BM=\u0392\u03b5\u03c1\u03bc\u03bf\u03cd\u03b4\u03b5\u03c2
-BN=\u039c\u03c0\u03c1\u03bf\u03c5\u03bd\u03ad\u03b9 \u039d\u03c4\u03b1\u03c1\u03bf\u03c5\u03c3\u03b1\u03bb\u03ac\u03bc
-BO=\u0392\u03bf\u03bb\u03b9\u03b2\u03af\u03b1
-BR=\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1
-BS=\u039c\u03c0\u03b1\u03c7\u03ac\u03bc\u03b5\u03c2
-BT=\u039c\u03c0\u03bf\u03c5\u03c4\u03ac\u03bd
-BV=\u039d\u03ae\u03c3\u03bf\u03c2 \u039c\u03c0\u03bf\u03c5\u03b2\u03ad
-BW=\u039c\u03c0\u03bf\u03c4\u03c3\u03bf\u03c5\u03ac\u03bd\u03b1
-BY=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03af\u03b1
-BZ=\u039c\u03c0\u03b5\u03bb\u03af\u03b6
-CA=\u039a\u03b1\u03bd\u03b1\u03b4\u03ac\u03c2
-CC=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03cc\u03ba\u03bf\u03c2 (\u039a\u03ae\u03bb\u03b9\u03bd\u03b3\u03ba)
-CD=\u039a\u03bf\u03bd\u03b3\u03ba\u03cc, \u039b\u03b1\u03ca\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5
-CF=\u039a\u03b5\u03bd\u03c4\u03c1\u03bf\u03b1\u03c6\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1
-CG=\u039a\u03bf\u03bd\u03b3\u03ba\u03cc
-CH=\u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1
-CI=\u0391\u03ba\u03c4\u03ae \u0395\u03bb\u03b5\u03c6\u03b1\u03bd\u03c4\u03cc\u03b4\u03bf\u03bd\u03c4\u03bf\u03c2
-CK=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03bf\u03c5\u03ba
-CL=\u03a7\u03b9\u03bb\u03ae
-CM=\u039a\u03b1\u03bc\u03b5\u03c1\u03bf\u03cd\u03bd
-CN=\u039a\u03af\u03bd\u03b1
-CO=\u039a\u03bf\u03bb\u03bf\u03bc\u03b2\u03af\u03b1
-CR=\u039a\u03cc\u03c3\u03c4\u03b1 \u03a1\u03af\u03ba\u03b1
-CS=\u03a3\u03b5\u03c1\u03b2\u03af\u03b1 \u03ba\u03b1\u03b9 \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9\u03bf
-CU=\u039a\u03bf\u03cd\u03b2\u03b1
-CV=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf\u03c5 \u0391\u03ba\u03c1\u03c9\u03c4\u03b7\u03c1\u03af\u03bf\u03c5
-CX=\u039d\u03ae\u03c3\u03bf\u03c2 \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03c5\u03b3\u03ad\u03bd\u03bd\u03c9\u03bd
-CY=\u039a\u03cd\u03c0\u03c1\u03bf\u03c2
-CZ=\u03a4\u03c3\u03b5\u03c7\u03af\u03b1
-DE=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03af\u03b1
-DJ=\u03a4\u03b6\u03b9\u03bc\u03c0\u03bf\u03c5\u03c4\u03af
-DK=\u0394\u03b1\u03bd\u03af\u03b1
-DM=\u039d\u03c4\u03bf\u03bc\u03af\u03bd\u03b9\u03ba\u03b1
-DO=\u0394\u03bf\u03bc\u03b9\u03bd\u03b9\u03ba\u03b1\u03bd\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1
-DZ=\u0391\u03bb\u03b3\u03b5\u03c1\u03af\u03b1
-EC=\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03cc\u03c2
-EE=\u0395\u03c3\u03b8\u03bf\u03bd\u03af\u03b1
-EG=\u0391\u03af\u03b3\u03c5\u03c0\u03c4\u03bf\u03c2
-EH=\u0394\u03c5\u03c4\u03b9\u03ba\u03ae \u03a3\u03b1\u03c7\u03ac\u03c1\u03b1
-ER=\u0395\u03c1\u03c5\u03b8\u03c1\u03b1\u03af\u03b1
-ES=\u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1
-ET=\u0391\u03b9\u03b8\u03b9\u03bf\u03c0\u03af\u03b1
-FI=\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-FJ=\u03a6\u03af\u03c4\u03b6\u03b9
-FK=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03ce\u03ba\u03bb\u03b1\u03bd\u03c4
-FM=\u039c\u03b9\u03ba\u03c1\u03bf\u03bd\u03b7\u03c3\u03af\u03b1, \u039f\u03bc\u03cc\u03c3\u03c0\u03bf\u03bd\u03b4\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2 \u03c4\u03b7\u03c2
-FO=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03b5\u03c1\u03cc\u03b5\u03c2
-FR=\u0393\u03b1\u03bb\u03bb\u03af\u03b1
-GA=\u0393\u03ba\u03b1\u03bc\u03c0\u03cc\u03bd
-GB=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03bf \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf
-GD=\u0393\u03c1\u03b5\u03bd\u03ac\u03b4\u03b1
-GE=\u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1
-GF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1
-GH=\u0393\u03ba\u03ac\u03bd\u03b1
-GI=\u0393\u03b9\u03b2\u03c1\u03b1\u03bb\u03c4\u03ac\u03c1
-GL=\u0393\u03c1\u03bf\u03b9\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-GM=\u0393\u03ba\u03ac\u03bc\u03c0\u03b9\u03b1
-GN=\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-GP=\u0393\u03bf\u03c5\u03b1\u03b4\u03b5\u03bb\u03bf\u03cd\u03c0\u03b7
-GQ=\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ae \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-GR=\u0395\u03bb\u03bb\u03ac\u03b4\u03b1
-GS=\u039d\u03cc\u03c4\u03b9\u03b1 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9 \u039d\u03cc\u03c4\u03b9\u03b5\u03c2 \u03a3\u03ac\u03bd\u03c4\u03bf\u03c5\u03b9\u03c4\u03c2
-GT=\u0393\u03bf\u03c5\u03b1\u03c4\u03b5\u03bc\u03ac\u03bb\u03b1
-GU=\u0393\u03ba\u03bf\u03c5\u03ac\u03bc
-GW=\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1-\u039c\u03c0\u03b9\u03c3\u03ac\u03bf\u03c5
-GY=\u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1
-HK=\u03a7\u03bf\u03bd\u03b3\u03ba \u039a\u03bf\u03bd\u03b3\u03ba, \u0395\u03b9\u03b4\u03b9\u03ba\u03ae \u0394\u03b9\u03bf\u03b9\u03ba\u03b7\u03c4\u03b9\u03ba\u03ae \u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2
-HM=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a7\u03b5\u03c1\u03bd\u03c4 \u03ba\u03b1\u03b9 \u039c\u03b1\u03ba\u03bd\u03c4\u03cc\u03bd\u03b1\u03bb\u03bd\u03c4
-HN=\u039f\u03bd\u03b4\u03bf\u03cd\u03c1\u03b1
-HR=\u039a\u03c1\u03bf\u03b1\u03c4\u03af\u03b1
-HT=\u0391\u03ca\u03c4\u03ae
-HU=\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03af\u03b1
-ID=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03af\u03b1
-IE=\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-IL=\u0399\u03c3\u03c1\u03b1\u03ae\u03bb
-IN=\u0399\u03bd\u03b4\u03af\u03b1
-IO=\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac \u0388\u03b4\u03ac\u03c6\u03b7 \u0399\u03bd\u03b4\u03b9\u03ba\u03bf\u03cd \u03a9\u03ba\u03b5\u03b1\u03bd\u03bf\u03cd
-IQ=\u0399\u03c1\u03ac\u03ba
-IR=\u0399\u03c1\u03ac\u03bd, \u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5
-IS=\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-IT=\u0399\u03c4\u03b1\u03bb\u03af\u03b1
-JM=\u03a4\u03b6\u03b1\u03bc\u03ac\u03b9\u03ba\u03b1
-JO=\u0399\u03bf\u03c1\u03b4\u03b1\u03bd\u03af\u03b1
-JP=\u0399\u03b1\u03c0\u03c9\u03bd\u03af\u03b1
-KE=\u039a\u03ad\u03bd\u03c5\u03b1
-KG=\u039a\u03b9\u03c1\u03b3\u03b9\u03b6\u03af\u03b1
-KH=\u039a\u03b1\u03bc\u03c0\u03cc\u03c4\u03b6\u03b7
-KI=\u039a\u03b9\u03c1\u03b9\u03bc\u03c0\u03ac\u03c4\u03b9
-KM=\u039a\u03bf\u03bc\u03cc\u03c1\u03b5\u03c2
-KN=\u03a3\u03b1\u03b9\u03bd\u03c4 \u039a\u03b9\u03c4\u03c2 \u03ba\u03b1\u03b9 \u039d\u03ad\u03b2\u03b9\u03c2
-KP=\u039a\u03bf\u03c1\u03ad\u03b1, \u0392\u03cc\u03c1\u03b5\u03b9\u03b1
-KR=\u039a\u03bf\u03c1\u03ad\u03b1, \u039d\u03cc\u03c4\u03b9\u03b1
-KW=\u039a\u03bf\u03c5\u03b2\u03ad\u03b9\u03c4
-KY=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03ad\u03b9\u03bc\u03b1\u03bd
-KZ=\u039a\u03b1\u03b6\u03b1\u03ba\u03c3\u03c4\u03ac\u03bd
-LA=\u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ae \u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03ae
-LB=\u039b\u03af\u03b2\u03b1\u03bd\u03bf\u03c2
-LC=\u0391\u03b3\u03af\u03b1 \u039b\u03bf\u03c5\u03ba\u03af\u03b1
-LI=\u039b\u03b9\u03c7\u03c4\u03b5\u03bd\u03c3\u03c4\u03ac\u03b9\u03bd
-LK=\u03a3\u03c1\u03b9 \u039b\u03ac\u03bd\u03ba\u03b1
-LR=\u039b\u03b9\u03b2\u03b5\u03c1\u03af\u03b1
-LS=\u039b\u03b5\u03c3\u03cc\u03c4\u03bf
-LT=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1
-LU=\u039b\u03bf\u03c5\u03be\u03b5\u03bc\u03b2\u03bf\u03cd\u03c1\u03b3\u03bf
-LV=\u039b\u03b5\u03c4\u03bf\u03bd\u03af\u03b1
-LY=\u039b\u03b9\u03b2\u03cd\u03b7
-MA=\u039c\u03b1\u03c1\u03cc\u03ba\u03bf
-MC=\u039c\u03bf\u03bd\u03b1\u03ba\u03cc
-MD=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03af\u03b1, \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2
-MG=\u039c\u03b1\u03b4\u03b1\u03b3\u03b1\u03c3\u03ba\u03ac\u03c1\u03b7
-MH=\u039d\u03ae\u03c3\u03bf\u03b9 \u039c\u03ac\u03c1\u03c3\u03b1\u03bb
-MK=\u03a0\u0393\u0394 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2
-ML=\u039c\u03ac\u03bb\u03b9
-MM=\u039c\u03b9\u03b1\u03bd\u03bc\u03ac\u03c1
-MN=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03af\u03b1
-MO=\u039c\u03b1\u03ba\u03ac\u03bf, \u0395\u03b9\u03b4\u03b9\u03ba\u03ae \u0394\u03b9\u03bf\u03b9\u03ba\u03b7\u03c4\u03b9\u03ba\u03ae \u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2
-MP=\u039d\u03ae\u03c3\u03bf\u03b9 \u0392\u03cc\u03c1\u03b5\u03b9\u03b5\u03c2 \u039c\u03b1\u03c1\u03b9\u03ac\u03bd\u03b5\u03c2
-MQ=\u039c\u03b1\u03c1\u03c4\u03b9\u03bd\u03af\u03ba\u03b1
-MR=\u039c\u03b1\u03c5\u03c1\u03b9\u03c4\u03b1\u03bd\u03af\u03b1
-MS=\u039c\u03bf\u03bd\u03c3\u03b5\u03c1\u03ac\u03c4
-MT=\u039c\u03ac\u03bb\u03c4\u03b1
-MU=\u039c\u03b1\u03c5\u03c1\u03af\u03ba\u03b9\u03bf\u03c2
-MV=\u039c\u03b1\u03bb\u03b4\u03af\u03b2\u03b5\u03c2
-MW=\u039c\u03b1\u03bb\u03ac\u03bf\u03c5\u03b9
-MX=\u039c\u03b5\u03be\u03b9\u03ba\u03cc
-MY=\u039c\u03b1\u03bb\u03b1\u03b9\u03c3\u03af\u03b1
-MZ=\u039c\u03bf\u03b6\u03b1\u03bc\u03b2\u03af\u03ba\u03b7
-NA=\u039d\u03b1\u03bc\u03af\u03bc\u03c0\u03b9\u03b1
-NC=\u039d\u03ad\u03b1 \u039a\u03b1\u03bb\u03b7\u03b4\u03bf\u03bd\u03af\u03b1
-NE=\u039d\u03af\u03b3\u03b7\u03c1
-NF=\u039d\u03ae\u03c3\u03bf\u03c2 \u039d\u03cc\u03c1\u03c6\u03bf\u03bb\u03ba
-NG=\u039d\u03b9\u03b3\u03b7\u03c1\u03af\u03b1
-NI=\u039d\u03b9\u03ba\u03b1\u03c1\u03ac\u03b3\u03bf\u03c5\u03b1
-NL=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-NO=\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03af\u03b1
-NP=\u039d\u03b5\u03c0\u03ac\u03bb
-NR=\u039d\u03b1\u03bf\u03cd\u03c1\u03bf\u03c5
-NU=\u039d\u03b9\u03bf\u03cd\u03b5
-NZ=\u039d\u03ad\u03b1 \u0396\u03b7\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-OM=\u039f\u03bc\u03ac\u03bd
-PA=\u03a0\u03b1\u03bd\u03b1\u03bc\u03ac\u03c2
-PE=\u03a0\u03b5\u03c1\u03bf\u03cd
-PF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u03a0\u03bf\u03bb\u03c5\u03bd\u03b7\u03c3\u03af\u03b1
-PG=\u03a0\u03b1\u03c0\u03bf\u03cd\u03b1 - \u039d\u03ad\u03b1 \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-PH=\u03a6\u03b9\u03bb\u03b9\u03c0\u03c0\u03af\u03bd\u03b5\u03c2
-PK=\u03a0\u03b1\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-PL=\u03a0\u03bf\u03bb\u03c9\u03bd\u03af\u03b1
-PM=\u03a3\u03b1\u03b9\u03bd\u03c4 \u03a0\u03b9\u03ad\u03c1 \u03ba\u03b1\u03b9 \u039c\u03b9\u03ba\u03b5\u03bb\u03cc\u03bd
-PN=\u03a0\u03af\u03c4\u03ba\u03b5\u03c1\u03bd
-PR=\u03a0\u03bf\u03c5\u03ad\u03c1\u03c4\u03bf \u03a1\u03af\u03ba\u03bf
-PS=\u03a0\u03b1\u03bb\u03b1\u03b9\u03c3\u03c4\u03b9\u03bd\u03b9\u03b1\u03ba\u03ac \u0395\u03b4\u03ac\u03c6\u03b7
-PT=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03af\u03b1
-PW=\u03a0\u03b1\u03bb\u03ac\u03bf\u03c5
-PY=\u03a0\u03b1\u03c1\u03b1\u03b3\u03bf\u03c5\u03ac\u03b7
-QA=\u039a\u03b1\u03c4\u03ac\u03c1
-RE=\u03a1\u03b5\u03cb\u03bd\u03b9\u03cc\u03bd
-RO=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03af\u03b1
-RU=\u03a1\u03c9\u03c3\u03af\u03b1
-RW=\u03a1\u03bf\u03c5\u03ac\u03bd\u03c4\u03b1
-SA=\u03a3\u03b1\u03bf\u03c5\u03b4\u03b9\u03ba\u03ae \u0391\u03c1\u03b1\u03b2\u03af\u03b1
-SB=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a3\u03bf\u03bb\u03bf\u03bc\u03ce\u03bd\u03c4\u03bf\u03c2
-SC=\u03a3\u03b5\u03cb\u03c7\u03ad\u03bb\u03bb\u03b5\u03c2
-SD=\u03a3\u03bf\u03c5\u03b4\u03ac\u03bd
-SE=\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1
-SG=\u03a3\u03b9\u03b3\u03ba\u03b1\u03c0\u03bf\u03cd\u03c1\u03b7
-SH=\u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03ad\u03bd\u03b7
-SI=\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03af\u03b1
-SJ=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a3\u03b2\u03ac\u03bb\u03bc\u03c0\u03b1\u03c1 \u03ba\u03b1\u03b9 \u0393\u03b9\u03b1\u03bd \u039c\u03b1\u03b3\u03b9\u03ad\u03bd
-SK=\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03af\u03b1
-SL=\u03a3\u03b9\u03ad\u03c1\u03b1 \u039b\u03b5\u03cc\u03bd\u03b5
-SM=\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03bf\u03c2
-SN=\u03a3\u03b5\u03bd\u03b5\u03b3\u03ac\u03bb\u03b7
-SO=\u03a3\u03bf\u03bc\u03b1\u03bb\u03af\u03b1
-SR=\u03a3\u03bf\u03c5\u03c1\u03b9\u03bd\u03ac\u03bc
-ST=\u03a3\u03ac\u03bf \u03a4\u03bf\u03bc\u03ad \u03ba\u03b1\u03b9 \u03a0\u03c1\u03af\u03bd\u03c3\u03b9\u03c0\u03b5
-SV=\u0395\u03bb \u03a3\u03b1\u03bb\u03b2\u03b1\u03b4\u03cc\u03c1
-SY=\u03a3\u03c5\u03c1\u03af\u03b1, \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2
-SZ=\u03a3\u03bf\u03c5\u03b1\u03b6\u03b9\u03bb\u03ac\u03bd\u03b4\u03b7
-TC=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a4\u03b5\u03c1\u03ba\u03c2 \u03ba\u03b1\u03b9 \u039a\u03ac\u03b9\u03ba\u03bf\u03c2
-TD=\u03a4\u03c3\u03b1\u03bd\u03c4
-TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039d\u03cc\u03c4\u03b9\u03b1 \u0395\u03b4\u03ac\u03c6\u03b7
-TG=\u03a4\u03cc\u03b3\u03ba\u03bf
-TH=\u03a4\u03b1\u03ca\u03bb\u03ac\u03bd\u03b4\u03b7
-TJ=\u03a4\u03b1\u03c4\u03b6\u03b9\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-TK=\u03a4\u03bf\u03ba\u03b5\u03bb\u03ac\u03bf\u03c5
-TL=\u0391\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03cc \u03a4\u03b9\u03bc\u03cc\u03c1
-TM=\u03a4\u03bf\u03c5\u03c1\u03ba\u03bc\u03b5\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd
-TN=\u03a4\u03c5\u03bd\u03b7\u03c3\u03af\u03b1
-TO=\u03a4\u03cc\u03bd\u03b3\u03ba\u03b1
-TR=\u03a4\u03bf\u03c5\u03c1\u03ba\u03af\u03b1
-TT=\u03a4\u03c1\u03b9\u03bd\u03b9\u03b4\u03ac\u03b4 \u03ba\u03b1\u03b9 \u03a4\u03bf\u03bc\u03c0\u03ac\u03b3\u03ba\u03bf
-TV=\u03a4\u03bf\u03c5\u03b2\u03b1\u03bb\u03bf\u03cd
-TW=\u03a4\u03b1\u03ca\u03b2\u03ac\u03bd
-TZ=\u03a4\u03b1\u03bd\u03b6\u03b1\u03bd\u03af\u03b1
-UA=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03af\u03b1
-UG=\u039f\u03c5\u03b3\u03ba\u03ac\u03bd\u03c4\u03b1
-UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u03c4\u03c9\u03bd \u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03b9\u03ce\u03bd
-US=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2
-UY=\u039f\u03c5\u03c1\u03bf\u03c5\u03b3\u03bf\u03c5\u03ac\u03b7
-UZ=\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-VA=\u0391\u03b3\u03af\u03b1 \u0388\u03b4\u03c1\u03b1 (\u0392\u03b1\u03c4\u03b9\u03ba\u03b1\u03bd\u03cc)
-VC=\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b9\u03ba\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0393\u03c1\u03b5\u03bd\u03b1\u03b4\u03af\u03bd\u03b5\u03c2
-VE=\u0392\u03b5\u03bd\u03b5\u03b6\u03bf\u03c5\u03ad\u03bb\u03b1
-VG=\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03bf\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9
-VI=\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03bf\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9
-VN=\u0392\u03b9\u03b5\u03c4\u03bd\u03ac\u03bc
-VU=\u0392\u03b1\u03bd\u03bf\u03c5\u03ac\u03c4\u03bf\u03c5
-WF=\u039d\u03ae\u03c3\u03bf\u03b9 \u039f\u03c5\u03b1\u03bb\u03bb\u03af\u03c2 \u03ba\u03b1\u03b9 \u03a6\u03bf\u03c5\u03c4\u03bf\u03c5\u03bd\u03ac
-WS=\u03a3\u03b1\u03bc\u03cc\u03b1
-YE=\u03a5\u03b5\u03bc\u03ad\u03bd\u03b7
-YT=\u039c\u03b1\u03b3\u03b9\u03cc\u03c4
-ZA=\u039d\u03cc\u03c4\u03b9\u03b1 \u0391\u03c6\u03c1\u03b9\u03ba\u03ae
-ZM=\u0396\u03ac\u03bc\u03c0\u03b9\u03b1
-ZW=\u0396\u03b9\u03bc\u03c0\u03ac\u03bc\u03c0\u03bf\u03c5\u03b5
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_el_CY.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_el_CY.properties
deleted file mode 100755
index bb1b579..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_el_CY.properties
+++ /dev/null
@@ -1,341 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ar=\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac
-be=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03b9\u03ba\u03ac
-bg=\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03b9\u03ba\u03ac
-bn=\u039c\u03c0\u03b5\u03bd\u03b3\u03ba\u03ac\u03bb\u03b9
-bo=\u0398\u03b9\u03b2\u03b5\u03c4\u03b9\u03b1\u03bd\u03ac
-bs=\u0392\u03bf\u03c3\u03bd\u03b9\u03b1\u03ba\u03ac
-ca=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac
-co=\u039a\u03bf\u03c1\u03c3\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac
-cs=\u03a4\u03c3\u03b5\u03c7\u03b9\u03ba\u03ac
-cy=\u039f\u03c5\u03b1\u03bb\u03b9\u03ba\u03ac
-da=\u0394\u03b1\u03bd\u03b9\u03ba\u03ac
-de=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
-el=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
-en=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac
-es=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
-et=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac
-eu=\u0392\u03b1\u03c3\u03ba\u03b9\u03ba\u03ac
-fa=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac
-fi=\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-fr=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac
-ga=\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-gd=\u03a3\u03ba\u03c9\u03c4\u03b9\u03ba\u03ac \u039a\u03b5\u03bb\u03c4\u03b9\u03ba\u03ac
-he=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac
-hi=\u03a7\u03af\u03bd\u03c4\u03b9
-hr=\u039a\u03c1\u03bf\u03b1\u03c4\u03b9\u03ba\u03ac
-hu=\u039f\u03c5\u03b3\u03b3\u03c1\u03b9\u03ba\u03ac
-hy=\u0391\u03c1\u03bc\u03b5\u03bd\u03b9\u03ba\u03ac
-id=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
-in=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
-is=\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-it=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac
-iw=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac
-ja=\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac
-ji=\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac
-ka=\u0393\u03b5\u03c9\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac
-ko=\u039a\u03bf\u03c1\u03b5\u03b1\u03c4\u03b9\u03ba\u03ac
-la=\u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac
-lt=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03b9\u03ba\u03ac
-lv=\u039b\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac
-mk=\u03a3\u03bb\u03b1\u03b2\u03bf\u03bc\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03b9\u03ba\u03ac
-mn=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03b9\u03ba\u03ac
-mo=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03b9\u03ba\u03ac
-mt=\u039c\u03b1\u03bb\u03c4\u03b5\u03b6\u03b9\u03ba\u03ac
-nl=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-no=\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03b9\u03ba\u03ac
-pl=\u03a0\u03bf\u03bb\u03c9\u03bd\u03b9\u03ba\u03ac
-pt=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac
-ro=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
-ru=\u03a1\u03c9\u03c3\u03b9\u03ba\u03ac
-sk=\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03b9\u03ba\u03ac
-sl=\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03b9\u03ba\u03ac
-sq=\u0391\u03bb\u03b2\u03b1\u03bd\u03b9\u03ba\u03ac
-sr=\u03a3\u03b5\u03c1\u03b2\u03b9\u03ba\u03ac
-sv=\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac
-th=\u03a4\u03b1\u03ca\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
-tr=\u03a4\u03bf\u03c5\u03c1\u03ba\u03b9\u03ba\u03ac
-uk=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03b9\u03ba\u03ac
-vi=\u0392\u03b9\u03b5\u03c4\u03bd\u03b1\u03bc\u03b5\u03b6\u03b9\u03ba\u03ac
-yi=\u0399\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03ac
-zh=\u039a\u03b9\u03bd\u03b5\u03b6\u03b9\u03ba\u03ac
-AD=\u0391\u03bd\u03b4\u03cc\u03c1\u03b1
-AE=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b1 \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac \u0395\u03bc\u03b9\u03c1\u03ac\u03c4\u03b1
-AF=\u0391\u03c6\u03b3\u03b1\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd
-AG=\u0391\u03bd\u03c4\u03af\u03b3\u03ba\u03bf\u03c5\u03b1 \u03ba\u03b1\u03b9 \u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03bf\u03cd\u03bd\u03c4\u03b1
-AI=\u0391\u03bd\u03b3\u03ba\u03bf\u03c5\u03af\u03bb\u03b1
-AL=\u0391\u03bb\u03b2\u03b1\u03bd\u03af\u03b1
-AM=\u0391\u03c1\u03bc\u03b5\u03bd\u03af\u03b1
-AN=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ad\u03c2 \u0391\u03bd\u03c4\u03af\u03bb\u03bb\u03b5\u03c2
-AO=\u0391\u03bd\u03b3\u03ba\u03cc\u03bb\u03b1
-AQ=\u0391\u03bd\u03c4\u03b1\u03c1\u03ba\u03c4\u03b9\u03ba\u03ae
-AR=\u0391\u03c1\u03b3\u03b5\u03bd\u03c4\u03b9\u03bd\u03ae
-AS=\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u03a3\u03b1\u03bc\u03cc\u03b1
-AT=\u0391\u03c5\u03c3\u03c4\u03c1\u03af\u03b1
-AU=\u0391\u03c5\u03c3\u03c4\u03c1\u03b1\u03bb\u03af\u03b1
-AW=\u0391\u03c1\u03bf\u03cd\u03bc\u03c0\u03b1
-AX=\u039d\u03ae\u03c3\u03bf\u03b9 Aland
-AZ=\u0391\u03b6\u03b5\u03c1\u03bc\u03c0\u03b1\u03ca\u03c4\u03b6\u03ac\u03bd
-BA=\u0392\u03bf\u03c3\u03bd\u03af\u03b1 - \u0395\u03c1\u03b6\u03b5\u03b3\u03bf\u03b2\u03af\u03bd\u03b7
-BB=\u039c\u03c0\u03b1\u03c1\u03bc\u03c0\u03ac\u03bd\u03c4\u03bf\u03c2
-BD=\u039c\u03c0\u03b1\u03bd\u03b3\u03ba\u03bb\u03b1\u03bd\u03c4\u03ad\u03c2
-BE=\u0392\u03ad\u03bb\u03b3\u03b9\u03bf
-BF=\u039c\u03c0\u03bf\u03c5\u03c1\u03ba\u03af\u03bd\u03b1 \u03a6\u03ac\u03c3\u03bf
-BG=\u0392\u03bf\u03c5\u03bb\u03b3\u03b1\u03c1\u03af\u03b1
-BH=\u039c\u03c0\u03b1\u03c7\u03c1\u03ad\u03b9\u03bd
-BI=\u039c\u03c0\u03bf\u03c5\u03c1\u03bf\u03cd\u03bd\u03c4\u03b9
-BJ=\u039c\u03c0\u03ad\u03bd\u03b9\u03bd
-BM=\u0392\u03b5\u03c1\u03bc\u03bf\u03cd\u03b4\u03b5\u03c2
-BN=\u039c\u03c0\u03c1\u03bf\u03c5\u03bd\u03ad\u03b9 \u039d\u03c4\u03b1\u03c1\u03bf\u03c5\u03c3\u03b1\u03bb\u03ac\u03bc
-BO=\u0392\u03bf\u03bb\u03b9\u03b2\u03af\u03b1
-BR=\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1
-BS=\u039c\u03c0\u03b1\u03c7\u03ac\u03bc\u03b5\u03c2
-BT=\u039c\u03c0\u03bf\u03c5\u03c4\u03ac\u03bd
-BV=\u039d\u03ae\u03c3\u03bf\u03c2 \u039c\u03c0\u03bf\u03c5\u03b2\u03ad
-BW=\u039c\u03c0\u03bf\u03c4\u03c3\u03bf\u03c5\u03ac\u03bd\u03b1
-BY=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03af\u03b1
-BZ=\u039c\u03c0\u03b5\u03bb\u03af\u03b6
-CA=\u039a\u03b1\u03bd\u03b1\u03b4\u03ac\u03c2
-CC=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03cc\u03ba\u03bf\u03c2 (\u039a\u03ae\u03bb\u03b9\u03bd\u03b3\u03ba)
-CD=\u039a\u03bf\u03bd\u03b3\u03ba\u03cc, \u039b\u03b1\u03ca\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5
-CF=\u039a\u03b5\u03bd\u03c4\u03c1\u03bf\u03b1\u03c6\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1
-CG=\u039a\u03bf\u03bd\u03b3\u03ba\u03cc
-CH=\u0395\u03bb\u03b2\u03b5\u03c4\u03af\u03b1
-CI=\u0391\u03ba\u03c4\u03ae \u0395\u03bb\u03b5\u03c6\u03b1\u03bd\u03c4\u03cc\u03b4\u03bf\u03bd\u03c4\u03bf\u03c2
-CK=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03bf\u03c5\u03ba
-CL=\u03a7\u03b9\u03bb\u03ae
-CM=\u039a\u03b1\u03bc\u03b5\u03c1\u03bf\u03cd\u03bd
-CN=\u039a\u03af\u03bd\u03b1
-CO=\u039a\u03bf\u03bb\u03bf\u03bc\u03b2\u03af\u03b1
-CR=\u039a\u03cc\u03c3\u03c4\u03b1 \u03a1\u03af\u03ba\u03b1
-CS=\u03a3\u03b5\u03c1\u03b2\u03af\u03b1 \u03ba\u03b1\u03b9 \u039c\u03b1\u03c5\u03c1\u03bf\u03b2\u03bf\u03cd\u03bd\u03b9\u03bf
-CU=\u039a\u03bf\u03cd\u03b2\u03b1
-CV=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a0\u03c1\u03ac\u03c3\u03b9\u03bd\u03bf\u03c5 \u0391\u03ba\u03c1\u03c9\u03c4\u03b7\u03c1\u03af\u03bf\u03c5
-CX=\u039d\u03ae\u03c3\u03bf\u03c2 \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03c5\u03b3\u03ad\u03bd\u03bd\u03c9\u03bd
-CY=\u039a\u03cd\u03c0\u03c1\u03bf\u03c2
-CZ=\u03a4\u03c3\u03b5\u03c7\u03af\u03b1
-DE=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03af\u03b1
-DJ=\u03a4\u03b6\u03b9\u03bc\u03c0\u03bf\u03c5\u03c4\u03af
-DK=\u0394\u03b1\u03bd\u03af\u03b1
-DM=\u039d\u03c4\u03bf\u03bc\u03af\u03bd\u03b9\u03ba\u03b1
-DO=\u0394\u03bf\u03bc\u03b9\u03bd\u03b9\u03ba\u03b1\u03bd\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1
-DZ=\u0391\u03bb\u03b3\u03b5\u03c1\u03af\u03b1
-EC=\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03cc\u03c2
-EE=\u0395\u03c3\u03b8\u03bf\u03bd\u03af\u03b1
-EG=\u0391\u03af\u03b3\u03c5\u03c0\u03c4\u03bf\u03c2
-EH=\u0394\u03c5\u03c4\u03b9\u03ba\u03ae \u03a3\u03b1\u03c7\u03ac\u03c1\u03b1
-ER=\u0395\u03c1\u03c5\u03b8\u03c1\u03b1\u03af\u03b1
-ES=\u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1
-ET=\u0391\u03b9\u03b8\u03b9\u03bf\u03c0\u03af\u03b1
-FI=\u03a6\u03b9\u03bd\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-FJ=\u03a6\u03af\u03c4\u03b6\u03b9
-FK=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03ce\u03ba\u03bb\u03b1\u03bd\u03c4
-FM=\u039c\u03b9\u03ba\u03c1\u03bf\u03bd\u03b7\u03c3\u03af\u03b1, \u039f\u03bc\u03cc\u03c3\u03c0\u03bf\u03bd\u03b4\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2 \u03c4\u03b7\u03c2
-FO=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a6\u03b5\u03c1\u03cc\u03b5\u03c2
-FR=\u0393\u03b1\u03bb\u03bb\u03af\u03b1
-GA=\u0393\u03ba\u03b1\u03bc\u03c0\u03cc\u03bd
-GB=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03bf \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf
-GD=\u0393\u03c1\u03b5\u03bd\u03ac\u03b4\u03b1
-GE=\u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1
-GF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1
-GH=\u0393\u03ba\u03ac\u03bd\u03b1
-GI=\u0393\u03b9\u03b2\u03c1\u03b1\u03bb\u03c4\u03ac\u03c1
-GL=\u0393\u03c1\u03bf\u03b9\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-GM=\u0393\u03ba\u03ac\u03bc\u03c0\u03b9\u03b1
-GN=\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-GP=\u0393\u03bf\u03c5\u03b1\u03b4\u03b5\u03bb\u03bf\u03cd\u03c0\u03b7
-GQ=\u0399\u03c3\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ae \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-GS=\u039d\u03cc\u03c4\u03b9\u03b1 \u0393\u03b5\u03c9\u03c1\u03b3\u03af\u03b1 \u03ba\u03b1\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9 \u039d\u03cc\u03c4\u03b9\u03b5\u03c2 \u03a3\u03ac\u03bd\u03c4\u03bf\u03c5\u03b9\u03c4\u03c2
-GT=\u0393\u03bf\u03c5\u03b1\u03c4\u03b5\u03bc\u03ac\u03bb\u03b1
-GU=\u0393\u03ba\u03bf\u03c5\u03ac\u03bc
-GW=\u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1-\u039c\u03c0\u03b9\u03c3\u03ac\u03bf\u03c5
-GY=\u0393\u03bf\u03c5\u03b9\u03ac\u03bd\u03b1
-HK=\u03a7\u03bf\u03bd\u03b3\u03ba \u039a\u03bf\u03bd\u03b3\u03ba, \u0395\u03b9\u03b4\u03b9\u03ba\u03ae \u0394\u03b9\u03bf\u03b9\u03ba\u03b7\u03c4\u03b9\u03ba\u03ae \u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2
-HM=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a7\u03b5\u03c1\u03bd\u03c4 \u03ba\u03b1\u03b9 \u039c\u03b1\u03ba\u03bd\u03c4\u03cc\u03bd\u03b1\u03bb\u03bd\u03c4
-HN=\u039f\u03bd\u03b4\u03bf\u03cd\u03c1\u03b1
-HR=\u039a\u03c1\u03bf\u03b1\u03c4\u03af\u03b1
-HT=\u0391\u03ca\u03c4\u03ae
-HU=\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03af\u03b1
-ID=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03af\u03b1
-IE=\u0399\u03c1\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-IL=\u0399\u03c3\u03c1\u03b1\u03ae\u03bb
-IN=\u0399\u03bd\u03b4\u03af\u03b1
-IO=\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ac \u0388\u03b4\u03ac\u03c6\u03b7 \u0399\u03bd\u03b4\u03b9\u03ba\u03bf\u03cd \u03a9\u03ba\u03b5\u03b1\u03bd\u03bf\u03cd
-IQ=\u0399\u03c1\u03ac\u03ba
-IR=\u0399\u03c1\u03ac\u03bd, \u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03bf\u03c5
-IS=\u0399\u03c3\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-IT=\u0399\u03c4\u03b1\u03bb\u03af\u03b1
-JM=\u03a4\u03b6\u03b1\u03bc\u03ac\u03b9\u03ba\u03b1
-JO=\u0399\u03bf\u03c1\u03b4\u03b1\u03bd\u03af\u03b1
-JP=\u0399\u03b1\u03c0\u03c9\u03bd\u03af\u03b1
-KE=\u039a\u03ad\u03bd\u03c5\u03b1
-KG=\u039a\u03b9\u03c1\u03b3\u03b9\u03b6\u03af\u03b1
-KH=\u039a\u03b1\u03bc\u03c0\u03cc\u03c4\u03b6\u03b7
-KI=\u039a\u03b9\u03c1\u03b9\u03bc\u03c0\u03ac\u03c4\u03b9
-KM=\u039a\u03bf\u03bc\u03cc\u03c1\u03b5\u03c2
-KN=\u03a3\u03b1\u03b9\u03bd\u03c4 \u039a\u03b9\u03c4\u03c2 \u03ba\u03b1\u03b9 \u039d\u03ad\u03b2\u03b9\u03c2
-KP=\u039a\u03bf\u03c1\u03ad\u03b1, \u0392\u03cc\u03c1\u03b5\u03b9\u03b1
-KR=\u039a\u03bf\u03c1\u03ad\u03b1, \u039d\u03cc\u03c4\u03b9\u03b1
-KW=\u039a\u03bf\u03c5\u03b2\u03ad\u03b9\u03c4
-KY=\u039d\u03ae\u03c3\u03bf\u03b9 \u039a\u03ad\u03b9\u03bc\u03b1\u03bd
-KZ=\u039a\u03b1\u03b6\u03b1\u03ba\u03c3\u03c4\u03ac\u03bd
-LA=\u039b\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ae \u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03ae
-LB=\u039b\u03af\u03b2\u03b1\u03bd\u03bf\u03c2
-LC=\u0391\u03b3\u03af\u03b1 \u039b\u03bf\u03c5\u03ba\u03af\u03b1
-LI=\u039b\u03b9\u03c7\u03c4\u03b5\u03bd\u03c3\u03c4\u03ac\u03b9\u03bd
-LK=\u03a3\u03c1\u03b9 \u039b\u03ac\u03bd\u03ba\u03b1
-LR=\u039b\u03b9\u03b2\u03b5\u03c1\u03af\u03b1
-LS=\u039b\u03b5\u03c3\u03cc\u03c4\u03bf
-LT=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1
-LU=\u039b\u03bf\u03c5\u03be\u03b5\u03bc\u03b2\u03bf\u03cd\u03c1\u03b3\u03bf
-LV=\u039b\u03b5\u03c4\u03bf\u03bd\u03af\u03b1
-LY=\u039b\u03b9\u03b2\u03cd\u03b7
-MA=\u039c\u03b1\u03c1\u03cc\u03ba\u03bf
-MC=\u039c\u03bf\u03bd\u03b1\u03ba\u03cc
-MD=\u039c\u03bf\u03bb\u03b4\u03b1\u03b2\u03af\u03b1, \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2
-MG=\u039c\u03b1\u03b4\u03b1\u03b3\u03b1\u03c3\u03ba\u03ac\u03c1\u03b7
-MH=\u039d\u03ae\u03c3\u03bf\u03b9 \u039c\u03ac\u03c1\u03c3\u03b1\u03bb
-MK=\u03a0\u0393\u0394 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2
-ML=\u039c\u03ac\u03bb\u03b9
-MM=\u039c\u03b9\u03b1\u03bd\u03bc\u03ac\u03c1
-MN=\u039c\u03bf\u03b3\u03b3\u03bf\u03bb\u03af\u03b1
-MO=\u039c\u03b1\u03ba\u03ac\u03bf, \u0395\u03b9\u03b4\u03b9\u03ba\u03ae \u0394\u03b9\u03bf\u03b9\u03ba\u03b7\u03c4\u03b9\u03ba\u03ae \u03a0\u03b5\u03c1\u03b9\u03c6\u03ad\u03c1\u03b5\u03b9\u03b1 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2
-MP=\u039d\u03ae\u03c3\u03bf\u03b9 \u0392\u03cc\u03c1\u03b5\u03b9\u03b5\u03c2 \u039c\u03b1\u03c1\u03b9\u03ac\u03bd\u03b5\u03c2
-MQ=\u039c\u03b1\u03c1\u03c4\u03b9\u03bd\u03af\u03ba\u03b1
-MR=\u039c\u03b1\u03c5\u03c1\u03b9\u03c4\u03b1\u03bd\u03af\u03b1
-MS=\u039c\u03bf\u03bd\u03c3\u03b5\u03c1\u03ac\u03c4
-MT=\u039c\u03ac\u03bb\u03c4\u03b1
-MU=\u039c\u03b1\u03c5\u03c1\u03af\u03ba\u03b9\u03bf\u03c2
-MV=\u039c\u03b1\u03bb\u03b4\u03af\u03b2\u03b5\u03c2
-MW=\u039c\u03b1\u03bb\u03ac\u03bf\u03c5\u03b9
-MX=\u039c\u03b5\u03be\u03b9\u03ba\u03cc
-MY=\u039c\u03b1\u03bb\u03b1\u03b9\u03c3\u03af\u03b1
-MZ=\u039c\u03bf\u03b6\u03b1\u03bc\u03b2\u03af\u03ba\u03b7
-NA=\u039d\u03b1\u03bc\u03af\u03bc\u03c0\u03b9\u03b1
-NC=\u039d\u03ad\u03b1 \u039a\u03b1\u03bb\u03b7\u03b4\u03bf\u03bd\u03af\u03b1
-NE=\u039d\u03af\u03b3\u03b7\u03c1
-NF=\u039d\u03ae\u03c3\u03bf\u03c2 \u039d\u03cc\u03c1\u03c6\u03bf\u03bb\u03ba
-NG=\u039d\u03b9\u03b3\u03b7\u03c1\u03af\u03b1
-NI=\u039d\u03b9\u03ba\u03b1\u03c1\u03ac\u03b3\u03bf\u03c5\u03b1
-NL=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-NO=\u039d\u03bf\u03c1\u03b2\u03b7\u03b3\u03af\u03b1
-NP=\u039d\u03b5\u03c0\u03ac\u03bb
-NR=\u039d\u03b1\u03bf\u03cd\u03c1\u03bf\u03c5
-NU=\u039d\u03b9\u03bf\u03cd\u03b5
-NZ=\u039d\u03ad\u03b1 \u0396\u03b7\u03bb\u03b1\u03bd\u03b4\u03af\u03b1
-OM=\u039f\u03bc\u03ac\u03bd
-PA=\u03a0\u03b1\u03bd\u03b1\u03bc\u03ac\u03c2
-PE=\u03a0\u03b5\u03c1\u03bf\u03cd
-PF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ae \u03a0\u03bf\u03bb\u03c5\u03bd\u03b7\u03c3\u03af\u03b1
-PG=\u03a0\u03b1\u03c0\u03bf\u03cd\u03b1 - \u039d\u03ad\u03b1 \u0393\u03bf\u03c5\u03b9\u03bd\u03ad\u03b1
-PH=\u03a6\u03b9\u03bb\u03b9\u03c0\u03c0\u03af\u03bd\u03b5\u03c2
-PK=\u03a0\u03b1\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-PL=\u03a0\u03bf\u03bb\u03c9\u03bd\u03af\u03b1
-PM=\u03a3\u03b1\u03b9\u03bd\u03c4 \u03a0\u03b9\u03ad\u03c1 \u03ba\u03b1\u03b9 \u039c\u03b9\u03ba\u03b5\u03bb\u03cc\u03bd
-PN=\u03a0\u03af\u03c4\u03ba\u03b5\u03c1\u03bd
-PR=\u03a0\u03bf\u03c5\u03ad\u03c1\u03c4\u03bf \u03a1\u03af\u03ba\u03bf
-PS=\u03a0\u03b1\u03bb\u03b1\u03b9\u03c3\u03c4\u03b9\u03bd\u03b9\u03b1\u03ba\u03ac \u0395\u03b4\u03ac\u03c6\u03b7
-PT=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03af\u03b1
-PW=\u03a0\u03b1\u03bb\u03ac\u03bf\u03c5
-PY=\u03a0\u03b1\u03c1\u03b1\u03b3\u03bf\u03c5\u03ac\u03b7
-QA=\u039a\u03b1\u03c4\u03ac\u03c1
-RE=\u03a1\u03b5\u03cb\u03bd\u03b9\u03cc\u03bd
-RO=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03af\u03b1
-RU=\u03a1\u03c9\u03c3\u03af\u03b1
-RW=\u03a1\u03bf\u03c5\u03ac\u03bd\u03c4\u03b1
-SA=\u03a3\u03b1\u03bf\u03c5\u03b4\u03b9\u03ba\u03ae \u0391\u03c1\u03b1\u03b2\u03af\u03b1
-SB=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a3\u03bf\u03bb\u03bf\u03bc\u03ce\u03bd\u03c4\u03bf\u03c2
-SC=\u03a3\u03b5\u03cb\u03c7\u03ad\u03bb\u03bb\u03b5\u03c2
-SD=\u03a3\u03bf\u03c5\u03b4\u03ac\u03bd
-SE=\u03a3\u03bf\u03c5\u03b7\u03b4\u03af\u03b1
-SG=\u03a3\u03b9\u03b3\u03ba\u03b1\u03c0\u03bf\u03cd\u03c1\u03b7
-SH=\u0391\u03b3\u03af\u03b1 \u0395\u03bb\u03ad\u03bd\u03b7
-SI=\u03a3\u03bb\u03bf\u03b2\u03b5\u03bd\u03af\u03b1
-SJ=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a3\u03b2\u03ac\u03bb\u03bc\u03c0\u03b1\u03c1 \u03ba\u03b1\u03b9 \u0393\u03b9\u03b1\u03bd \u039c\u03b1\u03b3\u03b9\u03ad\u03bd
-SK=\u03a3\u03bb\u03bf\u03b2\u03b1\u03ba\u03af\u03b1
-SL=\u03a3\u03b9\u03ad\u03c1\u03b1 \u039b\u03b5\u03cc\u03bd\u03b5
-SM=\u0386\u03b3\u03b9\u03bf\u03c2 \u039c\u03b1\u03c1\u03af\u03bd\u03bf\u03c2
-SN=\u03a3\u03b5\u03bd\u03b5\u03b3\u03ac\u03bb\u03b7
-SO=\u03a3\u03bf\u03bc\u03b1\u03bb\u03af\u03b1
-SR=\u03a3\u03bf\u03c5\u03c1\u03b9\u03bd\u03ac\u03bc
-ST=\u03a3\u03ac\u03bf \u03a4\u03bf\u03bc\u03ad \u03ba\u03b1\u03b9 \u03a0\u03c1\u03af\u03bd\u03c3\u03b9\u03c0\u03b5
-SV=\u0395\u03bb \u03a3\u03b1\u03bb\u03b2\u03b1\u03b4\u03cc\u03c1
-SY=\u03a3\u03c5\u03c1\u03af\u03b1, \u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2
-SZ=\u03a3\u03bf\u03c5\u03b1\u03b6\u03b9\u03bb\u03ac\u03bd\u03b4\u03b7
-TC=\u039d\u03ae\u03c3\u03bf\u03b9 \u03a4\u03b5\u03c1\u03ba\u03c2 \u03ba\u03b1\u03b9 \u039a\u03ac\u03b9\u03ba\u03bf\u03c2
-TD=\u03a4\u03c3\u03b1\u03bd\u03c4
-TF=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039d\u03cc\u03c4\u03b9\u03b1 \u0395\u03b4\u03ac\u03c6\u03b7
-TG=\u03a4\u03cc\u03b3\u03ba\u03bf
-TH=\u03a4\u03b1\u03ca\u03bb\u03ac\u03bd\u03b4\u03b7
-TJ=\u03a4\u03b1\u03c4\u03b6\u03b9\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-TK=\u03a4\u03bf\u03ba\u03b5\u03bb\u03ac\u03bf\u03c5
-TL=\u0391\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03ba\u03cc \u03a4\u03b9\u03bc\u03cc\u03c1
-TM=\u03a4\u03bf\u03c5\u03c1\u03ba\u03bc\u03b5\u03bd\u03b9\u03c3\u03c4\u03ac\u03bd
-TN=\u03a4\u03c5\u03bd\u03b7\u03c3\u03af\u03b1
-TO=\u03a4\u03cc\u03bd\u03b3\u03ba\u03b1
-TR=\u03a4\u03bf\u03c5\u03c1\u03ba\u03af\u03b1
-TT=\u03a4\u03c1\u03b9\u03bd\u03b9\u03b4\u03ac\u03b4 \u03ba\u03b1\u03b9 \u03a4\u03bf\u03bc\u03c0\u03ac\u03b3\u03ba\u03bf
-TV=\u03a4\u03bf\u03c5\u03b2\u03b1\u03bb\u03bf\u03cd
-TW=\u03a4\u03b1\u03ca\u03b2\u03ac\u03bd
-TZ=\u03a4\u03b1\u03bd\u03b6\u03b1\u03bd\u03af\u03b1
-UA=\u039f\u03c5\u03ba\u03c1\u03b1\u03bd\u03af\u03b1
-UG=\u039f\u03c5\u03b3\u03ba\u03ac\u03bd\u03c4\u03b1
-UM=\u0391\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u039d\u03b7\u03c3\u03af\u03b4\u03b5\u03c2 \u03c4\u03c9\u03bd \u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03b9\u03ce\u03bd
-US=\u0397\u03bd\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a0\u03bf\u03bb\u03b9\u03c4\u03b5\u03af\u03b5\u03c2
-UY=\u039f\u03c5\u03c1\u03bf\u03c5\u03b3\u03bf\u03c5\u03ac\u03b7
-UZ=\u039f\u03c5\u03b6\u03bc\u03c0\u03b5\u03ba\u03b9\u03c3\u03c4\u03ac\u03bd
-VA=\u0391\u03b3\u03af\u03b1 \u0388\u03b4\u03c1\u03b1 (\u0392\u03b1\u03c4\u03b9\u03ba\u03b1\u03bd\u03cc)
-VC=\u0386\u03b3\u03b9\u03bf\u03c2 \u0392\u03b9\u03ba\u03ad\u03bd\u03c4\u03b9\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0393\u03c1\u03b5\u03bd\u03b1\u03b4\u03af\u03bd\u03b5\u03c2
-VE=\u0392\u03b5\u03bd\u03b5\u03b6\u03bf\u03c5\u03ad\u03bb\u03b1
-VG=\u0392\u03c1\u03b5\u03c4\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03bf\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9
-VI=\u0391\u03bc\u03b5\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ad\u03c2 \u03a0\u03b1\u03c1\u03b8\u03ad\u03bd\u03bf\u03b9 \u039d\u03ae\u03c3\u03bf\u03b9
-VN=\u0392\u03b9\u03b5\u03c4\u03bd\u03ac\u03bc
-VU=\u0392\u03b1\u03bd\u03bf\u03c5\u03ac\u03c4\u03bf\u03c5
-WF=\u039d\u03ae\u03c3\u03bf\u03b9 \u039f\u03c5\u03b1\u03bb\u03bb\u03af\u03c2 \u03ba\u03b1\u03b9 \u03a6\u03bf\u03c5\u03c4\u03bf\u03c5\u03bd\u03ac
-WS=\u03a3\u03b1\u03bc\u03cc\u03b1
-YE=\u03a5\u03b5\u03bc\u03ad\u03bd\u03b7
-YT=\u039c\u03b1\u03b3\u03b9\u03cc\u03c4
-ZA=\u039d\u03cc\u03c4\u03b9\u03b1 \u0391\u03c6\u03c1\u03b9\u03ba\u03ae
-ZM=\u0396\u03ac\u03bc\u03c0\u03b9\u03b1
-ZW=\u0396\u03b9\u03bc\u03c0\u03ac\u03bc\u03c0\u03bf\u03c5\u03b5
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_en.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_en.properties
deleted file mode 100755
index a7f35a1..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_en.properties
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# This bundle is empty because the data of the base bundle
-# is adequate for this locale.
-# The bundle is necessary to prevent the resource
-# bundle lookup from falling back to the default
-# locale.
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_MT.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_en_MT.properties
deleted file mode 100755
index 6c0729d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_MT.properties
+++ /dev/null
@@ -1,72 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-fy=Western Frisian
-gl=Galician
-kj=Kuanyama
-kl=Kalaallisut
-ny=Nyanja; Chichewa; Chewa
-oc=Occitan (post 1500); Proven\u00e7al
-os=Ossetic
-pa=Punjabi
-ps=Pashto
-rm=Rhaeto-Romance
-to=Tonga (Tonga Islands)
-AX=Aland Islands
-CC=Cocos (Keeling) Islands
-CD=Congo (Kinshasa)
-CG=Congo (Brazzaville)
-CI=Ivory Coast
-CS=Serbia And Montenegro
-GS=South Georgia and the South Sandwich Islands
-HK=Hong Kong SAR China
-HM=Heard Island and McDonald Islands
-KN=Saint Kitts and Nevis
-MO=Macao SAR China
-PM=Saint Pierre and Miquelon
-PS=Palestinian Territory
-SJ=Svalbard and Jan Mayen
-ST=Sao Tome and Principe
-TC=Turks and Caicos Islands
-TL=East Timor
-VC=Saint Vincent and the Grenadines
-WF=Wallis and Futuna
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_PH.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_en_PH.properties
deleted file mode 100755
index 6c0729d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_PH.properties
+++ /dev/null
@@ -1,72 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-fy=Western Frisian
-gl=Galician
-kj=Kuanyama
-kl=Kalaallisut
-ny=Nyanja; Chichewa; Chewa
-oc=Occitan (post 1500); Proven\u00e7al
-os=Ossetic
-pa=Punjabi
-ps=Pashto
-rm=Rhaeto-Romance
-to=Tonga (Tonga Islands)
-AX=Aland Islands
-CC=Cocos (Keeling) Islands
-CD=Congo (Kinshasa)
-CG=Congo (Brazzaville)
-CI=Ivory Coast
-CS=Serbia And Montenegro
-GS=South Georgia and the South Sandwich Islands
-HK=Hong Kong SAR China
-HM=Heard Island and McDonald Islands
-KN=Saint Kitts and Nevis
-MO=Macao SAR China
-PM=Saint Pierre and Miquelon
-PS=Palestinian Territory
-SJ=Svalbard and Jan Mayen
-ST=Sao Tome and Principe
-TC=Turks and Caicos Islands
-TL=East Timor
-VC=Saint Vincent and the Grenadines
-WF=Wallis and Futuna
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_SG.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_en_SG.properties
deleted file mode 100755
index 6c0729d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_en_SG.properties
+++ /dev/null
@@ -1,72 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-fy=Western Frisian
-gl=Galician
-kj=Kuanyama
-kl=Kalaallisut
-ny=Nyanja; Chichewa; Chewa
-oc=Occitan (post 1500); Proven\u00e7al
-os=Ossetic
-pa=Punjabi
-ps=Pashto
-rm=Rhaeto-Romance
-to=Tonga (Tonga Islands)
-AX=Aland Islands
-CC=Cocos (Keeling) Islands
-CD=Congo (Kinshasa)
-CG=Congo (Brazzaville)
-CI=Ivory Coast
-CS=Serbia And Montenegro
-GS=South Georgia and the South Sandwich Islands
-HK=Hong Kong SAR China
-HM=Heard Island and McDonald Islands
-KN=Saint Kitts and Nevis
-MO=Macao SAR China
-PM=Saint Pierre and Miquelon
-PS=Palestinian Territory
-SJ=Svalbard and Jan Mayen
-ST=Sao Tome and Principe
-TC=Turks and Caicos Islands
-TL=East Timor
-VC=Saint Vincent and the Grenadines
-WF=Wallis and Futuna
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_es.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_es.properties
deleted file mode 100755
index 8022bdd..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_es.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=afar
-ab=abjasio
-ae=av\u00e9stico
-af=afrikaans
-ak=akan
-am=am\u00e1rico
-an=aragon\u00e9s
-ar=\u00e1rabe
-as=asam\u00e9s
-av=avar
-ay=aimara
-az=azer\u00ed
-ba=bashkir
-be=bielorruso
-bg=b\u00falgaro
-bh=bihari
-bi=bislama
-bm=bambara
-bn=bengal\u00ed
-bo=tibetano
-br=bret\u00f3n
-bs=bosnio
-ca=catal\u00e1n
-ce=checheno
-ch=chamorro
-co=corso
-cr=cree
-cs=checo
-cu=eslavo eclesi\u00e1stico
-cv=chuvash
-cy=gal\u00e9s
-da=dan\u00e9s
-de=alem\u00e1n
-dv=divehi
-dz=dzongkha
-ee=ewe
-el=griego
-en=ingl\u00e9s
-eo=esperanto
-es=espa\u00f1ol
-et=estonio
-eu=vasco
-fa=persa
-ff=fula
-fi=fin\u00e9s
-fj=fidjiano
-fo=fero\u00e9s
-fr=franc\u00e9s
-fy=fris\u00f3n
-ga=irland\u00e9s
-gd=ga\u00e9lico escoc\u00e9s
-gl=gallego
-gn=guaran\u00ed
-gu=gujarati
-gv=ga\u00e9lico man\u00e9s
-ha=hausa
-he=hebreo
-hi=hindi
-ho=hiri motu
-hr=croata
-ht=haitiano
-hu=h\u00fangaro
-hy=armenio
-hz=herero
-ia=interlingua
-id=indonesio
-ie=interlingue
-ig=igbo
-ii=sichuan yi
-ik=inupiaq
-in=indonesio
-io=ido
-is=island\u00e9s
-it=italiano
-iu=inuktitut
-iw=hebreo
-ja=japon\u00e9s
-ji=y\u00eddish
-jv=javan\u00e9s
-ka=georgiano
-kg=kongo
-ki=kikuyu
-kj=kuanyama
-kk=kazajo
-kl=groenland\u00e9s
-km=jemer
-kn=canar\u00e9s
-ko=coreano
-kr=kanuri
-ks=cachemiro
-ku=kurdo
-kv=komi
-kw=c\u00f3rnico
-ky=kirghiz
-la=lat\u00edn
-lb=luxemburgu\u00e9s
-lg=ganda
-li=limburgu\u00e9s
-ln=lingala
-lo=laosiano
-lt=lituano
-lu=luba-katanga
-lv=let\u00f3n
-mg=malgache
-mh=marshal\u00e9s
-mi=maor\u00ed
-mk=macedonio
-ml=malayalam
-mn=mongol
-mo=moldavo
-mr=marathi
-ms=malayo
-mt=malt\u00e9s
-my=birmano
-na=nauruano
-nb=bokmal noruego
-nd=ndebele septentrional
-ne=nepal\u00ed
-ng=ndonga
-nl=neerland\u00e9s
-nn=nynorsk noruego
-no=noruego
-nr=ndebele meridional
-nv=navajo
-ny=nyanja
-oc=occitano
-oj=ojibwa
-om=oromo
-or=oriya
-os=os\u00e9tico
-pa=punjab\u00ed
-pi=pali
-pl=polaco
-ps=pashto
-pt=portugu\u00e9s
-qu=quechua
-rm=retorrom\u00e1nico
-rn=kiroundi
-ro=rumano
-ru=ruso
-rw=kinyarwanda
-sa=s\u00e1nscrito
-sc=sardo
-sd=sindhi
-se=sami septentrional
-sg=sango
-si=cingal\u00e9s
-sk=eslovaco
-sl=esloveno
-sm=samoano
-sn=shona
-so=somal\u00ed
-sq=alban\u00e9s
-sr=serbio
-ss=siswati
-st=sesotho
-su=sundan\u00e9s
-sv=sueco
-sw=swahili
-ta=tamil
-te=telugu
-tg=tayiko
-th=tailand\u00e9s
-ti=tigri\u00f1a
-tk=turcomano
-tl=tagalo
-tn=setchwana
-to=tongano
-tr=turco
-ts=tsonga
-tt=t\u00e1rtaro
-tw=twi
-ty=tahitiano
-ug=uigur
-uk=ucraniano
-ur=urdu
-uz=uzbeko
-ve=venda
-vi=vietnamita
-vo=volap\u00fck
-wa=val\u00f3n
-wo=uolof
-xh=xhosa
-yi=y\u00eddish
-yo=yoruba
-za=zhuang
-zh=chino
-zu=zul\u00fa
-
-# key is ISO 639.2 language code
-aar=afar
-abk=Abjasio
-ace=acehn\u00E9s
-ach=acoli
-ada=adangme
-ady=adigeo
-afa=afgani (1927-2002)
-afh=afrihili
-afr=Afrikaans
-ain=ainu
-aka=Acano
-akk=acadio
-alb=Alban\u00E9s
-ale=aleutiano
-alg=lenguas algonquinas
-alt=alt\u00E1i meridional
-amh=Am\u00E1rico
-ang=florines de las Antillas Neerlandesas
-anp=angika
-apa=lenguas apache
-ara=australes argentinos
-arc=arameo
-arg=Aragon\u00E9s
-arm=Armenio
-arn=araucano
-arp=pesos argentinos (ARP)
-art=lengua artificial
-arw=arahuaco
-asm=Asam\u00E9s
-ast=asturiano
-ath=lenguas atabascas
-aus=lenguas australianas
-ava=\u00C1varo
-ave=Av\u00E9stico
-awa=avadhi
-aym=Aimara
-aze=Azerbaiyano
-bad=dinares bosnios
-bai=lenguas bamileke
-bak=Bashkir
-bal=baluchi
-bam=marcos convertibles de Bosnia-Herzegovina
-ban=balin\u00E9s
-baq=Vasco
-bas=basa
-bat=lengua b\u00E1ltica
-bej=beja
-bel=francos belgas (financieros)
-bem=bemba
-ben=Bengal\u00ED
-ber=bereber
-bho=bhojpuri
-bih=Bihar\u00ED
-bik=bicol
-bin=bini
-bis=Bislama
-bla=siksika
-bnt=bant\u00FA
-bos=Bosnio
-bra=braj
-bre=cruceiros brasile\u00F1os (BRE)
-btk=batak
-bua=buriat
-bug=Buguin\u00E9s
-bul=B\u00FAlgaro
-bur=Birmano
-byn=blin
-cad=d\u00F3lares canadienses
-cai=lengua india centroamericana
-car=caribe
-cat=Catal\u00E1n
-cau=lengua cauc\u00E1sica
-ceb=cebuano
-cel=lengua celta
-cha=Chamorro
-chb=chibcha
-che=euros WIR
-chg=chagat\u00E1i
-chi=Chino
-chk=truk\u00E9s
-chm=mar\u00ED
-chn=jerga chinuk
-cho=choctaw
-chp=chipewyan
-chr=cherokee
-chu=Eslavo Eclesi\u00E1stico
-chv=Chuvacho
-chy=cheyene
-cmc=lenguas ch\u00E1micas
-cop=pesos colombianos
-cor=C\u00F3rnico
-cos=corso
-cpe=lengua criolla o pidgin basada en el ingl\u00E9s
-cpf=lengua criolla o pidgin basada en el franc\u00E9s
-cpp=lengua criolla o pidgin basada en el portugu\u00E9s
-cre=cree
-crh=t\u00E1rtaro de Crimea
-crp=lengua criolla o pidgin
-csb=casubio
-cus=lengua cusita
-cze=checo
-dak=dakota
-dan=dan\u00E9s
-dar=dargva
-day=dayak
-del=delaware
-den=slave
-dgr=dogrib
-din=dinka
-div=Dhivehi
-doi=dogri
-dra=lengua drav\u00EDdica
-dsb=sorbio inferior
-dua=duala
-dum=neerland\u00E9s medieval
-dut=Holand\u00E9s
-dyu=diula
-dzo=Dzongkha
-efi=efik
-egy=egipcio antiguo
-eka=ekajuk
-elx=elamita
-eng=Ingl\u00E9s
-enm=ingl\u00E9s medieval
-epo=Esperanto
-est=Estonio
-ewe=Ef\u00E9
-ewo=ewondo
-fan=fang
-fao=Faro\u00E9s
-fat=fanti
-fij=fidjiano
-fil=filipino
-fin=Finland\u00E9s
-fiu=lengua fino\u00FAgria
-fon=fon
-fre=franc\u00E9s
-frm=franc\u00E9s medieval
-fro=franc\u00E9s antiguo
-frr=fris\u00F3n septentrional
-frs=fris\u00F3n oriental
-fry=Frisio del Oeste
-ful=Fula
-fur=friulano
-gaa=ga
-gay=gayo
-gba=gbaya
-gem=lengua germ\u00E1nica
-geo=Georgiano
-ger=Alem\u00E1n
-gez=geez
-gil=gilbert\u00E9s
-gla=Ga\u00E9lico
-gle=Irland\u00E9s
-glg=Gallego
-glv=Man\u00E9s
-gmh=alem\u00E1n de la alta edad media
-goh=alem\u00E1n de la alta edad antigua
-gon=gondi
-gor=gorontalo
-got=g\u00F3tico
-grb=grebo
-grc=griego antiguo
-gre=Griego moderno (1453-)
-grn=Guaran\u00ED
-gsw=alem\u00E1n suizo
-guj=Gujarati
-gwi=kutchin
-hai=haida
-hat=Haitiano
-hau=Hausa
-haw=hawaiano
-heb=hebreo
-her=herero
-hil=hiligaynon
-him=himachali
-hin=hindi
-hit=hitita
-hmn=hmong
-hmo=Hiri motu
-hrv=Croata
-hsb=sorbio superior
-hun=h\u00FAngaro
-hup=hupa
-iba=iban
-ibo=Ibo
-ice=Island\u00E9s
-ido=Ido
-iii=Yi de Sichu\u00E1n
-ijo=ijo
-iku=Inuktitut
-ile=Interling\u00FCe
-ilo=ilocano
-ina=Interlingua (IALA, del ingl\u00E9s International Auxiliary Language Association)
-inc=lengua \u00EDndica
-ind=Indonesio
-ine=lengua indoeuropea
-inh=ingush
-ipk=I\u00F1upiaq
-ira=lengua irania
-iro=lenguas iroquesas
-ita=Italiano
-jav=Javan\u00E9s
-jbo=lojban
-jpn=Japon\u00E9s
-jpr=judeo-persa
-jrb=judeo-\u00E1rabe
-kaa=karakalpako
-kab=cabila
-kac=kachin
-kal=Kalaallisut
-kam=kamba
-kan=Canar\u00E9s
-kar=karen
-kas=Cachemir\u00ED
-kau=Kanuri
-kaw=kawi
-kaz=Kazajo
-kbd=kabardiano
-kha=khasi
-khi=lengua joisana
-khm=Jemer Central
-kho=kotan\u00E9s
-kik=Kikuyu
-kin=Ruand\u00E9s
-kir=kirghiz
-kmb=kimbundu
-kok=konkani
-kom=Komi
-kon=Congo
-kor=Coreano
-kos=kosraeano
-kpe=kpelle
-krc=karachay-balkar
-krl=carelio
-kro=kru
-kru=kurukh
-kua=Kuanyama
-kum=kumyk
-kur=Curdo
-kut=kutenai
-lad=ladino
-lah=lahnda
-lam=lamba
-lao=Laosiano
-lat=lat\u00EDn
-lav=Let\u00F3n
-lez=lezgiano
-lim=Limburgu\u00E9s
-lin=Lingala
-lit=Lituano
-lol=mongo
-loz=lozi
-ltz=Luxemburgu\u00E9s
-lua=luba-lulua
-lub=Luba-katanga
-lug=Luganda
-lui=luise\u00F1o
-lun=lunda
-luo=luo
-lus=lushai
-mac=Macedonio
-mad=dirhams marroqu\u00EDes
-mag=magahi
-mah=marshal\u00E9s
-mai=maithili
-mak=macasar
-mal=Malayalam
-man=mandingo
-mao=Maor\u00ED
-map=lengua austronesia
-mar=Marathi
-mas=masai
-may=malayo
-mdf=moksha
-mdr=mandar
-men=mende
-mga=ariary malgache
-mic=micmac
-min=minangkabau
-mis=lenguas varias
-mkh=lengua mon-jemer
-mlg=Malgache
-mlt=Malt\u00E9s
-mnc=manch\u00FA
-mni=manipuri
-mno=lenguas manobo
-moh=mohawk
-mon=Mongol
-mos=mossi
-mul=lenguas m\u00FAltiples
-mun=lenguas munda
-mus=creek
-mwl=mirand\u00E9s
-mwr=marwari
-myn=maya
-myv=erzya
-nah=n\u00E1huatl
-nai=lengua india norteamericana
-nap=napolitano
-nau=Nauruano
-nav=Navajo
-nbl=Ndebele del Sur
-nde=ndebele septentrional
-ndo=Ndonga
-nds=bajo alem\u00E1n
-nep=Nepal\u00ED
-new=newari
-nia=nias
-nic=c\u00F3rdobas nicarag\u00FCenses
-niu=niueano
-nno=Noruego Nynorsk
-nob=Noruego Bokmal
-nog=nogai
-non=n\u00F3rdico antiguo
-nor=Noruego
-nqo=n'ko
-nso=sotho septentrional
-nub=lenguas nubias
-nwc=newari cl\u00E1sico
-nya=Chichewa
-nym=nyamwezi
-nyn=nyankole
-nyo=nyoro
-nzi=nzima
-oci=Occitano (posterior a 1500)
-oji=Ojibwa
-ori=oriya
-orm=Oromo
-osa=osage
-oss=Os\u00E9tico
-ota=turco otomano
-oto=lenguas otomanas
-paa=lengua pap\u00FA
-pag=pangasin\u00E1n
-pal=pahlavi
-pam=pampanga
-pan=Penyab\u00ED
-pap=papiamento
-pau=palauano
-peo=persa antiguo
-per=Persa
-phi=lengua filipina
-phn=fenicio
-pli=Pali
-pol=Polaco
-pon=pohnpeiano
-por=Portugu\u00E9s
-pra=lenguas pr\u00E1critas
-pro=provenzal antiguo
-pus=Pushto; Pashto
-que=Quechua
-raj=rajasthani
-rap=rapanui
-rar=rarotongano
-roa=lengua romance
-roh=Romansh
-rom=roman\u00ED
-rum=rumano
-run=Rund\u00ED
-rup=arrumano
-rus=Ruso
-sad=sandawe
-sag=Sango
-sah=yakut
-sai=lengua india sudamericana
-sal=lenguas salish
-sam=arameo samaritano
-san=S\u00E1nscrito
-sas=sasak
-sat=santali
-scn=siciliano
-sco=escoc\u00E9s
-sel=selkup
-sem=lengua sem\u00EDtica
-sga=irland\u00E9s antiguo
-sgn=lenguajes de signos
-shn=shan
-sid=sidamo
-sin=Cingal\u00E9s
-sio=lenguas sioux
-sit=t\u00F3lares eslovenos
-sla=lengua eslava
-slo=Eslovaco
-slv=Esloveno
-sma=sami meridional
-sme=Sami del Norte
-smi=lengua sami
-smj=sami lule
-smn=sami inari
-smo=Samoano
-sms=sami skolt
-sna=shona
-snd=Sindhi
-snk=sonink\u00E9
-sog=sogdiano
-som=Somal\u00ED
-son=songhai
-sot=Sotho del Sur
-spa=Espa\u00F1ol
-srd=d\u00F3lar surinam\u00E9s
-srn=sranan tongo
-srp=serbio
-srr=serer
-ssa=lengua nilo-sahariana
-ssw=Suazi
-suk=sukuma
-sun=sudan\u00E9s
-sus=sus\u00FA
-sux=sumerio
-swa=Swahili
-swe=Sueco
-syc=sir\u00EDaco cl\u00E1sico
-syr=siriaco
-tah=tahitiano
-tai=lengua tai
-tam=Tamil
-tat=Tatar
-tel=Telugu
-tem=temne
-ter=tereno
-tet=tet\u00FAn
-tgk=Tajik
-tgl=Tagalo
-tha=Tailand\u00E9s
-tib=Tibetano
-tig=tigr\u00E9
-tir=Tigrinya
-tiv=tiv
-tkl=tokelauano
-tlh=klingon
-tli=tlingit
-tmh=tamashek
-tog=tonga del Nyasa
-ton=Tongano (Islas Tonga)
-tpi=tok pisin
-tsi=tsimshiano
-tsn=Tswana
-tso=Tsonga
-tuk=Turcomano
-tum=tumbuka
-tup=lenguas tup\u00ED
-tur=Turco
-tut=lengua altaica
-tvl=tuvaluano
-twi=Tui
-tyv=tuviniano
-udm=udmurt
-uga=ugar\u00EDtico
-uig=Uiguro
-ukr=Ucraniano
-umb=umbundu
-und=indeterminada
-urd=Urdu
-uzb=Uzbeco
-vai=vai
-ven=Venda
-vie=vietnamita
-vol=Volapuk
-vot=v\u00F3tico
-wak=lenguas wakasha
-wal=walamo
-war=waray
-was=washo
-wel=Gal\u00E9s
-wen=lenguas sorbias
-wln=val\u00F3n
-wol=Uolof
-xal=kalmyk
-xho=Xhosa
-yao=yao
-yap=yap\u00E9s
-yid=Y\u00EDdish
-yor=Yoruba
-ypk=lenguas yupik
-zap=zapoteco
-zbl=s\u00EDmbolos bliss
-zen=zenaga
-zha=Zhuang
-znd=zande
-zul=Zul\u00FA
-zun=zun\u00ED
-zxx=sin contenido ling\u00FC\u00EDstico
-zza=zazaki
-
-# script names
-# key is ISO 15924 script code
-
-Arab=\u00E1rabe
-Armi=Arameo Imperial
-Armn=armenio
-Avst=av\u00E9stico
-Bali=balin\u00E9s
-Bamu=Bamum
-Bass=Bassa Vah
-Batk=batak
-Beng=bengal\u00ED
-Blis=s\u00EDmbolos bliss
-Bopo=bopomofo
-Brah=brahm\u00ED
-Brai=braille
-Bugi=bugin\u00E9s
-Buhd=buhid
-Cakm=Chakma
-Cans=s\u00EDmbolos abor\u00EDgenes canadienses unificados
-Cari=cario
-Cham=cham
-Cher=cherokee
-Cirt=cirth
-Copt=copto
-Cprt=chipriota
-Cyrl=cir\u00EDlico
-Cyrs=cir\u00EDlico del antiguo eslavo eclesi\u00E1stico
-Deva=devanagari
-Dsrt=deseret
-Dupl=Taquigraf\u00EDa Duploy\u00E9
-Egyd=egipcio dem\u00F3tico
-Egyh=egipcio hier\u00E1tico
-Egyp=jerogl\u00EDficos egipcios
-Elba=Elbasan
-Ethi=eti\u00F3pico
-Geok=georgiano eclesi\u00E1stico
-Geor=georgiano
-Glag=glagol\u00EDtico
-Goth=g\u00F3tico
-Gran=Grantha
-Grek=griego
-Gujr=gujarati
-Guru=gurmuji
-Hang=hangul
-Hani=han
-Hano=hanunoo
-Hans=han simplificado
-Hant=han tradicional
-Hebr=hebreo
-Hira=hiragana
-Hmng=pahawh hmong
-Hrkt=katakana o hiragana
-Hung=h\u00FAngaro antiguo
-Inds=Indio (harappan)
-Ital=antigua bastardilla
-Java=javan\u00E9s
-Jpan=japon\u00E9s
-Kali=kayah li
-Kana=katakana
-Khar=kharoshthi
-Khmr=jemer
-Knda=canar\u00E9s
-Kore=coreano
-Kpel=Kpelle
-Kthi=Kaithi
-Lana=lanna
-Laoo=lao
-Latf=latino fraktur
-Latg=latino ga\u00E9lico
-Latn=lat\u00EDn
-Lepc=lepcha
-Limb=limbu
-Lina=lineal A
-Linb=lineal B
-Lisu=Lisu
-Loma=Loma
-Lyci=licio
-Lydi=lidio
-Mand=mandeo
-Mani=Manique\u00EDsmo
-Maya=jerogl\u00EDficos mayas
-Mend=Mend\u00E9
-Merc=Mero\u00EDtico Cursivo
-Mero=mero\u00EDtico
-Mlym=malay\u00E1lam
-Mong=mongol
-Moon=Luna
-Mtei=manipuri
-Mymr=birmano
-Narb=\u00C1rabe del Norte Antiguo
-Nbat=Nabateo
-Nkgb=Nakhi Geba
-Nkoo=n'Ko
-Ogam=ogham
-Olck=ol chiki
-Orkh=orkhon
-Orya=oriya
-Osma=osmaniya
-Palm=Palmire\u00F1o
-Perm=permiano antiguo
-Phag=phags-pa
-Phli=Pahlavi, Inscripciones
-Phlp=Pahlavi, Salterio
-Phlv=Pahlavi, Libros
-Phnx=fenicio
-Plrd=Pollard Miao
-Prti=Parto, Inscripciones
-Rjng=Rejang
-Roro=Rongorongo
-Runr=r\u00FAnico
-Samr=Samaritano
-Sara=Sarati
-Sarb=\u00C1rabe del Sur Antiguo
-Saur=Saurashtra
-Sgnw=Escritura de Signos
-Shaw=shaviano
-Sind=Sindhi
-Sinh=binhala
-Sund=sudan\u00E9s
-Sylo=Syloti Nagri
-Syrc=siriaco
-Syre=siriaco estrangelo
-Syrj=siriaco occidental
-Syrn=siriaco oriental
-Tagb=tagban\u00FAa
-Tale=tai le
-Talu=Nuevo Tai Lue
-Taml=tamil
-Tavt=Tai Viet
-Telu=telugu
-Teng=tengwar
-Tfng=Tifinagh
-Tglg=tagalo
-Thaa=thaana
-Thai=tailand\u00E9s
-Tibt=tibetano
-Ugar=ugar\u00EDtico
-Vaii=Vai
-Visp=lenguaje visible
-Wara=Warang Citi
-Xpeo=persa antiguo
-Xsux=Sumerio-Acadio Cuneiforme
-Yiii=yi
-Zinh=heredado
-Zmth=Notaci\u00F3n Matem\u00E1tica
-Zsym=s\u00EDmbolos
-Zxxx=no escrito
-Zyyy=com\u00FAn
-Zzzz=escritura desconocida o no v\u00E1lida
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=Emiratos \u00c1rabes Unidos
-AF=Afganist\u00e1n
-AG=Antigua y Barbuda
-AI=Anguila
-AL=Albania
-AM=Armenia
-AN=Antillas Holandesas
-AO=Angola
-AQ=Ant\u00e1rtida
-AR=Argentina
-AS=Samoa Americana
-AT=Austria
-AU=Australia
-AW=Aruba
-AX=Islas Aland
-AZ=Azerbaiy\u00e1n
-BA=Bosnia y Hercegovina
-BB=Barbados
-BD=Bangladesh
-BE=B\u00e9lgica
-BF=Burkina Faso
-BG=Bulgaria
-BH=Bahr\u00e1in
-BI=Burundi
-BJ=Ben\u00edn
-BL=San Bartolom\u00E9
-BM=Bermudas
-BN=Brun\u00e9i
-BO=Bolivia
-BQ=Bonaire, San Eustaquio y Saba
-BR=Brasil
-BS=Bahamas
-BT=But\u00e1n
-BV=Isla Bouvet
-BW=Botsuana
-BY=Bielorrusia
-BZ=Belice
-CA=Canad\u00e1
-CC=Islas Cocos
-CD=Rep\u00fablica Democr\u00e1tica del Congo
-CF=Rep\u00fablica Centroafricana
-CG=Congo
-CH=Suiza
-CI=Costa de Marfil
-CK=Islas Cook
-CL=Chile
-CM=Camer\u00fan
-CN=China
-CO=Colombia
-CR=Costa Rica
-CS=Serbia y Montenegro
-CU=Cuba
-CV=Cabo Verde
-CW=Cura\u00E7ao
-CX=Isla Christmas
-CY=Chipre
-CZ=Chequia
-DE=Alemania
-DJ=Yibuti
-DK=Dinamarca
-DM=Dominica
-DO=Rep\u00fablica Dominicana
-DZ=Argelia
-EC=Ecuador
-EE=Estonia
-EG=Egipto
-EH=Sahara Occidental
-ER=Eritrea
-ES=Espa\u00f1a
-ET=Etiop\u00eda
-FI=Finlandia
-FJ=Fiyi
-FK=Islas Malvinas
-FM=Micronesia
-FO=Islas Feroe
-FR=Francia
-GA=Gab\u00f3n
-GB=Reino Unido
-GD=Granada
-GE=Georgia
-GF=Guayana Francesa
-GG=Guernsey
-GH=Ghana
-GI=Gibraltar
-GL=Groenlandia
-GM=Gambia
-GN=Guinea
-GP=Guadalupe
-GQ=Guinea Ecuatorial
-GR=Grecia
-GS=Islas Georgia del Sur y Sandwich del Sur
-GT=Guatemala
-GU=Guam
-GW=Guinea-Bissau
-GY=Guyana
-HK=Hong Kong
-HM=Islas Heard y McDonald
-HN=Honduras
-HR=Croacia
-HT=Hait\u00ed
-HU=Hungr\u00eda
-ID=Indonesia
-IE=Irlanda
-IL=Israel
-IM=Isla de Man
-IN=India
-IO=Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico
-IQ=Iraq
-IR=Ir\u00e1n
-IS=Islandia
-IT=Italia
-JE=Jersey
-JM=Jamaica
-JO=Jordania
-JP=Jap\u00f3n
-KE=Kenia
-KG=Kirguizist\u00e1n
-KH=Camboya
-KI=Kiribati
-KM=Comores
-KN=San Crist\u00f3bal y Nieves
-KP=Corea del Norte
-KR=Corea del Sur
-KW=Kuwait
-KY=Islas Caim\u00e1n
-KZ=Kazajst\u00e1n
-LA=Laos
-LB=L\u00edbano
-LC=Santa Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesoto
-LT=Lituania
-LU=Luxemburgo
-LV=Letonia
-LY=Libia
-MA=Marruecos
-MC=M\u00f3naco
-MD=Moldavia
-ME=Montenegro
-MF=San Mart\u00EDn
-MG=Madagascar
-MH=Islas Marshall
-MK=Macedonia
-ML=Mal\u00ed
-MM=Myanmar
-MN=Mongolia
-MO=Macao
-MP=Islas Marianas del Norte
-MQ=Martinica
-MR=Mauritania
-MS=Montserrat
-MT=Malta
-MU=Mauricio
-MV=Maldivas
-MW=Malaui
-MX=M\u00e9xico
-MY=Malasia
-MZ=Mozambique
-NA=Namibia
-NC=Nueva Caledonia
-NE=N\u00edger
-NF=Isla Norfolk
-NG=Nigeria
-NI=Nicaragua
-NL=Holanda
-NO=Noruega
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Nueva Zelanda
-OM=Om\u00e1n
-PA=Panam\u00e1
-PE=Per\u00fa
-PF=Polinesia Francesa
-PG=Pap\u00faa New Guinea
-PH=Filipinas
-PK=Paquist\u00e1n
-PL=Polonia
-PM=San Pedro y Miquel\u00f3n
-PN=Islas Pitcairn
-PR=Puerto Rico
-PS=Palestina
-PT=Portugal
-PW=Palaos
-PY=Paraguay
-QA=Qatar
-RE=Reuni\u00f3n
-RO=Rumania
-RS=Serbia
-RU=Rusia
-RW=Ruanda
-SA=Arabia Saudita
-SB=Islas Salom\u00f3n
-SC=Seychelles
-SD=Sud\u00e1n
-SE=Suecia
-SG=Singapur
-SH=Santa Helena
-SI=Eslovenia
-SJ=Svalbard y Jan Mayen
-SK=Eslovaquia
-SL=Sierra Leona
-SM=San Marino
-SN=Senegal
-SO=Somalia
-SR=Surinam
-ST=Santo Tom\u00e9 y Pr\u00edncipe
-SV=El Salvador
-SX=San Mart\u00EDn (regi\u00F3n holandesa)
-SY=Siria
-SZ=Suazilandia
-TC=Islas Turcas y Caicos
-TD=Chad
-TF=Territorios Franceses del Sur
-TG=Togo
-TH=Tailandia
-TJ=Tayikist\u00e1n
-TK=Tokelau
-TL=Timor Oriental
-TM=Turkmenist\u00e1n
-TN=T\u00fanez
-TO=Tonga
-TR=Turqu\u00eda
-TT=Trinidad y Tobago
-TV=Tuvalu
-TW=Taiw\u00e1n
-TZ=Tanzania
-UA=Ucrania
-UG=Uganda
-UM=Islas menores alejadas de los Estados Unidos
-US=Estados Unidos
-UY=Uruguay
-UZ=Uzbekist\u00e1n
-VA=Ciudad del Vaticano
-VC=San Vicente y las Granadinas
-VE=Venezuela
-VG=Islas V\u00edrgenes Brit\u00e1nicas
-VI=Islas V\u00edrgenes Americanas
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis y Futuna
-WS=Samoa
-YE=Yemen
-YT=Mayotte
-ZA=Sud\u00e1frica
-ZM=Zambia
-ZW=Zimbabue
-
-# territory names
-# key is UN M.49 country and area code
-
-001=Mundo
-002=\u00C1frica
-003=Am\u00E9rica del Norte
-005=Suram\u00E9rica
-009=Ocean\u00EDa
-011=\u00C1frica occidental
-013=Centroam\u00E9rica
-014=\u00C1frica oriental
-015=\u00C1frica septentrional
-017=\u00C1frica central
-018=\u00C1frica meridional
-019=Am\u00E9ricas
-021=Norteam\u00E9rica
-029=Caribe
-030=Asia oriental
-034=Asia meridional
-035=Sudeste asi\u00E1tico
-039=Europa meridional
-053=Australia y Nueva Zelanda
-054=Melanesia
-057=Micronesia [057]
-061=Polinesia
-142=Asia
-143=Asia central
-145=Asia occidental
-150=Europa
-151=Europa oriental
-154=Europa septentrional
-155=Europa occidental
-419=Latinoam\u00E9rica y el Caribe
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_es_US.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_es_US.properties
deleted file mode 100755
index 0c59370..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_es_US.properties
+++ /dev/null
@@ -1,163 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-aa=afar
-ab=abjaso
-ae=av\u00e9stico
-ak=akan
-an=aragon\u00e9s
-av=avar
-ay=aymara
-az=azer\u00ed
-ba=bashkir
-bh=bihari
-bm=bambara
-bn=bengal\u00ed
-bs=bosnio
-ce=checheno
-ch=chamorro
-cr=cree
-cu=eslavo eclesi\u00e1stico
-cv=chuvash
-dv=divehi
-dz=dzongkha
-ee=ewe
-eu=vasco
-ff=fula
-fj=fidjiano
-fo=fero\u00e9s
-fy=fris\u00f3n
-gu=gujarati
-gv=ga\u00e9lico man\u00e9s
-hi=hindi
-ho=hiri motu
-ht=haitiano
-hz=herero
-ie=interlingue
-ig=igbo
-ii=sichuan yi
-io=ido
-jv=javan\u00e9s
-kg=kongo
-ki=kikuyu
-kj=kuanyama
-kk=kazajo
-km=jemer
-kn=canar\u00e9s
-kr=kanuri
-ks=cachemiro
-ku=kurdo
-kv=komi
-kw=c\u00f3rnico
-ky=kirghiz
-lb=luxemburgu\u00e9s
-lg=ganda
-li=limburgu\u00e9s
-lu=luba-katanga
-mh=marshal\u00e9s
-mr=marathi
-nb=bokmal noruego
-nd=ndebele septentrional
-ng=ndonga
-nn=nynorsk noruego
-nr=ndebele meridional
-nv=navajo
-ny=nyanja
-oc=occitano (despu\u00e9s del 1500)
-oj=ojibwa
-os=os\u00e9tico
-pi=pali
-rm=reto-romance
-rn=kiroundi
-rw=kinyarwanda
-sc=sardo
-sd=sindhi
-se=sami septentrional
-sl=esloveno
-sn=shona
-ss=siswati
-st=sesotho
-su=sundan\u00e9s
-sw=swahili
-tg=tayiko
-ti=tigri\u00f1a
-tn=setchwana
-to=tonga (Islas Tonga)
-tw=twi
-ty=tahitiano
-ug=uigur
-uk=ucraniano
-uz=uzbeko
-ve=venda
-vo=volap\u00fck
-wa=val\u00f3n
-za=zhuang
-AN=Antillas Neerlandesas
-AX=Islas \u00c5land
-BA=Bosnia-Herzegovina
-BH=Bahr\u00e9in
-CC=Islas Cocos (Keeling)
-CX=Isla Navidad
-CZ=Rep\u00fablica Checa
-EH=S\u00e1hara Occidental
-FK=Islas Falkland (Malvinas)
-HK=Hong-Kong, Regi\u00f3n administrativa especial de China
-KG=Kirguist\u00e1n
-KM=Comoras
-LC=Saint Lucia
-LS=Lesotho
-MO=Macao, Regi\u00f3n administrativa especial de China
-MW=Malawi
-NL=Pa\u00edses Bajos
-NU=Isla Niue
-PG=Pap\u00faa Nueva Guinea
-PK=Pakist\u00e1n
-PN=Pitcairn
-PS=Territorios Palestinos
-PW=Palau
-RO=Ruman\u00eda
-SA=Arabia Saud\u00ed
-SH=Santa Elena
-TF=Territorios Australes Franceses
-TK=Islas Tokelau
-TT=Trinidad y Tabago
-VI=Islas V\u00edrgenes de los Estados Unidos
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_et.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_et.properties
deleted file mode 100755
index f521684..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_et.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-et=Eesti
-
-# country names
-# key is ISO 3166 country code
-
-EE=Eesti
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_fi.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_fi.properties
deleted file mode 100755
index 10ed75d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_fi.properties
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ar=arabia
-ba=baski
-bg=bulgaria
-ca=katalaani
-cs=tsekki
-da=tanska
-de=saksa
-el=kreikka
-en=englanti
-es=espanja
-fi=suomi
-fr=ranska
-he=heprea
-iw=heprea
-hi=hindi
-it=italia
-ja=japani
-lt=liettua
-lv=latvia
-nl=hollanti
-no=norja
-pl=puola
-pt=portugali
-ru=ven\u00e4j\u00e4
-sv=ruotsi
-th=thai
-tr=turkki
-zh=kiina
-
-# country names
-# key is ISO 3166 country code
-
-BE=Belgia
-BR=Brasilia
-CA=Kanada
-CH=Sveitsi
-CN=Kiina
-CZ=Tsekin tasavalta
-DE=Saksa
-DK=Tanska
-ES=Espanja
-FI=Suomi
-FR=Ranska
-GB=Iso-Britannia
-GR=Kreikka
-IE=Irlanti
-IT=Italia
-JP=Japani
-KR=Korea
-NL=Alankomaat
-NO=Norja
-PL=Puola
-PT=Portugali
-RU=Ven\u00e4j\u00e4
-SE=Ruotsi
-TR=Turkki
-US=Yhdysvallat
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_fr.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_fr.properties
deleted file mode 100755
index af1564b..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_fr.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=afar
-ab=abkhaze
-ae=avestan
-af=afrikaans
-ak=akan
-am=amharique
-an=aragonais
-ar=arabe
-as=assamais
-av=avar
-ay=aymara
-az=az\u00e9ri
-ba=bachkir
-be=bi\u00e9lorusse
-bg=bulgare
-bh=bihari
-bi=bichlamar
-bm=bambara
-bn=bengali
-bo=tib\u00e9tain
-br=breton
-bs=bosniaque
-ca=catalan
-ce=tch\u00e9tch\u00e8ne
-ch=chamorro
-co=corse
-cr=cri
-cs=tch\u00e8que
-cu=slavon d'\u00e9glise
-cv=tchouvache
-cy=gallois
-da=danois
-de=allemand
-dv=divehi
-dz=dzongkha
-ee=\u00e9w\u00e9
-el=grec
-en=anglais
-eo=esp\u00e9ranto
-es=espagnol
-et=estonien
-eu=basque
-fa=persan
-ff=peul
-fi=finnois
-fj=fidjien
-fo=f\u00e9ro\u00efen
-fr=fran\u00e7ais
-fy=frison
-ga=irlandais
-gd=ecossais ga\u00e9lique
-gl=galicien
-gn=guarani
-gu=goudjrati
-gv=manx
-ha=haoussa
-he=h\u00e9breu
-hi=hindi
-ho=hiri motu
-hr=croate
-ht=cr\u00e9ole d'Ha\u00efti
-hu=hongrois
-hy=arm\u00e9nien
-hz=herero
-ia=interlingua
-id=indon\u00e9sien
-ie=interlingue
-ig=ibo
-ii=yi de Sichuan
-ik=inupiaq
-in=indon\u00e9sien
-io=ido
-is=islandais
-it=italien
-iu=inuktitut
-iw=h\u00e9breu
-ja=japonais
-ji=yiddish
-jv=javanais
-ka=georgien
-kg=kongo
-ki=kikuyu
-kj=kwanyama
-kk=kazakh
-kl=groenlandais
-km=khmer
-kn=kannada
-ko=cor\u00e9en
-kr=kanouri
-ks=kashmiri
-ku=kurde
-kv=komi
-kw=cornique
-ky=kirghize
-la=latin
-lb=luxembourgeois
-lg=ganda
-li=limbourgeois
-ln=lingala
-lo=lao
-lt=lithuanien
-lu=luba-katanga
-lv=letton
-mg=malgache
-mh=marshall
-mi=maori
-mk=mac\u00e9donien
-ml=malayalam
-mn=mongol
-mo=moldave
-mr=marathe
-ms=malais
-mt=maltais
-my=birman
-na=nauruan
-nb=norv\u00e9gien bokm\u00e5l
-nd=nd\u00e9b\u00e9l\u00e9 du Nord
-ne=n\u00e9palais
-ng=ndonga
-nl=n\u00e9erlandais
-nn=norv\u00e9gien nynorsk
-no=norv\u00e9gien
-nr=nd\u00e9b\u00e9l\u00e9 du Sud
-nv=navaho
-ny=nyanja
-oc=occitan
-oj=ojibwa
-om=galla
-or=oriya
-os=oss\u00e8te
-pa=pendjabi
-pi=pali
-pl=polonais
-ps=pachto
-pt=portugais
-qu=quechua
-rm=rh\u00e9toroman
-rn=rundi
-ro=roumain
-ru=russe
-rw=rwanda
-sa=sanscrit
-sc=sarde
-sd=sindhi
-se=sami du Nord
-sg=sango
-si=singhalais
-sk=slovaque
-sl=slov\u00e8ne
-sm=samoan
-sn=shona
-so=somali
-sq=albanais
-sr=serbe
-ss=swati
-st=sotho du sud
-su=soundanais
-sv=su\u00e9dois
-sw=swahili
-ta=tamoul
-te=telugu
-tg=tadjik
-th=tha\u00ef
-ti=tigrigna
-tk=turkm\u00e8ne
-tl=tagalog
-tn=setswana
-to=tonga
-tr=turc
-ts=tsonga
-tt=tatare
-tw=twi
-ty=tahitien
-ug=ou\u00efgour
-uk=ukrainien
-ur=ourdou
-uz=ouzbek
-ve=venda
-vi=vietnamien
-vo=volap\u00fck
-wa=wallon
-wo=wolof
-xh=xhosa
-yi=yiddish
-yo=yoruba
-za=zhuang
-zh=chinois
-zu=zoulou
-
-# key is ISO 639.2 language code
-aar=Afar
-abk=Abkhaze
-ace=Achinais
-ach=Acoli
-ada=Adangme
-ady=Adygh\u00E9en
-afa=Afro-asiatique
-afh=Afrihili
-afr=Afrikaans
-ain=A\u00EFnou
-aka=Akan
-akk=Akkadien
-alb=Albanais
-ale=Al\u00E9oute
-alg=Langue algonquienne
-alt=Alta\u00EF du Sud
-amh=Amharique
-ang=Vieil anglais (environ 450-1100)
-anp=Angika
-apa=Langue apache
-ara=Arabe
-arc=Aram\u00E9en officiel (700-300 av. J.-C.)
-arg=Aragonais
-arm=Arm\u00E9nien
-arn=Mapudungun
-arp=Arapaho
-art=Langue artificielle
-arw=Arawak
-asm=Assamais
-ast=Asturien
-ath=Langue athapascane
-aus=Langue australienne
-ava=Avar
-ave=Avestique
-awa=Awadhi
-aym=Aymara
-aze=Az\u00E9ri
-bad=Banda
-bai=Langue bamil\u00E9k\u00E9e
-bak=Bachkir
-bal=Baloutchi
-bam=Bambara
-ban=Balinais
-baq=Basque
-bas=Bassa
-bat=Langue balte
-bej=Bedja
-bel=Bi\u00E9lorusse
-bem=Bemba
-ben=Bengali
-ber=Berb\u00E8re
-bho=Bhojpuri
-bih=Bihari
-bik=Bikol
-bin=Bini
-bis=Bichlamar
-bla=Siksika
-bnt=Bantou
-bos=Bosniaque
-bra=Braj
-bre=Breton
-btk=Batak
-bua=Bouriate
-bug=Bouguinais
-bul=Bulgare
-bur=Birman
-byn=Blin
-cad=Caddo
-cai=Langue am\u00E9rindienne centrale
-car=Galibi Caribe
-cat=Catalan
-cau=Langue caucasienne
-ceb=Cebuano
-cel=Langue celtique
-cha=Chamorro
-chb=Chibcha
-che=Tch\u00E9tch\u00E8ne
-chg=Tchaghata\u00EF
-chi=Chinois
-chk=Chuuk
-chm=Mari
-chn=Jargon chinook
-cho=Choctaw
-chp=Chipewyan
-chr=Cherokee
-chu=Slavon liturgique
-chv=Tchouvache
-chy=Cheyenne
-cmc=Langue chame
-cop=Copte
-cor=Cornouaillais
-cos=Corse
-cpe=Cr\u00E9ole ou pidgin anglais
-cpf=Cr\u00E9ole ou pidgin fran\u00E7ais
-cpp=Cr\u00E9ole ou pidgin portugais
-cre=Cri
-crh=Turc de Crim\u00E9e
-crp=Cr\u00E9ole ou pidgin
-csb=Kachoube
-cus=Langue couchitique
-cze=Tch\u00E8que
-dak=Dakota
-dan=Danois
-dar=Dargwa
-day=Dayak
-del=Delaware
-den=Slave (Athapascan)
-dgr=Dogrib
-din=Dinka
-div=Divehi
-doi=Dogri
-dra=Langue dravidienne
-dsb=Bas-sorabe
-dua=Douala
-dum=Moyen n\u00E9erlandais
-dut=N\u00E9erlandais
-dyu=Dioula
-dzo=Dzongkha
-efi=Efik
-egy=Egyptien ancien
-eka=Ekajuk
-elx=Elamite
-eng=Anglais
-enm=Moyen anglais
-epo=Esp\u00E9ranto
-est=Estonien
-ewe=Ewe
-ewo=Ewondo
-fan=Fang
-fao=F\u00E9ro\u00EFen
-fat=Fanti
-fij=Fidjien
-fil=Filipino
-fin=Finnois
-fiu=Langue finno-ougrienne
-fon=Fon
-fre=Fran\u00E7ais
-frm=Moyen fran\u00E7ais
-fro=Ancien fran\u00E7ais
-frr=Frison du Nord
-frs=Frison oriental
-fry=Frison occidental
-ful=Peul
-fur=Frioulan
-gaa=Ga
-gay=Gayo
-gba=Gbaya
-gem=Langue germanique
-geo=G\u00E9orgien
-ger=Allemand
-gez=Gu\u00E8ze
-gil=Gilbertais
-gla=Gallois
-gle=Irlandais
-glg=Galicien
-glv=Mannois
-gmh=Moyen haut-allemand
-goh=Ancien haut-allemand
-gon=Gondi
-gor=Gorontalo
-got=Gothique
-grb=Grebo
-grc=Grec ancien
-gre=Grec, moderne (1453 -)
-grn=Guarani
-gsw=Al\u00E9manique
-guj=Goudjarati
-gwi=Gwich'in
-hai=Haida
-hat=Ha\u00EFtien
-hau=Haoussa
-haw=Hawa\u00EFen
-heb=H\u00E9breu
-her=Herero
-hil=Hiligaynon
-him=Himachali
-hin=Hindi
-hit=Hittite
-hmn=Hmong
-hmo=Hiri Motu
-hrv=Croate
-hsb=Haut-sorabe
-hun=Hongrois
-hup=Hupa
-iba=Iban
-ibo=Igbo
-ice=Islandais
-ido=Ido
-iii=Yi de Sichuan
-ijo=Ijo
-iku=Inuktitut
-ile=Interlingue
-ilo=Ilokano
-ina=Interlingua (International Auxiliary Language Association)
-inc=Langue indo-aryenne
-ind=Indon\u00E9sien
-ine=Langue indo-europ\u00E9enne
-inh=Ingouche
-ipk=Inupiaq
-ira=Langue iranienne
-iro=Langue iroquoienne
-ita=Italien
-jav=Javanais
-jbo=Lojban
-jpn=Japonais
-jpr=Jud\u00E9o-persan
-jrb=Jud\u00E9o-arabe
-kaa=Karakalpak
-kab=Kabyle
-kac=Kachin
-kal=Groenlandais
-kam=Kamba
-kan=Kannada
-kar=Karen
-kas=Kashmiri
-kau=Kanuri
-kaw=Kawi
-kaz=Kazakh
-kbd=Kabardin
-kha=Khasi
-khi=Langue kho\u00EFsan
-khm=Khmer central
-kho=Khotanais
-kik=Kikuyu
-kin=Kinyarwanda
-kir=Kirghize
-kmb=Kimbundu
-kok=Konkani
-kom=Komi
-kon=Kikongo
-kor=Cor\u00E9en
-kos=Kosrae
-kpe=Kpell\u00E9
-krc=Karatcha\u00EF balkar
-krl=Car\u00E9lien
-kro=Krou
-kru=Kurukh
-kua=Kwanyama
-kum=Koumyk
-kur=Kurde
-kut=Kutenai
-lad=Ladino
-lah=Lahnda
-lam=Lamba
-lao=Laotien
-lat=Latin
-lav=Letton
-lez=Lezghien
-lim=Limburgan
-lin=Lingala
-lit=Lituanien
-lol=Mongo
-loz=Lozi
-ltz=Luxembourgeois
-lua=Luba-Lulua
-lub=Luba-Katanga
-lug=Ganda
-lui=Luiseno
-lun=Lunda
-luo=Luo
-lus=Lushai
-mac=Mac\u00E9donien
-mad=Madurais
-mag=Magahi
-mah=Marshallais
-mai=Maithili
-mak=Makassar
-mal=Malayalam
-man=Mandingue
-mao=Maori
-map=Malayo-polyn\u00E9sien
-mar=Marathi
-mas=Masai
-may=Malais
-mdf=Moksa
-mdr=Mandar
-men=Mend\u00E9
-mga=Irlandais, moyen (900 - 1200)
-mic=Micmac
-min=Minangkabau
-mis=Non cod\u00E9
-mkh=Langue mon-khm\u00E8re
-mlg=Malgache
-mlt=Maltais
-mnc=Mandchou
-mni=Manipuri
-mno=Langue manobo
-moh=Mohawk
-mon=Mongol
-mos=Mor\u00E9
-mul=Multilingue
-mun=Langue mounda
-mus=Creek
-mwl=Mirandais
-mwr=Marwari
-myn=Langue maya
-myv=Erzya
-nah=Nahuatl
-nai=Langue am\u00E9rindienne du Nord
-nap=Napolitain
-nau=Nauruan
-nav=Navajo
-nbl=Ndebele, Sud
-nde=Ndebele, nord
-ndo=Ndonga
-nds=Bas-allemand
-nep=N\u00E9palais
-new=Newari
-nia=Nias
-nic=Niger-kordofanian
-niu=Niue
-nno=Norv\u00E9gien nynorsk
-nob=Bokmal, Norv\u00E9gien
-nog=Noga\u00EF
-non=Vieux norrois
-nor=Norv\u00E9gien
-nqo=N'Ko
-nso=Pedi
-nub=Langue nubienne
-nwc=Newari classique
-nya=Chichewa
-nym=Nyamwezi
-nyn=Nyankole
-nyo=Nyoro
-nzi=Nzema
-oci=Occitan (apr\u00E8s 1500)
-oji=Ojibwa
-ori=Oriya
-orm=Oromo
-osa=Osage
-oss=Oss\u00E8te
-ota=Turc ottoman
-oto=Langue otomangue
-paa=Langue papoue
-pag=Pangasinan
-pal=Pahlavi
-pam=Pampangan
-pan=Panjabi
-pap=Papiamento
-pau=Palau
-peo=Persan ancien
-per=Persan
-phi=Langue philippine
-phn=Ph\u00E9nicien
-pli=Pali
-pol=Polonais
-pon=Pohnpei
-por=Portugais
-pra=Langues pr\u00E2krit
-pro=Proven\u00E7al ancien
-pus=Pushto ; Pashto
-que=Quechua
-raj=Rajasthani
-rap=Rapanui
-rar=Rarotongien
-roa=Langue romane
-roh=Romanche
-rom=Romani
-rum=Roumain
-run=Rundi
-rup=Aroumain
-rus=Russe
-sad=Sandawe
-sag=Sango
-sah=Yakoute
-sai=Langue am\u00E9rindienne du Sud
-sal=Langue salishenne
-sam=Aram\u00E9en samaritain
-san=Sanscrit
-sas=Sasak
-sat=Santal
-scn=Sicilien
-sco=Ecossais
-sel=Selkoupe
-sem=Langue s\u00E9mitique
-sga=Ancien irlandais
-sgn=Langue des signes
-shn=Shan
-sid=Sidamo
-sin=Sinhala
-sio=Langue sioux
-sit=Sino-tib\u00E9tain
-sla=Langue slave
-slo=Slovaque
-slv=Slov\u00E8ne
-sma=Sami du sud
-sme=Sami du Nord
-smi=Langue samie
-smj=Sami de Lule
-smn=Sami d'Inari
-smo=Samoan
-sms=Sami skolt
-sna=Shona
-snd=Sindhi
-snk=Sonink\u00E9
-sog=Sogdien
-som=Somali
-son=Songhai
-sot=Sotho, sud
-spa=Espagnol
-srd=Sarde
-srn=Sranan Tongo
-srp=Serbe
-srr=S\u00E9r\u00E8re
-ssa=Langue nilo-saharienne
-ssw=Swati
-suk=Sukuma
-sun=Soundanais
-sus=Soussou
-sux=Sum\u00E9rien
-swa=Souah\u00E9li
-swe=Su\u00E9dois
-syc=Syriaque classique
-syr=Syriaque
-tah=Tahitien
-tai=Langue ta\u00EF
-tam=Tamoul
-tat=Tatar
-tel=T\u00E9lougou
-tem=Temne
-ter=Tereno
-tet=Tetum
-tgk=Tadjik
-tgl=Tagalog
-tha=Tha\u00EF
-tib=Tib\u00E9tain
-tig=Tigre
-tir=Tigrigna
-tiv=Tiv
-tkl=Tokelau
-tlh=Klingon
-tli=Tlingit
-tmh=Tamacheq
-tog=Tonga nyasa
-ton=Tonga (Iles Tonga)
-tpi=Tok Pisin
-tsi=Tsimshian
-tsn=Tswana
-tso=Tsonga
-tuk=Turkm\u00E8ne
-tum=Tumbuka
-tup=Langue tupi
-tur=Turc
-tut=Langue alta\u00EFque
-tvl=Tuvalu
-twi=Twi
-tyv=Touva
-udm=Oudmourte
-uga=Ougaritique
-uig=Ou\u00EFgour
-ukr=Ukrainien
-umb=Umbundu
-und=Ind\u00E9termin\u00E9
-urd=Ourdou
-uzb=Ouzbek
-vai=Va\u00EF
-ven=Venda
-vie=Vietnamien
-vol=Volapuk
-vot=Vote
-wak=Langues wakashennes
-wal=Wolaitta
-war=Waray
-was=Washo
-wel=Gallois
-wen=Langue sorabe
-wln=Wallon
-wol=Wolof
-xal=Kalmouk
-xho=Xhosa
-yao=Yao
-yap=Yap
-yid=Yiddish
-yor=Yoruba
-ypk=Langues yupik
-zap=Zapot\u00E8que
-zbl=Symboles Bliss
-zen=Zenaga
-zha=Zhuang
-znd=Zande
-zul=Zoulou
-zun=Zuni
-zxx=Sans contenu linguistique
-zza=Zazaki
-
-# script names
-# key is ISO 15924 script code
-
-Arab=Arabe
-Armi=Aram\u00E9en imp\u00E9rial
-Armn=Arm\u00E9nien
-Avst=Avestique
-Bali=Balinais
-Bamu=Bamoun
-Bass=Bassa Vah
-Batk=Batak
-Beng=Bengali
-Blis=Symboles Bliss
-Bopo=Bopomofo
-Brah=Brahmi
-Brai=Braille
-Bugi=Bouguis
-Buhd=Bouhide
-Cakm=Chakma
-Cans=Syllabaire autochtone canadien unifi\u00E9
-Cari=Carien
-Cham=Cham
-Cher=Cherokee
-Cirt=Cirth
-Copt=Copte
-Cprt=Syllabaire chypriote
-Cyrl=Cyrillique
-Cyrs=Cyrillique (variante slavonne)
-Deva=Devanagari
-Dsrt=Deseret
-Dupl=St\u00E9nographie Duploy\u00E9
-Egyd=D\u00E9motique \u00E9gyptien
-Egyh=Hi\u00E9ratique \u00E9gyptien
-Egyp=Hi\u00E9roglyphes \u00E9gyptiens
-Elba=Elbasan
-Ethi=Ethiopique
-Geok=G\u00E9orgien khoutsouri
-Geor=G\u00E9orgien
-Glag=Glagolitique
-Goth=Gothique
-Gran=Grantha
-Grek=Grec
-Gujr=Goudjarati
-Guru=Gourmoukh\u00EE
-Hang=Hangul
-Hani=Id\u00E9ogrammes han
-Hano=Hanunoo
-Hans=Id\u00E9ogrammes han simplifi\u00E9s
-Hant=Id\u00E9ogrammes han traditionnels
-Hebr=H\u00E9breu
-Hira=Hiragana
-Hmng=Pahawh Hmong
-Hrkt=Katakana ou Hiragana
-Hung=Ancien hongrois
-Inds=Indus
-Ital=Ancien italique
-Java=Javanais
-Jpan=Japonais
-Kali=Kayah Li
-Kana=Katakana
-Khar=Kharoshthi
-Khmr=Khmer
-Knda=Kannada
-Kore=Cor\u00E9en
-Kpel=Kpelle
-Kthi=Kaithi
-Lana=Tai Tham
-Laoo=Laotien
-Latf=Latin (variante bris\u00E9e)
-Latg=Latin (variante ga\u00E9lique)
-Latn=Latin
-Lepc=Lepcha
-Limb=Limbou
-Lina=Lin\u00E9aire A
-Linb=Lin\u00E9aire B
-Lisu=Lisu
-Loma=Loma
-Lyci=Lycien
-Lydi=Lydien
-Mand=Mand\u00E9en
-Mani=Manich\u00E9en
-Maya=Hi\u00E9roglyphes mayas
-Mend=Mend\u00E9
-Merc=Cursive m\u00E9ro\u00EFtique
-Mero=M\u00E9ro\u00EFtique
-Mlym=Malayalam
-Mong=Mongol
-Moon=Moon
-Mtei=Meitei Mayek
-Mymr=Myanmar
-Narb=Arabe ancien du Nord
-Nbat=Nabat\u00E9en
-Nkgb=Nakhi Geba
-Nkoo=N'Ko
-Ogam=Ogam
-Olck=Ol tchiki
-Orkh=Orkhon
-Orya=Oriya
-Osma=Osmanais
-Palm=Palmyr\u00E9en
-Perm=Ancien permien
-Phag=Phags pa
-Phli=Pehlevi des inscriptions
-Phlp=Pehlevi des psautiers
-Phlv=Pehlevi des livres
-Phnx=Ph\u00E9nicien
-Plrd=Miao
-Prti=Parthe des inscriptions
-Rjng=Rejang
-Roro=Rongorongo
-Runr=Runique
-Samr=Samaritain
-Sara=Sarati
-Sarb=Arabe ancien du Sud
-Saur=Saurashtra
-Sgnw=Ecriture des signes
-Shaw=Shavian
-Sind=Sindhi
-Sinh=Singhalais
-Sund=Soundanais
-Sylo=Syloti Nagri
-Syrc=Syriaque
-Syre=Syriaque estrangh\u00E9lo
-Syrj=Syriaque occidental
-Syrn=Syriaque oriental
-Tagb=Tagbanoua
-Tale=Ta\u00EF-le
-Talu=Nouveau ta\u00EF-lue
-Taml=Tamoul
-Tavt=Ta\u00EF Viet
-Telu=T\u00E9lougou
-Teng=Tengwar
-Tfng=Tifinagh
-Tglg=Tagalog
-Thaa=Th\u00E2na
-Thai=Tha\u00EF
-Tibt=Tib\u00E9tain
-Ugar=Ougaritique
-Vaii=Va\u00EF
-Visp=Langage visuel
-Wara=Warang Citi
-Xpeo=Cun\u00E9iforme pers\u00E9politain
-Xsux=Cun\u00E9iforme sum\u00E9ro-akkadien
-Yiii=Yi
-Zinh=H\u00E9rit\u00E9
-Zmth=Notation math\u00E9matique
-Zsym=Symboles
-Zxxx=Non \u00E9crit
-Zyyy=Script non d\u00E9termin\u00E9
-Zzzz=Ecriture inconnue ou non valide
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorre
-AE=Emirats Arabes Unis
-AF=Afghanistan
-AG=Antigua et Barbuda
-AI=Anguilla
-AL=Albanie
-AM=Arm\u00e9nie
-AN=Antilles N\u00e9erlandaises
-AO=Angola
-AQ=Antarctique
-AR=Argentine
-AS=Samoa am\u00e9ricaines
-AT=Autriche
-AU=Australie
-AW=Aruba
-AX=\u00celes \u00c5land
-AZ=Azerba\u00efdjan
-BA=Bosnie-Herz\u00e9govine
-BB=Barbade
-BD=Bangladesh
-BE=Belgique
-BF=Burkina Faso
-BG=Bulgarie
-BH=Bahre\u00efn
-BI=Burundi
-BJ=Benin
-BL=Saint-Barth\u00E9lemy
-BM=Bermudes
-BN=Brunei
-BO=Bolivie
-BQ=Bonaire, Saint-Eustache et Saba
-BR=Br\u00e9sil
-BS=Bahamas
-BT=Bhoutan
-BV=\u00cele Bouvet
-BW=Botswana
-BY=Bi\u00e9lo-Russie
-BZ=B\u00e9lize
-CA=Canada
-CC=\u00celes Cocos
-CD=R\u00e9publique d\u00e9mocratique du Congo
-CF=R\u00e9publique Centre-Africaine
-CG=Congo
-CH=Suisse
-CI=C\u00f4te d'Ivoire
-CK=\u00celes Cook
-CL=Chili
-CM=Cameroun
-CN=Chine
-CO=Colombie
-CR=Costa Rica
-CS=Serbie et Mont\u00e9n\u00e9gro
-CU=Cuba
-CV=Cap Vert
-CW=Cura\u00E7ao
-CX=\u00cele Christmas
-CY=Chypre
-CZ=R\u00e9publique Tch\u00e8que
-DE=Allemagne
-DJ=Djibouti
-DK=Danemark
-DM=Dominique
-DO=R\u00e9publique Dominicaine
-DZ=Alg\u00e9rie
-EC=Equateur
-EE=Estonie
-EG=Egypte
-EH=Sahara Occidental
-ER=Erythr\u00e9e
-ES=Espagne
-ET=Ethiopie
-FI=Finlande
-FJ=Fidji
-FK=\u00celes Malouines
-FM=Micron\u00e9sie
-FO=\u00celes F\u00e9ro\u00e9
-FR=France
-GA=Gabon
-GB=Royaume-Uni
-GD=Grenade
-GE=G\u00e9orgie
-GF=Guyane fran\u00e7aise
-GG=Guernesey
-GH=Ghana
-GI=Gibraltar
-GL=Groenland
-GM=Gambie
-GN=Guin\u00e9e
-GP=Guadeloupe
-GQ=Guin\u00e9e Equatoriale
-GR=Gr\u00e8ce
-GS=G\u00e9orgie du Sud et \u00eeles Sandwich du Sud
-GT=Guatemala
-GU=Guam
-GW=Guin\u00e9e-Bissau
-GY=Guyana
-HK=Hong-Kong
-HM=\u00cele Heard et \u00eeles McDonald
-HN=Honduras
-HR=Croatie
-HT=Ha\u00efti
-HU=Hongrie
-ID=Indon\u00e9sie
-IE=Irlande
-IL=Isra\u00ebl
-IM=Ile de Man
-IN=Inde
-IO=Territoires britanniques de l'Oc\u00e9an Indien
-IQ=Irak
-IR=Iran
-IS=Islande
-IT=Italie
-JE=Jersey
-JM=Jama\u00efque
-JO=Jordanie
-JP=Japon
-KE=Kenya
-KG=Kyrgyzstan
-KH=Cambodge
-KI=Kiribati
-KM=Comores
-KN=Saint-Christophe-et-Ni\u00e9v\u00e8s
-KP=Cor\u00e9e du Nord
-KR=Cor\u00e9e du Sud
-KW=Koweit
-KY=\u00celes Ca\u00efmans
-KZ=Kazakhstan
-LA=Laos
-LB=Liban
-LC=Sainte-Lucie
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Lithuanie
-LU=Luxembourg
-LV=Lettonie
-LY=Libye
-MA=Maroc
-MC=Monaco
-MD=Moldavie
-ME=Mont\u00e9n\u00e9gro
-MF=Saint-Martin
-MG=Madagascar
-MH=\u00celes Marshall
-MK=Mac\u00e9doine
-ML=Mali
-MM=Myanmar
-MN=Mongolie
-MO=Macao
-MP=\u00celes Mariannes du Nord
-MQ=Martinique
-MR=Mauritanie
-MS=Montserrat
-MT=Malte
-MU=Maurice
-MV=Maldives
-MW=Malawi
-MX=Mexique
-MY=Malaisie
-MZ=Mozambique
-NA=Namibie
-NC=Nouvelle-Cal\u00e9donie
-NE=Niger
-NF=\u00cele Norfolk
-NG=Nig\u00e9ria
-NI=Nicaragua
-NL=Pays-Bas
-NO=Norv\u00e8ge
-NP=N\u00e9pal
-NR=Nauru
-NU=Niue
-NZ=Nouvelle-Z\u00e9lande
-OM=Oman
-PA=Panama
-PE=P\u00e9rou
-PF=Polyn\u00e9sie Fran\u00e7aise
-PG=Papouasie-Nouvelle-Guin\u00e9e
-PH=Philippines
-PK=Pakistan
-PL=Pologne
-PM=Saint-Pierre-et-Miquelon
-PN=Pitcairn
-PR=Porto Rico
-PS=Palestine
-PT=Portugal
-PW=Belau
-PY=Paraguay
-QA=Qatar
-RE=La R\u00e9union
-RO=Roumanie
-RS=Serbie
-RU=Russie
-RW=Rwanda
-SA=Arabie Saoudite
-SB=\u00celes Salomon
-SC=Seychelles
-SD=Soudan
-SE=Su\u00e8de
-SG=Singapour
-SH=Sainte-H\u00e9l\u00e8ne
-SI=Slov\u00e9nie
-SJ=Svalbard et Jan Mayen
-SK=Slovaquie
-SL=Sierra Leone
-SM=Saint-Marin
-SN=S\u00e9n\u00e9gal
-SO=Somalie
-SR=Suriname
-ST=Sao Tom\u00e9 et Principe
-SV=El Salvador
-SX=Saint-Martin (partie n\u00E9erlandaise)
-SY=Syrie
-SZ=Swaziland
-TC=\u00celes Turks et Caicos
-TD=Tchad
-TF=Territoires Fran\u00e7ais du Sud
-TG=Togo
-TH=Tha\u00eflande
-TJ=Tadjikistan
-TK=Tokelau
-TL=Timor-Leste
-TM=Turkm\u00e9nistan
-TN=Tunisie
-TO=Tonga
-TR=Turquie
-TT=Trinit\u00e9-et-Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tanzanie
-UA=Ukraine
-UG=Ouganda
-UM=D\u00e9pendances am\u00e9ricaines du Pacifique
-US=Etats-Unis
-UY=Uruguay
-UZ=Ouzb\u00e9kistan
-VA=Vatican
-VC=Saint-Vincent-et-les Grenadines
-VE=V\u00e9n\u00e9zuela
-VG=Iles Vierges Britanniques
-VI=Iles Vierges Am\u00e9ricaines
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis-et-Futuna
-WS=Samoa
-YE=Y\u00e9men
-YT=Mayotte
-ZA=Afrique du Sud
-ZM=Zambie
-ZW=Zimbabwe
-
-# territory names
-# key is UN M.49 country and area code
-
-001=Monde
-002=Afrique
-003=Am\u00E9rique du Nord
-005=Am\u00E9rique du Sud
-009=Oc\u00E9anie
-011=Afrique occidentale
-013=Am\u00E9rique centrale
-014=Afrique orientale
-015=Afrique septentrionale
-017=Afrique centrale
-018=Afrique australe
-019=Am\u00E9riques
-021=Am\u00E9rique septentrionale
-029=Cara\u00EFbes
-030=Asie orientale
-034=Asie du Sud
-035=Asie du Sud-Est
-039=Europe m\u00E9ridionale
-053=Australie et Nouvelle-Z\u00E9lande
-054=M\u00E9lan\u00E9sie
-057=R\u00E9gion micron\u00E9sienne
-061=Polyn\u00E9sie
-142=Asie
-143=Asie centrale
-145=Asie occidentale
-150=Europe
-151=Europe orientale
-154=Europe septentrionale
-155=Europe occidentale
-419=Am\u00E9rique latine et Cara\u00EFbes
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ga.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ga.properties
deleted file mode 100755
index b64080c..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ga.properties
+++ /dev/null
@@ -1,375 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ab=Abc\u00e1isis
-ae=Aiv\u00e9istis
-af=Afrac\u00e1inis
-ar=Araibis
-as=Asaimis
-az=Asarbaise\u00e1inis
-ba=Baisc\u00edris
-be=Bealar\u00faisis
-bg=Bulg\u00e1iris
-bn=Beang\u00e1lais
-bo=Tib\u00e9adais
-br=Briot\u00e1inis
-bs=Boisnis
-ca=Catal\u00f3inis
-ce=Sisinis
-co=Corsaicis
-cr=Cra\u00edais
-cs=Seicis
-cu=Slavais na hEaglaise
-cv=Suvaisis
-cy=Breatnais
-da=Danmhairgis
-de=Gearm\u00e1inis
-el=Gr\u00e9igis
-en=B\u00e9arla
-es=Sp\u00e1innis
-et=East\u00f3inis
-eu=Bascais
-fa=Peirsis
-fi=Fionnlainnis
-fj=Fidsis
-fo=Far\u00f3is
-fr=Fraincis
-fy=Freaslainnais
-ga=Gaeilge
-gd=Gaeilge na hAlban
-gu=G\u00faisear\u00e1itis
-gv=Mannainis
-he=Eabhrais
-hi=Hiond\u00fais
-hr=Cr\u00f3itis
-hu=Ung\u00e1iris
-hy=Airm\u00e9inis
-id=Indin\u00e9isis
-in=Indin\u00e9isis
-is=\u00cdoslainnais
-it=Iod\u00e1ilis
-iu=Ion\u00faitis
-iw=Eabhrais
-ja=Seap\u00e1inis
-ji=Gi\u00fadais
-jv=I\u00e1vais
-ka=Seoirsis
-kk=Casachais
-kn=Cannadais
-ko=C\u00f3ir\u00e9is
-ks=Caism\u00edris
-kw=Cornais
-ky=Cirgeasais
-la=Laidin
-lb=Leitseabuirgis
-lo=Laosais
-lt=Liotu\u00e1inis
-lv=Laitvis
-mg=Malag\u00e1sais
-mi=Maorais
-mk=Macad\u00f3inis
-ml=Mail\u00e9alaimis
-mn=Mong\u00f3ilis
-mo=Mold\u00e1ivis
-mr=Maraitis
-mt=Maltais
-my=Burmais
-na=N\u00e1r\u00fais
-nb=Ioruais Bokm\u00e5l
-ne=Neipealais
-nl=Ollainnais
-nn=Ioruais Nynorsk
-no=Ioruais
-nv=Navach\u00f3is
-oc=Ocat\u00e1inis (tar \u00e9is 1500); Proven\u00e7al
-os=\u00d3is\u00e9itis
-pa=Puinseaibis
-pl=Polainnis
-ps=Paisteo
-pt=Portaing\u00e9ilis
-qu=Ceatsuais
-ro=Rom\u00e1inis
-ru=R\u00faisis
-sa=Sanscrait
-sc=Saird\u00ednis
-sd=Sindis
-se=S\u00e1imis Thuaidh
-sk=Sl\u00f3vacais
-sl=Sl\u00f3v\u00e9inis
-sm=Sam\u00f3is
-so=Som\u00e1lais
-sq=Alb\u00e1inis
-sr=Seirbis
-sv=Sualainnis
-sw=Svaha\u00edlis
-ta=Tamailis
-th=T\u00e9alainnis
-tl=Tag\u00e1laigis
-tr=Tuircis
-tt=Tatarais
-ty=Taih\u00edtis
-uk=\u00dacr\u00e1inis
-ur=Urdais
-uz=\u00daisb\u00e9icis
-vi=V\u00edtneamais
-wa=Vall\u00fanais
-yi=Gi\u00fadais
-zh=S\u00ednis
-zu=S\u00fal\u00fais
-AD=And\u00f3ra
-AE=Aontas na n\u00c9im\u00edr\u00edochta\u00ed Arabacha
-AF=An Afganast\u00e1in
-AG=Antigua agus Barbuda
-AL=An Alb\u00e1in
-AM=An Airm\u00e9in
-AN=Antill\u00ed na h\u00cdsilt\u00edre
-AO=Ang\u00f3la
-AQ=An Antartaice
-AR=An Airgint\u00edn
-AS=Sam\u00f3 Meirice\u00e1nach
-AT=An Ostair
-AU=An Astr\u00e1il
-AZ=An Asarbaise\u00e1in
-BA=An Bhoisnia-Heirseagaiv\u00e9in
-BB=Barbad\u00f3s
-BD=An Bhanglaid\u00e9is
-BE=An Bheilg
-BF=Buirc\u00edne Fas\u00f3
-BG=An Bhulg\u00e1ir
-BH=Bair\u00e9in
-BI=An Bhur\u00fain
-BJ=Beinin
-BM=Beirmi\u00fada
-BN=Br\u00fain\u00e9
-BO=An Bholaiv
-BR=An Bhrasa\u00edl
-BS=Na Bah\u00e1ma\u00ed
-BT=An Bh\u00fat\u00e1in
-BV=Oile\u00e1in Bouvet
-BW=An Bhotsu\u00e1in
-BY=An Bhealar\u00fais
-BZ=An Bheil\u00eds
-CA=Ceanada
-CC=Oile\u00e1in Cocos (Keeling)
-CD=Poblacht Dhaonlathach an Chong\u00f3
-CF=Poblacht na hAfraice L\u00e1ir
-CG=An Cong\u00f3
-CH=An Eilv\u00e9is
-CI=An C\u00f3sta Eabhair
-CK=Oile\u00e1in Cook
-CL=An tSile
-CM=Camar\u00fan
-CN=An tS\u00edn
-CO=An Chol\u00f3im
-CR=C\u00f3sta R\u00edce
-CU=C\u00faba
-CV=Rinn Verde
-CX=Oile\u00e1n na Nollag
-CY=An Chipir
-CZ=Poblacht na Seice
-DE=An Ghearm\u00e1in
-DK=An Danmhairg
-DM=Doiminice
-DO=An Phoblacht Dhoiminiceach
-DZ=An Ailg\u00e9ir
-EC=Eacuad\u00f3r
-EE=An East\u00f3in
-EG=An \u00c9igipt
-EH=An Sah\u00e1ra Thiar
-ES=An Sp\u00e1inn
-ET=An Aet\u00f3ip
-FI=An Fhionlainn
-FJ=Fids\u00ed
-FK=Oile\u00e1in Fh\u00e1clainne
-FM=An Mhicrin\u00e9is
-FO=Oile\u00e1in Fhar\u00f3
-FR=An Fhrainc
-GA=An Ghab\u00fain
-GB=An R\u00edocht Aontaithe
-GE=An tSeoirsia
-GF=An Ghu\u00e1in Fhrancach
-GH=G\u00e1na
-GI=Giobr\u00e1ltar
-GL=An Ghraonlainn
-GM=An Ghaimbia
-GN=An Ghuine
-GP=Guadal\u00faip
-GQ=An Ghuine Mhe\u00e1nchriosach
-GR=An Ghr\u00e9ig
-GS=An tSeoirsia Theas agus Oile\u00e1in Sandwich Theas
-GT=Guatamala
-GW=An Ghuine-Bhissau
-GY=An Ghu\u00e1in
-HM=Oile\u00e1n Heard agus Oile\u00e1in McDonald
-HN=Hond\u00faras
-HR=An Chr\u00f3it
-HT=H\u00e1it\u00ed
-HU=An Ung\u00e1ir
-ID=An Indin\u00e9is
-IE=\u00c9ire
-IL=Iosrael
-IN=An India
-IO=Cr\u00edocha Briotanacha an Aig\u00e9in Indiagh
-IQ=An Iar\u00e1ic
-IR=An Iar\u00e1in
-IS=An \u00cdoslainn
-IT=An Iod\u00e1il
-JM=Iam\u00e1ice
-JO=An Iord\u00e1in
-JP=An tSeap\u00e1in
-KE=An Ch\u00e9inia
-KG=An Chirgeast\u00e1in
-KH=An Chamb\u00f3id
-KI=Cireabait\u00ed
-KM=Oile\u00e1in Chom\u00f3ra
-KN=Saint Kitts agus Nevis
-KP=An Ch\u00f3ir\u00e9 Thuaidh
-KR=An Ch\u00f3ir\u00e9 Theas
-KW=Cu\u00e1it
-KY=Oile\u00e1in Cayman
-KZ=An Chasacst\u00e1in
-LB=An Liob\u00e1in
-LI=Lichtinst\u00e9in
-LK=Sr\u00ed Lanca
-LR=An Lib\u00e9ir
-LS=Leos\u00f3ta
-LT=An Liotu\u00e1in
-LU=Lucsamburg
-LV=An Laitvia
-LY=An Libia
-MA=Marac\u00f3
-MC=Monac\u00f3
-MD=An Mhold\u00f3iv
-MH=Oile\u00e1in Marshall
-MK=An Mhacad\u00f3in
-ML=Mail\u00ed
-MM=Maenmar
-MN=An Mhong\u00f3il
-MP=Oile\u00e1in Mariana Thuaidh
-MR=An Mharat\u00e1in
-MS=Montsarat
-MT=M\u00e1lta
-MU=Oile\u00e1n Mhuir\u00eds
-MV=Mhaildiv\u00ed
-MW=An Mhal\u00e1iv
-MX=Meicsiceo
-MY=An Mhalaeisia
-MZ=M\u00f3saimb\u00edc
-NA=An Namaib
-NC=An Nua-Chalad\u00f3in
-NE=An N\u00edgir
-NF=Oile\u00e1n Norfolk
-NG=An Nig\u00e9ir
-NI=Nicearagua
-NL=An \u00cdsilt\u00edr
-NO=An Iorua
-NP=Neipeal
-NR=N\u00e1r\u00fa
-NZ=An Nua-Sh\u00e9alainn
-PE=Peiri\u00fa
-PF=An Pholain\u00e9is Fhrancach
-PG=Nua-Ghuine Phapua
-PH=Na hOile\u00e1in Fhilip\u00edneacha
-PK=An Phacast\u00e1in
-PL=An Pholainn
-PM=Saint Pierre agus Miquelon
-PR=Port\u00f3 R\u00edce
-PS=Na Cr\u00edocha Pailist\u00edneacha
-PT=An Phortaing\u00e9il
-PY=Paragua
-QA=Catar
-RE=R\u00e9union
-RO=An R\u00f3m\u00e1in
-RU=C\u00f3naidhm na R\u00faise
-RW=Ruanda
-SA=An Araib Sh\u00e1dach
-SB=Oile\u00e1in Solomon
-SC=Na S\u00e9is\u00e9il
-SD=An tS\u00fad\u00e1in
-SE=An tSualainn
-SG=Singeap\u00f3r
-SH=San H\u00e9ilin
-SI=An tSl\u00f3v\u00e9in
-SJ=Svalbard agus Jan Mayen
-SK=An tSl\u00f3vaic
-SL=Siarra Leon
-SM=San Mair\u00edne
-SN=An tSeineag\u00e1il
-SO=An tSom\u00e1il
-SR=Suranam
-ST=Sao Tome agus Principe
-SV=An tSalvad\u00f3ir
-SY=An tSiria
-SZ=An tSuasalainn
-TC=Oile\u00e1in Turks agus Caicos
-TD=Sead
-TF=Cr\u00edocha Francacha Theas
-TG=T\u00f3ga
-TH=An T\u00e9alainn
-TJ=An T\u00e1ids\u00edceast\u00e1in
-TK=T\u00f3cal\u00e1
-TL=T\u00edom\u00f3r-Leste
-TM=An Tuircm\u00e9anast\u00e1in
-TN=An T\u00fain\u00e9is
-TR=An Tuirc
-TT=Oile\u00e1in na Tr\u00edon\u00f3ide agus Tob\u00e1ga
-TV=Tuval\u00fa
-TW=An T\u00e9av\u00e1in
-TZ=An Tans\u00e1in
-UA=An \u00dacr\u00e1in
-UM=Mion-Oile\u00e1in Imeallacha S.A.M.
-US=St\u00e1it Aontaithe Mheirice\u00e1
-UY=Urugua
-UZ=\u00daisb\u00e9iceast\u00e1in
-VA=An Chathaoir Naofa (St\u00e1t Chathair na Vatac\u00e1ine)
-VC=Saint Vincent agus na Grenadines
-VE=Veinis\u00e9ala
-VG=Oile\u00e1in Bhriotanacha na Maighdean
-VI=Oile\u00e1in na Maighdean S.A.M.
-VN=V\u00edtneam
-VU=Vanuat\u00fa
-WF=Oile\u00e1in Vail\u00eds agus Fut\u00fana
-WS=Sam\u00f3
-YE=\u00c9imin
-ZA=An Afraic Theas
-ZM=An tSaimbia
-ZW=An tSiomb\u00e1ib
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_hi.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_hi.properties
deleted file mode 100755
index 948eb04..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_hi.properties
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-hi=\u0939\u093f\u0902\u0926\u0940
-en=\u0905\u0901\u0917\u094d\u0930\u0947\u091c\u093c\u0940
-
-# country names
-# key is ISO 3166 country code
-
-IN=\u092d\u093e\u0930\u0924
-US=\u0938\u0902\u092f\u0941\u0915\u094d\u0924 \u0930\u093e\u091c\u094d\u092f \u0905\u092e\u0947\u0930\u093f\u0915\u093e
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_hr.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_hr.properties
deleted file mode 100755
index efef9f3..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_hr.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-hr=hrvatski
-
-# country names
-# key is ISO 3166 country code
-
-HR=Hrvatska
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_hu.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_hu.properties
deleted file mode 100755
index d9e7992..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_hu.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-hu=magyar
-
-# country names
-# key is ISO 3166 country code
-
-HU=Magyarorsz\u00e1g
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_in.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_in.properties
deleted file mode 100755
index 61c259a8..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_in.properties
+++ /dev/null
@@ -1,195 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ab=Abkhaz
-am=Amharik
-ar=Arab
-as=Assam
-av=Avarik
-az=Azerbaijan
-be=Belarusia
-bg=Bulgaria
-bn=Bengal
-bo=Tibet
-bs=Bosnia
-co=Korsika
-cs=Ceko
-da=Denmark
-de=Jerman
-el=Yunani
-en=Inggris
-es=Spanyol
-fa=Persia
-fi=Finlandia
-fj=Fiji
-fo=Faro
-fr=Perancis
-fy=Frisi
-ga=Irlandia
-gd=Gaelik Skotlandia
-he=Ibrani
-hr=Kroasia
-hu=Hungaria
-hy=Armenia
-id=Bahasa Indonesia
-in=Bahasa Indonesia
-iw=Ibrani
-jv=Jawa
-kj=Kuanyama
-kl=Kalaallisut
-ko=Korea
-ks=Kashmir
-ku=Kurdi
-lb=Luxembourg
-li=Limburg
-lt=Lithuania
-mg=Malagasi
-mh=Marshall
-my=Burma
-ne=Nepal
-nl=Belanda
-ny=Nyanja; Chichewa; Chewa
-os=Ossetic
-pa=Punjabi
-ps=Pashto (Pushto)
-pt=Portugis
-rm=Rhaeto-Romance
-su=Sundan
-sv=Swedia
-zh=Cina
-AD=Andora
-AE=Uni Emirat Arab
-AG=Antigua dan Barbuda
-AN=Antilles Belanda
-AQ=Antarktika
-AS=Samoa Amerika
-BA=Bosnia dan Herzegovina
-BE=Belgia
-BV=Kepulauan Bouvet
-BY=Belarusia
-CA=Kanada
-CC=Kepulauan Cocos
-CD=Republik Demokratik Kongo
-CF=Republik Afrika Tengah
-CG=Kongo
-CH=Swiss
-CI=Pantai Gading
-CK=Kepulauan Cook
-CL=Chili
-CM=Kamerun
-CN=Cina
-CO=Kolombia
-CR=Kosta Rika
-CU=Kuba
-CV=Tanjung Verde
-CX=Pulau Christmas
-CY=Siprus
-CZ=Republik Ceko
-DE=Jerman
-DJ=Jibouti
-DM=Dominika
-DO=Republik Dominika
-EC=Ekuador
-EG=Mesir
-EH=Sahara Barat
-ES=Spanyol
-FI=Finlandia
-FK=Kepulauan Falkland
-FM=Mikronesia
-FO=Kepulauan Faroe
-FR=Perancis
-GB=Inggris Raya
-GF=Guyana Perancis
-GQ=Guinea Khatulistiwa
-GR=Yunani
-GS=Georgia Selatan dan Kepulauan Sandwich Selatan
-HK=Hong Kong S.A.R., Cina
-HM=Pulau Heard dan Kepulauan McDonald
-HR=Kroasia
-HU=Hungaria
-IE=Irlandia
-IS=Islandia
-IT=Itali
-JM=Jamaika
-JO=Yordania
-JP=Jepang
-KH=Kamboja
-KM=Komoros
-KN=Saint Kitts dan Nevis
-KP=Korea Utara
-KR=Korea Selatan
-KY=Kepulauan Kayman
-LC=Santa Lusia
-MA=Maroko
-MG=Madagaskar
-MH=Kepulauan Marshall
-MO=Makao S.A.R. Cina
-MP=Kepualuan Mariana Utara
-NC=Kaledonia Baru
-NF=Kepulauan Norfolk
-NO=Norwegia
-NZ=Selandia Baru
-PF=Polynesia Perancis
-PG=Papua Nugini
-PH=Filipina
-PL=Polandia
-PM=Saint Pierre dan Miquelon
-PR=Puerto Riko
-PS=Otoritas Palestina
-PT=Portugis
-RE=R\u00e9union
-RU=Rusia
-SA=Arab Saudi
-SB=Kepulauan Solomon
-SG=Singapura
-SJ=Svalbard dan Jan Mayen
-ST=Sao Tome dan Principe
-TT=Trinidad dan Tobago
-UA=Ukraina
-US=Amerika Serikat
-VA=Vatikan
-VC=Saint Vincent dan Grenadines
-VG=Kepulauan British Virgin
-VI=Kepulauan U.S. Virgin
-WF=Wallis dan Futuna
-YE=Yaman
-ZA=Afrika Selatan
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_is.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_is.properties
deleted file mode 100755
index b8c028c..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_is.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-is=\u00edslenska
-
-# country names
-# key is ISO 3166 country code
-
-IS=\u00cdsland
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_it.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_it.properties
deleted file mode 100755
index a32d069..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_it.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=afar
-ab=abhaso
-ae=avestano
-af=afrikaans
-ak=akan
-am=amarico
-an=aragonese
-ar=arabo
-as=assamese
-av=avarico
-ay=aymar\u00e1
-az=azero
-ba=baschiro
-be=bielorusso
-bg=bulgaro
-bh=bihari
-bi=bislama
-bm=bambara
-bn=bengalese
-bo=tibetano
-br=bretone
-bs=bosniaco
-ca=catalano
-ce=ceceno
-ch=chamorro
-co=corso
-cr=cree
-cs=ceco
-cu=slavo ecclesiastico
-cv=chuvash
-cy=gallese
-da=danese
-de=tedesco
-dv=divehi
-dz=dzongkha
-ee=ewe
-el=greco
-en=inglese
-eo=esperanto
-es=spagnolo
-et=estone
-eu=basco
-fa=persiano
-ff=fulah
-fi=finlandese
-fj=figiano
-fo=faeroese
-fr=francese
-fy=frisone
-ga=irlandese
-gd=gaelico scozzese
-gl=galiziano
-gn=guaran\u00ec
-gu=gujarati
-gv=manx
-ha=haussa
-he=ebraico
-hi=hindi
-ho=hiri motu
-hr=croato
-ht=haitiano
-hu=ungherese
-hy=armeno
-hz=herero
-ia=interlingua
-id=indonesiano
-ie=interlingue
-ig=igbo
-ii=sichuan yi
-ik=inupiak
-in=indonesiano
-io=ido
-is=islandese
-it=italiano
-iu=inuktitut
-iw=ebraico
-ja=giapponese
-ji=yiddish
-jv=giavanese
-ka=georgiano
-kg=kongo
-ki=kikuyu
-kj=kwanyama
-kk=kazako
-kl=groenlandese
-km=cambogiano (khmer)
-kn=kannada
-ko=coreano
-kr=kanuri
-ks=kashmiri
-ku=curdo
-kv=komi
-kw=cornico
-ky=kirghiso
-la=latino
-lb=lussemburghese
-lg=ganda
-li=limburghese
-ln=lingala
-lo=lao
-lt=lituano
-lu=luba-katanga
-lv=lettone
-mg=malgascio
-mh=marshallese
-mi=maori
-mk=macedone
-ml=malayalam
-mn=mongolo
-mo=moldavo
-mr=marathi
-ms=malese
-mt=maltese
-my=birmano
-na=nauruano
-nb=norvegese bokm\u00e5l
-nd=ndebele settentrionale
-ne=nepalese
-ng=ndonga
-nl=neerlandese
-nn=norvegese nynorsk
-no=norvegese
-nr=ndebele meridionale
-nv=navajo
-ny=nyanja
-oc=occitano
-oj=ojibwa
-om=oromo (afan)
-or=oriya
-os=ossetiano
-pa=punjabi
-pi=pali
-pl=polacco
-ps=pashto
-pt=portoghese
-qu=quechua
-rm=retoromanzo
-rn=kirundi
-ro=rumeno
-ru=russo
-rw=kinyarwanda
-sa=sanscrito
-sc=sardo
-sd=sindhi
-se=sami settentrionale
-sg=sangho
-si=singalese
-sk=slovacco
-sl=sloveno
-sm=samoano
-sn=shona
-so=somalo
-sq=albanese
-sr=serbo
-ss=siswati
-st=sesotho
-su=sudanese
-sv=svedese
-sw=swahili
-ta=tamil
-te=telugu
-tg=tagiko
-th=thai
-ti=tigrinya
-tk=turkmeno
-tl=tagalog
-tn=setswana
-to=tongano
-tr=turco
-ts=tsonga
-tt=tataro
-tw=twi
-ty=tahitiano
-ug=uiguro
-uk=ucraino
-ur=urdu
-uz=uzbeko
-ve=venda
-vi=vietnamita
-vo=volapuk
-wa=vallone
-wo=wolof
-xh=xhosa
-yi=yiddish
-yo=yoruba
-za=zhuang
-zh=cinese
-zu=zulu
-
-# key is ISO 639.2 language code
-aar=Afar
-abk=Abkhaso
-ace=Accinese
-ach=Acioli
-ada=Adangme
-ady=Adyghe
-afa=Lingua afroasiatica
-afh=Afrihili
-afr=Afrikaans
-ain=Ainu
-aka=Akan
-akk=Accado
-alb=Albanese
-ale=Aleuto
-alg=Lingue algonchine
-alt=Altai del sud
-amh=Amarico
-ang=Inglese antico (dal 450 al 1100 c.a.)
-anp=Angika
-apa=Lingue apache
-ara=Arabo
-arc=Aramaico ufficiale (dal 700 al 300 AC)
-arg=Aragonese
-arm=Armeno
-arn=Mapudungun
-arp=Arapaho
-art=Lingua artificiale
-arw=Aruaco
-asm=Assamese
-ast=Asturiano
-ath=Lingue Athapascan
-aus=Australiano
-ava=Avaro
-ave=Avestano
-awa=Awadhi
-aym=Aymara
-aze=Azero
-bad=Banda
-bai=Lingue bamileke
-bak=Baschiro
-bal=Beluci
-bam=Bambara
-ban=Balinese
-baq=Basco
-bas=Basa
-bat=Lingua baltica
-bej=Begia
-bel=Bielorusso
-bem=Wemba
-ben=Bengalese
-ber=Berbero
-bho=Bhojpuri
-bih=Bihari
-bik=Bicol
-bin=Bini
-bis=Bislama
-bla=Siksika
-bnt=Bantu
-bos=Bosniaco
-bra=Braj
-bre=Bretone
-btk=Batak
-bua=Buriat
-bug=Buginese
-bul=Bulgaro
-bur=Birmano
-byn=Blin
-cad=Caddo
-cai=Lingua indiana dell'America centrale
-car=Caribe (Galibi)
-cat=Catalano
-cau=Lingua caucasica
-ceb=Cebuano
-cel=Lingua celtica
-cha=Chamorro
-chb=Chibcha
-che=Ceceno
-chg=Chagataico
-chi=Cinese
-chk=Chuukese
-chm=Mari
-chn=Gergo chinook
-cho=Choctaw
-chp=Chipewyan
-chr=Cherokee
-chu=Slavo ecclesiastico
-chv=Chuvash
-chy=Cheyenne
-cmc=Lingue chamic
-cop=Copto
-cor=Cornico
-cos=Corso
-cpe=Creolo e pidgin basato sull'inglese
-cpf=Creolo e pidgin basato sul francese
-cpp=Creolo e pidgin basato sul portoghese
-cre=Cree
-crh=Turco crimeo
-crp=Creolo e pidgin
-csb=Kashubian
-cus=Lingua cuscitica
-cze=Ceco
-dak=Dakota
-dan=Danese
-dar=Dargwa
-day=Land Dayak
-del=Delaware
-den=Slave (Athapascan)
-dgr=Dogrib
-din=Dinca
-div=Divehi
-doi=Dogri
-dra=Lingua dravidica
-dsb=Basso sorabo
-dua=Duala
-dum=Olandese medio (dal 1050 al 1350 c.a.)
-dut=Olandese
-dyu=Diula
-dzo=Dzongkha
-efi=Efik
-egy=Egiziano antico
-eka=Ekajuka
-elx=Elamitico
-eng=Inglese
-enm=Inglese medio (dal 1100 al 1500)
-epo=Esperanto
-est=Estone
-ewe=Ewe
-ewo=Ewondo
-fan=Fang
-fao=Faroese
-fat=Fanti
-fij=Figiano
-fil=Filippino
-fin=Finlandese
-fiu=Lingua ungrofinnica
-fon=Fon
-fre=Francese
-frm=Francese medio (dal 1400 al 1600 c.a.)
-fro=Francese antico (dal 842 al 1400 c.a.)
-frr=Frisone settentrionale
-frs=Frisone orientale
-fry=Frisone occidentale
-ful=Fulah
-fur=Friulano
-gaa=Ga
-gay=Gayo
-gba=Gbaya
-gem=Lingua germanica
-geo=Georgiano
-ger=Tedesco
-gez=Geez
-gil=Gilbertese
-gla=Gaelico
-gle=Irlandese
-glg=Galiziano
-glv=Manx
-gmh=Tedesco medio alto (dal 1050 al 1500 c.a.)
-goh=Tedesco antico alto (dal 750 al 1050 c.a.)
-gon=Gondi
-gor=Gorontalo
-got=Gotico
-grb=Grebo
-grc=Greco antico (fino al 1453)
-gre=Greco moderno (dal 1453)
-grn=Guaran\u00EC
-gsw=Tedesco svizzero
-guj=Gujarati
-gwi=Gwich'in
-hai=Haida
-hat=Haitiano
-hau=Hausa
-haw=Hawaiano
-heb=Ebraico
-her=Herero
-hil=Hiligaynon
-him=Himachali
-hin=Hindi
-hit=Hittite
-hmn=Hmong
-hmo=Hiri Motu
-hrv=Croato
-hsb=Alto sorabo
-hun=Ungherese
-hup=Hupa
-iba=Iban
-ibo=Igbo
-ice=Islandese
-ido=Ido
-iii=Sichuan Yi
-ijo=Ijo
-iku=Inuktitut
-ile=Interlingue
-ilo=Ilocano
-ina=Interlingua (Associazione internazionale per la lingua ausiliaria)
-inc=Lingua indiana
-ind=Indonesiano
-ine=Lingua indoeuropea
-inh=Ingush
-ipk=Inupiaq
-ira=Iraniano
-iro=Lingue irochesi
-ita=Italiano
-jav=Giavanese
-jbo=Lojban
-jpn=Giapponese
-jpr=Giudeo persiano
-jrb=Giudeo arabo
-kaa=Kara-Kalpak
-kab=Kabyle
-kac=Kachin
-kal=Kalaallisut
-kam=Kamba
-kan=Kannada
-kar=Karen
-kas=Kashmiri
-kau=Kanuri
-kaw=Kawi
-kaz=Kazako
-kbd=Kabardia
-kha=Khasi
-khi=Lingua khoisan
-khm=Khmer centrale
-kho=Khotanese
-kik=Kikuyu
-kin=Kinyarwanda
-kir=Kirghiso
-kmb=Kimbundu
-kok=Konkani
-kom=Komi
-kon=Kongo
-kor=Coreano
-kos=Kosraean
-kpe=Kpelle
-krc=Karachay-Balkar
-krl=Careliano
-kro=Kru
-kru=Kurukh
-kua=Kuanyama
-kum=Kumyk
-kur=Curdo
-kut=Kutenai
-lad=Ladino
-lah=Lahnda
-lam=Lamba
-lao=Lao
-lat=Latino
-lav=Lettone
-lez=Lezghian
-lim=Limburgese
-lin=Lingala
-lit=Lituano
-lol=Mongo
-loz=Lozi
-ltz=Lussemburghese
-lua=Luba-Lulua
-lub=Luba-Katanga
-lug=Ganda
-lui=Luiseno
-lun=Lunda
-luo=Luo (Kenya e Tanzania)
-lus=Lushai
-mac=Macedone
-mad=Madurese
-mag=Magahi
-mah=Marshallese
-mai=Maithili
-mak=Makasar
-mal=Malayalam
-man=Mandingo
-mao=Maori
-map=Austronesiano
-mar=Marathi
-mas=Masai
-may=Malese
-mdf=Moksha
-mdr=Mandar
-men=Mende
-mga=Irlandese medio (dal 900 al 1200)
-mic=Mi'kmaq
-min=Minangkabau
-mis=Lingue non codificate
-mkh=Lingua mon-khmer
-mlg=Malgascio
-mlt=Maltese
-mnc=Manchu
-mni=Manipuri
-mno=Manobo
-moh=Mohawk
-mon=Mongolo
-mos=Mossi
-mul=Multilingua
-mun=Lingua munda
-mus=Creek
-mwl=Mirandese
-mwr=Marwari
-myn=Lingue maya
-myv=Erzya
-nah=Nahuatl
-nai=Lingua indiana del Nord America
-nap=Napoletano
-nau=Nauruano
-nav=Navajo
-nbl=Ndebele del sud
-nde=Ndebele del nord
-ndo=Ndonga
-nds=Basso tedesco
-nep=Nepalese
-new=Nepal Bhasa
-nia=Nias
-nic=Lingua niger-cordofan
-niu=Niue
-nno=Norvegese nynorsk
-nob=Norvegese bokm\u00E5l
-nog=Nogai
-non=Norse antico
-nor=Norvegese
-nqo=N'Ko
-nso=Pedi
-nub=Nubiano
-nwc=Newari classico
-nya=Chichewa
-nym=Nyamwezi
-nyn=Nyankole
-nyo=Nyoro
-nzi=Nzima
-oci=Occitano (dopo il 1500)
-oji=Ojibwa
-ori=Oriya
-orm=Oromo
-osa=Osage
-oss=Ossetico
-ota=Turco, ottomano (1500-1928)
-oto=Lingue otomi
-paa=Lingua papuana
-pag=Pangasinan
-pal=Pahlavi
-pam=Pampanga
-pan=Punjabi
-pap=Papiamento
-pau=Palau
-peo=Persiano antico (dal 600 al 400 AC)
-per=Persiano
-phi=Lingua filippina
-phn=Fenicio
-pli=Pali
-pol=Polacco
-pon=Pohnpeiano
-por=Portoghese
-pra=Pracrito
-pro=Provenzale antico (fino al 1500)
-pus=Pushto; Pashto
-que=Quechua
-raj=Rajasthani
-rap=Rapanui
-rar=Rarotonga
-roa=Lingua romanza
-roh=Romancio
-rom=Romani
-rum=Romeno
-run=Kirundi
-rup=Aromaniano
-rus=Russo
-sad=Sandawe
-sag=Sango
-sah=Yakut
-sai=Lingua indiana del Sud America
-sal=Lingue salish
-sam=Aramaico samaritano
-san=Sanscrito
-sas=Sasak
-sat=Santali
-scn=Siciliano
-sco=Scozzese
-sel=Selkup
-sem=Lingua semitica
-sga=Irlandese antico (fino al 900)
-sgn=Lingua dei segni
-shn=Shan
-sid=Sidamo
-sin=Singalese
-sio=Lingue sioux
-sit=Lingua sino-tibetana
-sla=Lingua slava
-slo=Slovacco
-slv=Sloveno
-sma=Sami del sud
-sme=Sami del nord
-smi=Sami
-smj=Sami lule
-smn=Sami inari
-smo=Samoano
-sms=Sami skolt
-sna=Shona
-snd=Sindhi
-snk=Soninke
-sog=Sogdiano
-som=Somalo
-son=Songhai
-sot=Sotho del sud
-spa=Spagnolo
-srd=Sardo
-srn=Sranan Tongo
-srp=Serbo
-srr=Serer
-ssa=Lingua nilo-sahariana
-ssw=Swati
-suk=Sukuma
-sun=Sundanese
-sus=Susu
-sux=Sumero
-swa=Swahili
-swe=Svedese
-syc=Siriaco classico
-syr=Siriaco
-tah=Taitiano
-tai=Tai
-tam=Tamil
-tat=Tataro
-tel=Telugu
-tem=Temne
-ter=Tereno
-tet=Tetum
-tgk=Tagiko
-tgl=Tagalog
-tha=Tailandese
-tib=Tibetano
-tig=Tigre
-tir=Tigrinya
-tiv=Tiv
-tkl=Tokelau
-tlh=Klingon
-tli=Tlingit
-tmh=Tamashek
-tog=Tonga (Nyasa)
-ton=Tonga (Isole Tonga)
-tpi=Tok pisin
-tsi=Tsimshian
-tsn=Tswana
-tso=Tsonga
-tuk=Turkmeno
-tum=Tumbuka
-tup=Lingue tupi
-tur=Turco
-tut=Lingua altaica
-tvl=Tuvalu
-twi=Twi
-tyv=Tuvinian
-udm=Udmurt
-uga=Ugaritico
-uig=Uiguro
-ukr=Ucraino
-umb=Umbundu
-und=Lingua imprecisata
-urd=Urdu
-uzb=Uzbeko
-vai=Vai
-ven=Venda
-vie=Vietnamita
-vol=Volapuk
-vot=Voto
-wak=Lingue wakash
-wal=Walamo
-war=Waray
-was=Washo
-wel=Gallese
-wen=Sorabo
-wln=Vallone
-wol=Wolof
-xal=Kalmyk
-xho=Xhosa
-yao=Yao
-yap=Yapese
-yid=Yiddish
-yor=Yoruba
-ypk=Lingue Yupik
-zap=Zapotec
-zbl=Simboli bliss
-zen=Zenaga
-zha=Zhuang
-znd=Zande
-zul=Zulu
-zun=Zuni
-zxx=Nessun contenuto linguistico
-zza=Zazaki
-
-# script names
-# key is ISO 15924 script code
-
-Arab=Arabo
-Armi=Aramaico imperiale
-Armn=Armeno
-Avst=Avestano
-Bali=Balinese
-Bamu=Bamum
-Bass=Bassa Vah
-Batk=Batak
-Beng=Bengalese
-Blis=Simboli bliss
-Bopo=Bopomofo
-Brah=Brahmi
-Brai=Braille
-Bugi=Buginese
-Buhd=Buhid
-Cakm=Chakma
-Cans=Simboli aborigeni canadesi unificati
-Cari=Cario
-Cham=Cham
-Cher=Cherokee
-Cirt=Cirth
-Copt=Copto
-Cprt=Cipriota
-Cyrl=Cirillico
-Cyrs=Cirillico (antico slavo ecclesiastico)
-Deva=Devanagari
-Dsrt=Deseret
-Dupl=Stenografia duployan
-Egyd=Egiziano demotico
-Egyh=Ieratico egiziano
-Egyp=Geroglifici egiziani
-Elba=Elbasan
-Ethi=Etiope
-Geok=Khutsuri
-Geor=Georgiano
-Glag=Glagolitico
-Goth=Gotico
-Gran=Grantha
-Grek=Greco
-Gujr=Gujarati
-Guru=Gurmukhi
-Hang=Hangul
-Hani=Han
-Hano=Hanunoo
-Hans=Han semplificato
-Hant=Han tradizionale
-Hebr=Ebraico
-Hira=Hiragana
-Hmng=Pahawh Hmong
-Hrkt=Katakana o Hiragana
-Hung=Ungherese antico
-Inds=Ind\u00F9
-Ital=Italico antico
-Java=Giavanese
-Jpan=Giapponese
-Kali=Kayah Li
-Kana=Katakana
-Khar=Kharoshthi
-Khmr=Khmer
-Knda=Kannada
-Kore=Coreano
-Kpel=Kpelle
-Kthi=Kaithi
-Lana=Tai Tham
-Laoo=Lao
-Latf=Variante fraktur del latino
-Latg=Latino gaelico
-Latn=Latino
-Lepc=Lepcha
-Limb=Limbu
-Lina=Lineare A
-Linb=Lineare B
-Lisu=Lisu
-Loma=Loma
-Lyci=Licio
-Lydi=Lidio
-Mand=Mandaico
-Mani=Manicheo
-Maya=Geroglifici maya
-Mend=Mende
-Merc=Corsivo meroitico
-Mero=Meoitico
-Mlym=Malayalam
-Mong=Mongolo
-Moon=Moon
-Mtei=Meitei Mayek
-Mymr=Myanmar
-Narb=Arabo antico del nord
-Nbat=Lingua nabatea
-Nkgb=Nakhi Geba
-Nkoo=N'Ko
-Ogam=Ogamico
-Olck=Ol Chiki
-Orkh=Orkhon
-Orya=Oriya
-Osma=Osmanya
-Palm=Palmyrene
-Perm=Permiano antico
-Phag=Phags-pa
-Phli=Pahlavi (Inscriptional)
-Phlp=Pahlavi (Psalter)
-Phlv=Pahlavi (Book)
-Phnx=Fenicio
-Plrd=Miao
-Prti=Partico (iscrizioni)
-Rjng=Rejang
-Roro=Rongorongo
-Runr=Runico
-Samr=Samaritano
-Sara=Sarati
-Sarb=Arabo antico del sud
-Saur=Saurashtra
-Sgnw=SignWriting
-Shaw=Shaviano
-Sind=Sindhi
-Sinh=Singalese
-Sund=Sundanese
-Sylo=Syloti Nagri
-Syrc=Siriaco
-Syre=Siriaco estrangelo
-Syrj=Siriaco occidentale
-Syrn=Siriaco orientale
-Tagb=Tagbanwa
-Tale=Tai Le
-Talu=Tai Lue semplificato
-Taml=Tamil
-Tavt=Tai Viet
-Telu=Telugu
-Teng=Tengwar
-Tfng=Tifinagh
-Tglg=Tagalog
-Thaa=Thaana
-Thai=Tailandese
-Tibt=Tibetano
-Ugar=Ugaritico
-Vaii=Vai
-Visp=Discorso visibile
-Wara=Warang Citi
-Xpeo=Persiano antico
-Xsux=Cuneiforme sumero-accadico
-Yiii=Yi
-Zinh=Script ereditato
-Zmth=Notazione matematica
-Zsym=Simboli
-Zxxx=Non scritto
-Zyyy=Script indeterminato
-Zzzz=Script non codificato
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=Emirati Arabi Uniti
-AF=Afghanistan
-AG=Antigua e Barbuda
-AI=Anguilla
-AL=Albania
-AM=Armenia
-AN=Antille Olandesi
-AO=Angola
-AQ=Antartide
-AR=Argentina
-AS=Samoa americane
-AT=Austria
-AU=Australia
-AW=Aruba
-AX=Isole Aland
-AZ=Azerbaigian
-BA=Bosnia-Erzegovina
-BB=Barbados
-BD=Bangladesh
-BE=Belgio
-BF=Burkina Faso
-BG=Bulgaria
-BH=Bahrain
-BI=Burundi
-BJ=Benin
-BL=Saint Barth\u00E9lemy
-BM=Bermuda
-BN=Brunei
-BO=Bolivia
-BQ=Bonaire, Sint Eustatius e Saba
-BR=Brasile
-BS=Bahamas
-BT=Bhutan
-BV=Isola di Bouvet
-BW=Botswana
-BY=Bielorussia
-BZ=Belize
-CA=Canada
-CC=Isole Cocos
-CD=Repubblica democratica del Congo
-CF=Repubblica Centrafricana
-CG=Congo
-CH=Svizzera
-CI=Costa d'Avorio
-CK=Isole Cook
-CL=Cile
-CM=Camerun
-CN=Cina
-CO=Colombia
-CR=Costa Rica
-CS=Serbia e Montenegro
-CU=Cuba
-CV=Capo Verde
-CW=Cura\u00E7ao
-CX=Isola di Natale
-CY=Cipro
-CZ=Repubblica Ceca
-DE=Germania
-DJ=Gibuti
-DK=Danimarca
-DM=Dominica
-DO=Repubblica Dominicana
-DZ=Algeria
-EC=Ecuador
-EE=Estonia
-EG=Egitto
-EH=Sahara Occidentale
-ER=Eritrea
-ES=Spagna
-ET=Etiopia
-FI=Finlandia
-FJ=Figi
-FK=Isole Falkland
-FM=Micronesia
-FO=Isole F\u00e6roer
-FR=Francia
-GA=Gabon
-GB=Regno Unito
-GD=Grenada
-GE=Georgia
-GF=Guayana Francese
-GG=Guernsey
-GH=Ghana
-GI=Gibilterra
-GL=Groenlandia
-GM=Gambia
-GN=Guinea
-GP=Guadalupa
-GQ=Guinea Equatoriale
-GR=Grecia
-GS=Georgia del sud e isole Sandwich meridionali
-GT=Guatemala
-GU=Guam
-GW=Guinea Bissau
-GY=Guyana
-HK=Hong Kong
-HM=Isole Heard e McDonald
-HN=Honduras
-HR=Croazia
-HT=Haiti
-HU=Ungheria
-ID=Indonesia
-IE=Irlanda
-IL=Israele
-IM=Isola di Man
-IN=India
-IO=Territorio britannico dell'Oceano Indiano
-IQ=Iraq
-IR=Iran
-IS=Islanda
-IT=Italia
-JE=Jersey
-JM=Giamaica
-JO=Giordania
-JP=Giappone
-KE=Kenya
-KG=Kirghizistan
-KH=Cambogia
-KI=Kiribati
-KM=Comore
-KN=Saint Kitts e Nevis
-KP=Corea del Nord
-KR=Corea del Sud
-KW=Kuwait
-KY=Isole Cayman
-KZ=Kazakhstan
-LA=Laos
-LB=Libano
-LC=Sainte Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Lituania
-LU=Lussemburgo
-LV=Lettonia
-LY=Libia
-MA=Marocco
-MC=Monaco
-MD=Moldavia
-ME=Montenegro
-MF=Saint Martin
-MG=Madagascar
-MH=Isole Marshall
-MK=Macedonia
-ML=Mali
-MM=Myanmar
-MN=Mongolia
-MO=Macao
-MP=Isole Marianne settentrionali
-MQ=Martinica
-MR=Mauritania
-MS=Montserrat
-MT=Malta
-MU=Maurizio
-MV=Maldive
-MW=Malawi
-MX=Messico
-MY=Malaysia
-MZ=Mozambico
-NA=Namibia
-NC=Nuova Caledonia
-NE=Niger
-NF=Isola Norfolk
-NG=Nigeria
-NI=Nicaragua
-NL=Paesi Bassi
-NO=Norvegia
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Nuova Zelanda
-OM=Oman
-PA=Panama
-PE=Per\u00f9
-PF=Polinesia Francese
-PG=Papua Nuova Guinea
-PH=Filippine
-PK=Pakistan
-PL=Polonia
-PM=Saint Pierre e Miquelon
-PN=Pitcairn
-PR=Puerto Rico
-PS=Palestina
-PT=Portogallo
-PW=Palau
-PY=Paraguay
-QA=Qatar
-RE=Reunion
-RO=Romania
-RS=Serbia
-RU=Russia
-RW=Ruanda
-SA=Arabia Saudita
-SB=Isole Solomon
-SC=Seychelles
-SD=Sudan
-SE=Svezia
-SG=Singapore
-SH=Sant'Elena
-SI=Slovenia
-SJ=Svalbard e Jan Mayen
-SK=Slovacchia
-SL=Sierra Leone
-SM=San Marino
-SN=Senegal
-SO=Somalia
-SR=Suriname
-ST=S\u00e3o Tom\u00e9 e Principe
-SV=El Salvador
-SX=Sint Maarten (parte olandese)
-SY=Siria
-SZ=Swaziland
-TC=Isole Turks e Caicos
-TD=Ciad
-TF=Territori Francesi d'Oltremare
-TG=Togo
-TH=Thailandia
-TJ=Tagikistan
-TK=Tokelau
-TL=Timor Leste
-TM=Turkmenistan
-TN=Tunisia
-TO=Tonga
-TR=Turchia
-TT=Trinidad e Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tanzania
-UA=Ucraina
-UG=Uganda
-UM=Isole minori lontane degli Stati Uniti
-US=Stati Uniti
-UY=Uruguay
-UZ=Uzbekistan
-VA=Citt\u00e0 del Vaticano
-VC=Saint Vincent e Grenadine
-VE=Venezuela
-VG=Isole Vergini (GB)
-VI=Isole Vergini (USA)
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis e Futuna
-WS=Samoa
-YE=Yemen
-YT=Mayotta
-ZA=Sudafrica
-ZM=Zambia
-ZW=Zimbabwe
-
-# territory names
-# key is UN M.49 country and area code
-
-001=Mondo
-002=Africa
-003=America del Nord
-005=America del Sud
-009=Oceania
-011=Africa occidentale
-013=America centrale
-014=Africa orientale
-015=Africa settentrionale
-017=Africa centrale
-018=Africa meridionale
-019=Americhe
-021=America settentrionale
-029=Caraibi
-030=Asia orientale
-034=Asia meridionale
-035=Asia sudorientale
-039=Europa meridionale
-053=Australia e Nuova Zelanda
-054=Melanesia
-057=Regione Micronesiana
-061=Polinesia
-142=Asia
-143=Asia centrale
-145=Asia occidentale
-150=Europa
-151=Europa orientale
-154=Europa settentrionale
-155=Europa occidentale
-419=America Latina e Caraibi
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_iw.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_iw.properties
deleted file mode 100755
index 062708d..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_iw.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-iw=\u05e2\u05d1\u05e8\u05d9\u05ea
-
-# country names
-# key is ISO 3166 country code
-
-IL=\u05d9\u05e9\u05e8\u05d0\u05dc
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ja.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ja.properties
deleted file mode 100755
index 0fe0402..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ja.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=\u30a2\u30d5\u30a1\u30fc\u30eb\u8a9e
-ab=\u30a2\u30d6\u30cf\u30ba\u8a9e
-ae=\u30a2\u30f4\u30a7\u30b9\u30bf\u8a9e
-af=\u30a2\u30d5\u30ea\u30ab\u30fc\u30f3\u30b9\u8a9e
-ak=\u30a2\u30ab\u30f3\u8a9e
-am=\u30a2\u30e0\u30cf\u30e9\u8a9e
-an=\u30a2\u30e9\u30b4\u30f3\u8a9e
-ar=\u30a2\u30e9\u30d3\u30a2\u8a9e
-as=\u30a2\u30c3\u30b5\u30e0\u8a9e
-av=\u30a2\u30f4\u30a1\u30eb\u8a9e
-ay=\u30a2\u30a4\u30de\u30e9\u8a9e
-az=\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3\u8a9e
-ba=\u30d0\u30b7\u30ad\u30fc\u30eb\u8a9e
-be=\u767d\u30ed\u30b7\u30a2\u8a9e
-bg=\u30d6\u30eb\u30ac\u30ea\u30a2\u8a9e
-bh=\u30d3\u30cf\u30fc\u30eb\u8a9e
-bi=\u30d3\u30b9\u30e9\u30de\u8a9e
-bm=\u30d0\u30f3\u30d0\u30e9\u8a9e
-bn=\u30d9\u30f3\u30ac\u30eb\u8a9e
-bo=\u30c1\u30d9\u30c3\u30c8\u8a9e
-br=\u30d6\u30eb\u30c8\u30f3\u8a9e
-bs=\u30dc\u30b9\u30cb\u30a2\u8a9e
-ca=\u30ab\u30bf\u30ed\u30cb\u30a2\u8a9e
-ce=\u30c1\u30a7\u30c1\u30a7\u30f3\u8a9e
-ch=\u30c1\u30e3\u30e2\u30ed\u8a9e
-co=\u30b3\u30eb\u30b7\u30ab\u8a9e
-cr=\u30af\u30ea\u30fc\u8a9e
-cs=\u30c1\u30a7\u30b3\u8a9e
-cu=\u6559\u4f1a\u30b9\u30e9\u30d6\u8a9e
-cv=\u30c1\u30e5\u30f4\u30a1\u30b7\u30e5\u8a9e
-cy=\u30a6\u30a7\u30fc\u30eb\u30ba\u8a9e
-da=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e
-de=\u30c9\u30a4\u30c4\u8a9e
-dv=\u30c7\u30a3\u30d9\u30d2\u8a9e
-dz=\u30d6\u30fc\u30bf\u30f3\u8a9e
-ee=\u30a8\u30a6\u30a7\u8a9e
-el=\u30ae\u30ea\u30b7\u30a2\u8a9e
-en=\u82f1\u8a9e
-eo=\u30a8\u30b9\u30da\u30e9\u30f3\u30c8\u8a9e
-es=\u30b9\u30da\u30a4\u30f3\u8a9e
-et=\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e
-eu=\u30d0\u30b9\u30af\u8a9e
-fa=\u30da\u30eb\u30b7\u30a2\u8a9e
-ff=\u30d5\u30e9\u8a9e
-fi=\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9\u8a9e
-fj=\u30d5\u30a3\u30b8\u30fc\u8a9e
-fo=\u30d5\u30a7\u30ed\u30fc\u8a9e
-fr=\u30d5\u30e9\u30f3\u30b9\u8a9e
-fy=\u30d5\u30ea\u30b8\u30a2\u8a9e
-ga=\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u8a9e
-gd=\u30b9\u30b3\u30c3\u30c8\u30e9\u30f3\u30c9\u30fb\u30b2\u30fc\u30eb\u8a9e
-gl=\u30ac\u30ea\u30b7\u30a2\u8a9e
-gn=\u30b0\u30ef\u30e9\u30cb\u8a9e
-gu=\u30b0\u30b8\u30e3\u30e9\u30fc\u30c8\u8a9e
-gv=\u30de\u30f3\u5cf6\u8a9e
-ha=\u30cf\u30a6\u30b5\u8a9e
-he=\u30d8\u30d6\u30e9\u30a4\u8a9e
-hi=\u30d2\u30f3\u30c7\u30a3\u30fc\u8a9e
-ho=\u30d2\u30ea\u30fb\u30e2\u30c4\u8a9e
-hr=\u30af\u30ed\u30a2\u30c1\u30a2\u8a9e
-ht=\u30cf\u30a4\u30c1\u8a9e
-hu=\u30cf\u30f3\u30ac\u30ea\u30fc\u8a9e
-hy=\u30a2\u30eb\u30e1\u30cb\u30a2\u8a9e
-hz=\u30d8\u30ec\u30ed\u8a9e
-ia=\u56fd\u969b\u8a9e
-id=\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u8a9e
-ie=\u56fd\u969b\u8a9e
-ig=\u30a4\u30dc\u8a9e
-ii=\u56db\u5ddd\u8a9e
-ik=\u30a4\u30cc\u30d4\u30a2\u30c3\u30af\u8a9e
-in=\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u8a9e
-io=\u30a4\u30c9\u8a9e
-is=\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9\u8a9e
-it=\u30a4\u30bf\u30ea\u30a2\u8a9e
-iu=\u30a4\u30cc\u30af\u30a6\u30c6\u30a3\u30c8\u30c3\u30c8\u8a9e
-iw=\u30d8\u30d6\u30e9\u30a4\u8a9e
-ja=\u65e5\u672c\u8a9e
-ji=\u30a4\u30c7\u30a3\u30c3\u30b7\u30e5\u8a9e
-jv=\u30b8\u30e3\u30ef\u8a9e
-ka=\u30b0\u30eb\u30b8\u30a2\u8a9e
-kg=\u30b3\u30f3\u30b4\u8a9e
-ki=\u30ad\u30af\u30e6\u8a9e
-kj=\u30af\u30a5\u30cb\u30e3\u30de\u8a9e
-kk=\u30ab\u30b6\u30d5\u8a9e
-kl=\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9\u8a9e
-km=\u30ab\u30f3\u30dc\u30b8\u30a2\u8a9e
-kn=\u30ab\u30f3\u30ca\u30c0\u8a9e
-ko=\u97d3\u56fd\u8a9e
-kr=\u30ab\u30cc\u30ea\u8a9e
-ks=\u30ab\u30b7\u30df\u30fc\u30eb\u8a9e
-ku=\u30af\u30eb\u30c9\u8a9e
-kv=\u30b3\u30df\u8a9e
-kw=\u30b3\u30fc\u30f3\u30a6\u30a9\u30fc\u30eb\u8a9e
-ky=\u30ad\u30eb\u30ae\u30b9\u8a9e
-la=\u30e9\u30c6\u30f3\u8a9e
-lb=\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af\u8a9e
-lg=\u30ac\u30f3\u30c0\u8a9e
-li=\u30ea\u30f3\u30d6\u30eb\u30b0\u8a9e
-ln=\u30ea\u30f3\u30ac\u30e9\u8a9e
-lo=\u30e9\u30aa\u8a9e
-lt=\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e
-lu=\u30eb\u30d0\u8a9e
-lv=\u30e9\u30c8\u30d3\u30a2\u8a9e (\u30ec\u30c3\u30c8\u8a9e)
-mg=\u30de\u30e9\u30ac\u30b7\u30fc\u8a9e
-mh=\u30de\u30fc\u30b7\u30e3\u30eb\u8a9e
-mi=\u30de\u30aa\u30ea\u8a9e
-mk=\u30de\u30b1\u30c9\u30cb\u30a2\u8a9e
-ml=\u30de\u30e9\u30e4\u30fc\u30e9\u30e0\u8a9e
-mn=\u30e2\u30f3\u30b4\u30eb\u8a9e
-mo=\u30e2\u30eb\u30c0\u30d3\u30a2\u8a9e
-mr=\u30de\u30e9\u30fc\u30c6\u30a3\u30fc\u8a9e
-ms=\u30de\u30e9\u30a4\u8a9e
-mt=\u30de\u30eb\u30bf\u8a9e
-my=\u30d3\u30eb\u30de\u8a9e
-na=\u30ca\u30a6\u30eb\u8a9e
-nb=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e (\u30dc\u30fc\u30af\u30e2\u30fc\u30eb)
-nd=\u5317\u30f3\u30c7\u30d9\u30ec\u8a9e
-ne=\u30cd\u30d1\u30fc\u30eb\u8a9e
-ng=\u30f3\u30c9\u30f3\u30ac\u8a9e
-nl=\u30aa\u30e9\u30f3\u30c0\u8a9e
-nn=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e (\u30cb\u30e5\u30fc\u30ce\u30eb\u30b9\u30af)
-no=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e
-nr=\u5357\u30f3\u30c7\u30d9\u30ec\u8a9e
-nv=\u30ca\u30d0\u30db\u8a9e
-ny=\u30cb\u30e3\u30f3\u30b8\u30e3\u8a9e
-oc=\u30d7\u30ed\u30d0\u30f3\u30b9\u8a9e
-oj=\u30aa\u30b8\u30d6\u30ef\u8a9e
-om=\u30ac\u30e9\u8a9e
-or=\u30aa\u30ea\u30e4\u30fc\u8a9e
-os=\u30aa\u30bb\u30c1\u30a2\u8a9e
-pa=\u30d1\u30f3\u30b8\u30e3\u30d6\u8a9e
-pi=\u30d1\u30fc\u30ea\u8a9e
-pl=\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e
-ps=\u30d1\u30b7\u30e5\u30c8\u30fc\u8a9e
-pt=\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e
-qu=\u30b1\u30c1\u30e5\u30a2\u8a9e
-rm=\u30ec\u30c8\uff1d\u30ed\u30de\u30f3\u8a9e
-rn=\u30eb\u30f3\u30b8\u8a9e
-ro=\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e
-ru=\u30ed\u30b7\u30a2\u8a9e
-rw=\u30eb\u30ef\u30f3\u30c0\u8a9e
-sa=\u30b5\u30f3\u30b9\u30af\u30ea\u30c3\u30c8\u8a9e
-sc=\u30b5\u30eb\u30c7\u30a3\u30cb\u30a2\u8a9e
-sd=\u30b7\u30f3\u30c9\u8a9e
-se=\u5317\u30b5\u30df\u8a9e
-sg=\u30b5\u30f3\u30b4\u8a9e
-si=\u30b7\u30f3\u30cf\u30e9\u8a9e
-sk=\u30b9\u30ed\u30d0\u30ad\u30a2\u8a9e
-sl=\u30b9\u30ed\u30d9\u30cb\u30a2\u8a9e
-sm=\u30b5\u30e2\u30a2\u8a9e
-sn=\u30b7\u30e7\u30ca\u8a9e
-so=\u30bd\u30de\u30ea\u8a9e
-sq=\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e
-sr=\u30bb\u30eb\u30d3\u30a2\u8a9e
-ss=\u30b7\u30b9\u30ef\u30c6\u30a3\u8a9e
-st=\u30bb\u30bd\u30c8\u8a9e
-su=\u30b9\u30f3\u30c0\u8a9e
-sv=\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u8a9e
-sw=\u30b9\u30ef\u30d2\u30ea\u8a9e
-ta=\u30bf\u30df\u30fc\u30eb\u8a9e
-te=\u30c6\u30eb\u30b0\u8a9e
-tg=\u30bf\u30b8\u30af\u8a9e
-th=\u30bf\u30a4\u8a9e
-ti=\u30c6\u30a3\u30b0\u30ea\u30cb\u30a2\u8a9e
-tk=\u30c8\u30eb\u30af\u30e1\u30f3\u8a9e
-tl=\u30bf\u30ac\u30ed\u30b0\u8a9e
-tn=\u30c4\u30ef\u30ca\u8a9e
-to=\u30c8\u30f3\u30ac\u8a9e
-tr=\u30c8\u30eb\u30b3\u8a9e
-ts=\u30c4\u30a9\u30f3\u30ac\u8a9e
-tt=\u30bf\u30bf\u30fc\u30eb\u8a9e
-tw=\u30c8\u30a5\u30a4\u8a9e
-ty=\u30bf\u30d2\u30c1\u8a9e
-ug=\u30a6\u30a4\u30b0\u30eb\u8a9e
-uk=\u30a6\u30af\u30e9\u30a4\u30ca\u8a9e
-ur=\u30a6\u30eb\u30c9\u30a5\u30fc\u8a9e
-uz=\u30a6\u30ba\u30d9\u30af\u8a9e
-ve=\u30d9\u30f3\u30c0\u8a9e
-vi=\u30d9\u30c8\u30ca\u30e0\u8a9e
-vo=\u30dc\u30e9\u30d4\u30e5\u30af\u8a9e
-wa=\u30ef\u30ed\u30f3\u8a9e
-wo=\u30a6\u30a9\u30ed\u30d5\u8a9e
-xh=\u30b3\u30b5\u8a9e
-yi=\u30a4\u30c7\u30a3\u30c3\u30b7\u30e5\u8a9e
-yo=\u30e8\u30eb\u30d0\u8a9e
-za=\u30c1\u30ef\u30f3\u8a9e
-zh=\u4e2d\u56fd\u8a9e
-zu=\u30ba\u30fc\u30eb\u30fc\u8a9e
-
-# key is ISO 639.2 language code
-aar=\u30A2\u30D5\u30A1\u30EB\u8A9E
-abk=\u30A2\u30D6\u30CF\u30FC\u30BA\u8A9E
-ace=\u30A2\u30C1\u30A7\u30FC\u8A9E
-ach=\u30A2\u30C1\u30E7\u30EA\u8A9E
-ada=\u30A2\u30C0\u30F3\u30B0\u30E1\u8A9E
-ady=\u30A2\u30C7\u30A3\u30B2\u8A9E
-afa=\u30A2\u30D5\u30AC\u30CB\u30FC (1927-2002)
-afh=\u30A2\u30D5\u30EA\u30D2\u30EA\u8A9E
-afr=\u30A2\u30D5\u30EA\u30AB\u30FC\u30F3\u30B9\u8A9E
-ain=\u30A2\u30A4\u30CC\u8A9E
-aka=\u30A2\u30AB\u30F3\u8A9E
-akk=\u30A2\u30C3\u30AB\u30C9\u8A9E
-alb=\u30A2\u30EB\u30D0\u30CB\u30A2\u8A9E
-ale=\u30A2\u30EC\u30A6\u30C8\u8A9E
-alg=\u30A2\u30EB\u30B4\u30F3\u30AD\u30A2\u30F3\u8A9E\u65CF
-alt=\u5357\u30A2\u30EB\u30BF\u30A4\u8A9E
-amh=\u30A2\u30E0\u30CF\u30E9\u8A9E
-ang=\u30AA\u30E9\u30F3\u30C0\u9818\u30A2\u30F3\u30C6\u30A3\u30EB \u30AE\u30EB\u30C0\u30FC
-anp=\u30A2\u30F3\u30AE\u30AB\u8A9E
-apa=\u30A2\u30D1\u30C3\u30C1\u8A9E\u65CF
-ara=\u30A2\u30EB\u30BC\u30F3\u30C1\u30F3 \u30A2\u30A5\u30B9\u30C8\u30E9\u30FC\u30EB
-arc=\u30A2\u30E9\u30E0\u8A9E
-arg=\u30A2\u30E9\u30B4\u30F3\u8A9E
-arm=\u30A2\u30EB\u30E1\u30CB\u30A2\u8A9E
-arn=\u30A2\u30E9\u30A6\u30AB\u30F3\u8A9E
-arp=\u30A2\u30EB\u30BC\u30F3\u30C1\u30F3 \u30DA\u30BD (1983-1985)
-art=\u4EBA\u5DE5\u8AF8\u8A9E
-arw=\u30A2\u30E9\u30EF\u30AF\u8A9E
-asm=\u30A2\u30C3\u30B5\u30E0\u8A9E
-ast=\u30A2\u30B9\u30C8\u30A5\u30EA\u30A2\u30B9\u8A9E
-ath=\u30A2\u30B5\u30D1\u30B9\u30AB\u30F3\u8A9E\u65CF
-aus=\u30AA\u30FC\u30B9\u30C8\u30E9\u30EA\u30A2\u8A9E\u65CF
-ava=\u30A2\u30F4\u30A1\u30EB\u8A9E
-ave=\u30A2\u30F4\u30A7\u30B9\u30BF\u8A9E
-awa=\u30A2\u30EF\u30C7\u30A3\u30FC\u8A9E
-aym=\u30A2\u30A4\u30DE\u30E9\u8A9E
-aze=\u30A2\u30BC\u30EB\u30D0\u30A4\u30B8\u30E3\u30F3\u8A9E
-bad=\u30DC\u30B9\u30CB\u30A2 \u30C7\u30A3\u30CA\u30FC\u30EB
-bai=\u30D0\u30DF\u30EC\u30B1\u8A9E\u65CF
-bak=\u30D0\u30B7\u30AD\u30FC\u30EB\u8A9E
-bal=\u30D0\u30EB\u30FC\u30C1\u30FC\u8A9E
-bam=\u30DC\u30B9\u30CB\u30A2 \u30DE\u30EB\u30AF (BAM)
-ban=\u30D0\u30EA\u8A9E
-baq=\u30D0\u30B9\u30AF\u8A9E
-bas=\u30D0\u30B5\u8A9E
-bat=\u30D0\u30EB\u30C8\u8AF8\u8A9E
-bej=\u30D9\u30B8\u30E3\u8A9E
-bel=\u30D9\u30EB\u30AE\u30FC \u30D5\u30E9\u30F3 (BEL)
-bem=\u30D9\u30F3\u30D0\u8A9E
-ben=\u30D9\u30F3\u30AC\u30EB\u8A9E
-ber=\u30D9\u30EB\u30D9\u30EB\u8AF8\u8A9E
-bho=\u30DC\u30FC\u30B8\u30D7\u30EA\u30FC\u8A9E
-bih=\u30D3\u30CF\u30FC\u30EB\u8A9E
-bik=\u30D3\u30B3\u30EB\u8A9E
-bin=\u30D3\u30CB\u8A9E
-bis=\u30D3\u30B9\u30E9\u30DE\u8A9E
-bla=\u30B7\u30AF\u30B7\u30AB\u8A9E
-bnt=\u30D0\u30F3\u30C8\u30A5\u8AF8\u8A9E
-bos=\u30DC\u30B9\u30CB\u30A2\u8A9E
-bra=\u30D6\u30E9\u30B8\u8A9E
-bre=\u30D6\u30E9\u30B8\u30EB \u30AF\u30EB\u30BC\u30A4\u30ED (1990-1993)
-btk=\u30D0\u30BF\u30AF\u8A9E
-bua=\u30D6\u30EA\u30E4\u30FC\u30C8\u8A9E
-bug=\u30D6\u30AE\u8A9E
-bul=\u30D6\u30EB\u30AC\u30EA\u30A2\u8A9E
-bur=\u30D3\u30EB\u30DE\u8A9E
-byn=\u30D3\u30EA\u30F3\u8A9E
-cad=\u30AB\u30CA\u30C0 \u30C9\u30EB
-cai=\u4E2D\u7C73\u30A4\u30F3\u30C7\u30A3\u30A2\u30F3\u8AF8\u8A9E
-car=\u30AB\u30EA\u30D6\u8A9E
-cat=\u30AB\u30BF\u30ED\u30CB\u30A2\u8A9E
-cau=\u30B3\u30FC\u30AB\u30B5\u30B9\u8AF8\u8A9E
-ceb=\u30BB\u30D6\u30A2\u30CE\u8A9E
-cel=\u30B1\u30EB\u30C8\u8AF8\u8A9E
-cha=\u30C1\u30E3\u30E2\u30ED\u8A9E
-chb=\u30C1\u30D6\u30C1\u30E3\u8A9E
-che=\u30C1\u30A7\u30C1\u30A7\u30F3\u8A9E
-chg=\u30C1\u30E3\u30AC\u30BF\u30A4\u8A9E
-chi=\u4E2D\u56FD\u8A9E
-chk=\u30C1\u30E5\u30FC\u30AF\u8A9E
-chm=\u30DE\u30EA\u8A9E
-chn=\u30D3\u30FC\u30C1\u30FB\u30E9\u30FB\u30DE\u30FC \u7B49
-cho=\u30C1\u30E7\u30AF\u30C8\u30FC\u8A9E
-chp=\u30C1\u30DA\u30EF\u30A4\u30A2\u30F3\u8A9E
-chr=\u30C1\u30A7\u30ED\u30AD\u30FC\u8A9E
-chu=\u6559\u4F1A\u30B9\u30E9\u30D6\u8A9E
-chv=\u30C1\u30E5\u30F4\u30A1\u30B7\u30E5\u8A9E
-chy=\u30B7\u30E3\u30A4\u30A2\u30F3\u8A9E
-cmc=\u30C1\u30E3\u30E0\u8A9E\u65CF
-cop=\u30B3\u30ED\u30F3\u30D3\u30A2 \u30DA\u30BD
-cor=\u30B3\u30FC\u30F3\u30A6\u30A9\u30FC\u30EB\u8A9E
-cos=\u30B3\u30EB\u30B7\u30AB\u8A9E
-cpe=\u82F1\u8A9E\u304C\u57FA\u76E4\u306E\u6DF7\u6210\u8A9E\u30FB\u6DF7\u5408\u8A9E
-cpf=\u30D5\u30E9\u30F3\u30B9\u8A9E\u304C\u57FA\u76E4\u306E\u6DF7\u6210\u8A9E\u30FB\u6DF7\u5408\u8A9E
-cpp=\u30DD\u30EB\u30C8\u30AC\u30EB\u8A9E\u304C\u57FA\u76E4\u306E\u6DF7\u6210\u8A9E\u30FB\u6DF7\u5408\u8A9E
-cre=\u30AF\u30EA\u30FC\u8A9E
-crh=\u30AF\u30EA\u30DF\u30A2\u30FB\u30BF\u30BF\u30FC\u30EB\u8A9E
-crp=\u305D\u306E\u4ED6\u306E\u6DF7\u6210\u8A9E\u30FB\u6DF7\u5408\u8A9E
-csb=\u30AB\u30B7\u30E5\u30FC\u30D6\u8A9E
-cus=\u30AF\u30B7\u30E5\u8AF8\u8A9E
-cze=\u30C1\u30A7\u30B3\u8A9E
-dak=\u30C0\u30B3\u30BF\u8A9E
-dan=\u30C7\u30F3\u30DE\u30FC\u30AF\u8A9E
-dar=\u30C0\u30EB\u30AC\u30F3\u8A9E
-day=\u30C0\u30E4\u30AF\u8A9E
-del=\u30C7\u30E9\u30A6\u30A7\u30A2\u8A9E
-den=\u30B9\u30EC\u30A4\u30D3\u30FC\u8A9E
-dgr=\u30C9\u30B0\u30EA\u30D6\u8A9E
-din=\u30C7\u30A3\u30F3\u30AB\u8A9E
-div=\u30C7\u30A3\u30D9\u30D2\u8A9E
-doi=\u30C9\u30B0\u30EA\u8A9E
-dra=\u30C9\u30E9\u30F4\u30A3\u30C0\u8AF8\u8A9E
-dsb=\u4F4E\u30BD\u30EB\u30D3\u30A2\u8A9E
-dua=\u30C9\u30A5\u30A2\u30E9\u8A9E
-dum=\u4E2D\u4E16\u30AA\u30E9\u30F3\u30C0\u8A9E
-dut=\u30AA\u30E9\u30F3\u30C0\u8A9E
-dyu=\u30C7\u30A5\u30A6\u30E9\u8A9E
-dzo=\u30BE\u30F3\u30AB\u8A9E
-efi=\u30A8\u30D5\u30A3\u30C3\u30AF\u8A9E
-egy=\u53E4\u4EE3\u30A8\u30B8\u30D7\u30C8\u8A9E
-eka=\u30A8\u30AB\u30B8\u30E5\u30AF\u8A9E
-elx=\u30A8\u30E9\u30E0\u8A9E
-eng=\u82F1\u8A9E
-enm=\u4E2D\u4E16\u82F1\u8A9E
-epo=\u30A8\u30B9\u30DA\u30E9\u30F3\u30C8\u8A9E
-est=\u30A8\u30B9\u30C8\u30CB\u30A2\u8A9E
-ewe=\u30A8\u30A6\u30A7\u8A9E
-ewo=\u30A8\u30A6\u30A9\u30F3\u30C9\u8A9E
-fan=\u30D5\u30A1\u30F3\u30B0\u8A9E
-fao=\u30D5\u30A7\u30ED\u30FC\u8A9E
-fat=\u30D5\u30A1\u30F3\u30C6\u30A3\u30FC\u8A9E
-fij=\u30D5\u30A3\u30B8\u30FC\u8A9E
-fil=\u30D5\u30A3\u30EA\u30D4\u30CE\u8A9E
-fin=\u30D5\u30A3\u30F3\u30E9\u30F3\u30C9\u8A9E
-fiu=\u30D5\u30A3\u30F3\u30FB\u30A6\u30B4\u30EB\u8AF8\u8A9E
-fon=\u30D5\u30A9\u30F3\u8A9E
-fre=\u30D5\u30E9\u30F3\u30B9\u8A9E
-frm=\u4E2D\u671F\u30D5\u30E9\u30F3\u30B9\u8A9E
-fro=\u53E4\u30D5\u30E9\u30F3\u30B9\u8A9E
-frr=\u5317\u30D5\u30EA\u30B8\u30A2\u8A9E
-frs=\u6771\u30D5\u30EA\u30B8\u30A2\u8A9E
-fry=\u897F\u30D5\u30EA\u30B8\u30A2\u8A9E
-ful=\u30D5\u30E9\u8A9E
-fur=\u30D5\u30EA\u30A6\u30EA\u8A9E
-gaa=\u30AC\u8A9E
-gay=\u30AC\u30E8\u8A9E
-gba=\u30D0\u30E4\u8A9E
-gem=\u30B2\u30EB\u30DE\u30F3\u8AF8\u8A9E
-geo=\u30B0\u30EB\u30B8\u30A2\u8A9E
-ger=\u30C9\u30A4\u30C4\u8A9E
-gez=\u30B2\u30A8\u30BA\u8A9E
-gil=\u30AD\u30EA\u30D0\u30B9\u8A9E
-gla=\u30B2\u30FC\u30EB\u8A9E
-gle=\u30A2\u30A4\u30EB\u30E9\u30F3\u30C9\u8A9E
-glg=\u30AC\u30EA\u30B7\u30A2\u8A9E
-glv=\u30DE\u30F3\u5CF6\u8A9E
-gmh=\u4E2D\u9AD8\u30C9\u30A4\u30C4\u8A9E
-goh=\u53E4\u9AD8\u30C9\u30A4\u30C4\u8A9E
-gon=\u30B4\u30FC\u30F3\u30C7\u30A3\u30FC\u8A9E
-gor=\u30B4\u30ED\u30F3\u30BF\u30ED\u8A9E
-got=\u30B4\u30FC\u30C8\u8A9E
-grb=\u30B0\u30EC\u30DC\u8A9E
-grc=\u53E4\u4EE3\u30AE\u30EA\u30B7\u30E3\u8A9E
-gre=\u73FE\u4EE3\u30AE\u30EA\u30B7\u30E3\u8A9E(1453-)
-grn=\u30B0\u30A2\u30E9\u30CB\u30FC\u8A9E
-gsw=\u30B9\u30A4\u30B9\u30C9\u30A4\u30C4\u8A9E\uFF08\u30B9\u30A4\u30B9\uFF09
-guj=\u30B0\u30B8\u30E3\u30E9\u30C8\u8A9E
-gwi=\u30B0\u30A6\u30A3\u30C3\u30C1\u30F3\u8A9E
-hai=\u30CF\u30A4\u30C0\u8A9E
-hat=\u30CF\u30A4\u30C1\u8A9E
-hau=\u30CF\u30A6\u30B5\u8A9E
-haw=\u30CF\u30EF\u30A4\u8A9E
-heb=\u30D8\u30D6\u30E9\u30A4\u8A9E
-her=\u30D8\u30EC\u30ED\u8A9E
-hil=\u30D2\u30EA\u30AC\u30A4\u30CE\u30F3\u8A9E
-him=\u30D2\u30DE\u30C1\u30E3\u30EB\u8A9E
-hin=\u30D2\u30F3\u30C7\u30A3\u30FC\u8A9E
-hit=\u30D2\u30C3\u30BF\u30A4\u30C8\u8A9E
-hmn=\u30D5\u30E2\u30F3\u8A9E
-hmo=\u30D2\u30EA\u30E2\u30C8\u30A5\u8A9E
-hrv=\u30AF\u30ED\u30A2\u30C1\u30A2\u8A9E
-hsb=\u4E0A\u30BD\u30EB\u30D3\u30A2\u8A9E
-hun=\u30CF\u30F3\u30AC\u30EA\u30FC\u8A9E
-hup=\u30A2\u30BF\u30D1\u30B9\u30AB\u8A9E
-iba=\u30A4\u30D0\u30F3\u8A9E
-ibo=\u30A4\u30DC\u8A9E
-ice=\u30A2\u30A4\u30B9\u30E9\u30F3\u30C9\u8A9E
-ido=\u30A4\u30C9\u8A9E
-iii=\u56DB\u5DDD\u30A4(\u5F5D)\u8A9E
-ijo=\u30A4\u30B8\u30E7\u30FC\u8A9E
-iku=\u30A4\u30CC\u30AF\u30A6\u30C6\u30A3\u30C8\u30C3\u30C8\u8A9E
-ile=\u30A4\u30F3\u30BF\u30FC\u30EA\u30F3\u30B0
-ilo=\u30A4\u30ED\u30AB\u30CE\u8A9E
-ina=\u30A4\u30F3\u30BF\u30FC\u30EA\u30F3\u30B0\u30A2\u8A9E(\u56FD\u969B\u88DC\u52A9\u8A9E\u5354\u4F1A)
-inc=\u30A4\u30F3\u30C9\u8AF8\u8A9E
-ind=\u30A4\u30F3\u30C9\u30CD\u30B7\u30A2\u8A9E
-ine=\u5370\u6B27\u8AF8\u8A9E
-inh=\u30A4\u30F3\u30B0\u30B7\u8A9E
-ipk=\u30A4\u30CC\u30D4\u30A2\u30C3\u30AF\u8A9E
-ira=\u30A4\u30E9\u30F3\u8A9E
-iro=\u30A4\u30ED\u30B3\u30A4\u8A9E\u65CF
-ita=\u30A4\u30BF\u30EA\u30A2\u8A9E
-jav=\u30B8\u30E3\u30EF\u8A9E
-jbo=\u30ED\u30B8\u30D0\u30F3\u8A9E
-jpn=\u65E5\u672C\u8A9E
-jpr=\u30E6\u30C0\u30E4\u30FB\u30DA\u30EB\u30B7\u30A2\u8A9E
-jrb=\u30E6\u30C0\u30E4\u30FB\u30A2\u30E9\u30D3\u30A2\u8A9E
-kaa=\u30AB\u30E9\u30FB\u30AB\u30EB\u30D1\u30AF\u8A9E
-kab=\u30AB\u30D3\u30EB\u8A9E
-kac=\u30AB\u30C1\u30F3\u8A9E
-kal=\u30AB\u30E9\u30A2\u30EA\u30B9\u8A9E
-kam=\u30AB\u30F3\u30D0\u8A9E
-kan=\u30AB\u30F3\u30CA\u30C0\u8A9E
-kar=\u30AB\u30EC\u30F3\u8A9E
-kas=\u30AB\u30B7\u30DF\u30FC\u30EB\u8A9E
-kau=\u30AB\u30CC\u30EA\u8A9E
-kaw=\u30AB\u30A6\u30A3\u8A9E
-kaz=\u30AB\u30B6\u30D5\u8A9E
-kbd=\u30AB\u30D0\u30EB\u30C9\u8A9E
-kha=\u30AB\u30B7\u8A9E
-khi=\u30B3\u30A4\u30B5\u30F3\u8AF8\u8A9E
-khm=\u4E2D\u592E\u30AF\u30E1\u30FC\u30EB\u8A9E
-kho=\u30B3\u30FC\u30BF\u30F3\u8A9E
-kik=\u30AD\u30AF\u30E6\u8A9E
-kin=\u30AD\u30CB\u30E4\u30EB\u30EF\u30F3\u30C0\u8A9E
-kir=\u30AD\u30EB\u30AE\u30B9\u8A9E
-kmb=\u30AD\u30F3\u30D6\u30F3\u30C9\u30A5\u8A9E
-kok=\u30B3\u30F3\u30AB\u30CB\u8A9E
-kom=\u30B3\u30DF\u8A9E
-kon=\u30B3\u30F3\u30B4\u8A9E
-kor=\u97D3\u56FD\u8A9E
-kos=\u30B3\u30B7\u30E3\u30A8\u8A9E
-kpe=\u30AF\u30DA\u30EC\u8A9E
-krc=\u30AB\u30E9\u30C1\u30E3\u30A4\u8A9E
-krl=\u30AB\u30EC\u30EA\u30A2\u8A9E
-kro=\u30AF\u30EB\u30FC\u8A9E
-kru=\u30AF\u30EB\u30AF\u8A9E
-kua=\u30AF\u30A2\u30CB\u30E3\u30DE\u8A9E
-kum=\u30AF\u30E0\u30AF\u8A9E
-kur=\u30AF\u30EB\u30C9\u8A9E
-kut=\u30AF\u30C6\u30CA\u30A4\u8A9E
-lad=\u30E9\u30B8\u30CE\u8A9E
-lah=\u30E9\u30D5\u30F3\u30C0\u30FC\u8A9E
-lam=\u30E9\u30F3\u30D0\u8A9E
-lao=\u30E9\u30AA\u8A9E
-lat=\u30E9\u30C6\u30F3\u8A9E
-lav=\u30E9\u30C8\u30D3\u30A2\u8A9E
-lez=\u30EC\u30BA\u30AE\u8A9E
-lim=\u30EA\u30F3\u30D6\u30EB\u30D5\u8A9E
-lin=\u30EA\u30F3\u30AC\u30E9\u8A9E
-lit=\u30EA\u30C8\u30A2\u30CB\u30A2\u8A9E
-lol=\u30E2\u30F3\u30B4\u8A9E
-loz=\u30ED\u30BA\u30A3\u8A9E
-ltz=\u30EB\u30AF\u30BB\u30F3\u30D6\u30EB\u30B0\u8A9E
-lua=\u30EB\u30D0\u30FB\u30EB\u30EB\u30A2\u8A9E
-lub=\u30EB\u30D0\u30FB\u30AB\u30BF\u30F3\u30AC\u8A9E
-lug=\u30AC\u30F3\u30C0\u8A9E
-lui=\u30EB\u30A4\u30BB\u30FC\u30CB\u30E7\u8A9E
-lun=\u30EB\u30F3\u30C0\u8A9E
-luo=\u30EB\u30AA\u8A9E
-lus=\u30EB\u30B7\u30E3\u30A4\u8A9E
-mac=\u30DE\u30B1\u30C9\u30CB\u30A2\u8A9E
-mad=\u30E2\u30ED\u30C3\u30B3 \u30C7\u30A3\u30EB\u30CF\u30E0
-mag=\u30DE\u30AC\u30D2\u30FC\u8A9E
-mah=\u30DE\u30FC\u30B7\u30E3\u30EB\u8A9E
-mai=\u30DE\u30A4\u30C6\u30A3\u30EA\u30FC\u8A9E
-mak=\u30DE\u30AB\u30C3\u30B5\u30EB\u8A9E
-mal=\u30DE\u30E9\u30E4\u30FC\u30E9\u30E0\u8A9E
-man=\u30DE\u30F3\u30C7\u30A3\u30F3\u30B4\u8A9E
-mao=\u30DE\u30AA\u30EA\u8A9E
-map=\u30AA\u30FC\u30B9\u30C8\u30ED\u30CD\u30B7\u30A2\u8AF8\u8A9E
-mar=\u30DE\u30E9\u30C6\u30A3\u30FC\u8A9E
-mas=\u30DE\u30B5\u30A4\u8A9E
-may=\u30DE\u30EC\u30FC\u8A9E
-mdf=\u30E2\u30AF\u30B7\u30E3\u8A9E
-mdr=\u30DE\u30F3\u30C0\u30EB\u8A9E
-men=\u30E1\u30F3\u30C7\u8A9E
-mga=\u30DE\u30C0\u30AC\u30B9\u30AB\u30EB \u30A2\u30EA\u30A2\u30EA
-mic=\u30DF\u30AF\u30DE\u30AF\u8A9E
-min=\u30DF\u30CA\u30F3\u30AB\u30D0\u30A6\u8A9E
-mis=\u305D\u306E\u4ED6\u306E\u8A00\u8A9E
-mkh=\u30E2\u30F3\u30FB\u30AF\u30E1\u30FC\u30EB\u8AF8\u8A9E
-mlg=\u30DE\u30C0\u30AC\u30B9\u30AB\u30EB\u8A9E
-mlt=\u30DE\u30EB\u30BF\u8A9E
-mnc=\u6E80\u5DDE\u8A9E
-mni=\u30DE\u30CB\u30D7\u30EB\u8A9E
-mno=\u30DE\u30CE\u30DC\u8A9E\u65CF
-moh=\u30E2\u30FC\u30DB\u30FC\u30AF\u8A9E
-mon=\u30E2\u30F3\u30B4\u30EB\u8A9E
-mos=\u30E2\u30B7\u8A9E
-mul=\u8907\u6570\u8A00\u8A9E
-mun=\u30E0\u30F3\u30C0\u8A9E\u65CF
-mus=\u30AF\u30EA\u30FC\u30AF\u8A9E
-mwl=\u30DF\u30E9\u30F3\u30C0\u8A9E
-mwr=\u30DE\u30FC\u30EB\u30EF\u30FC\u30EA\u30FC\u8A9E
-myn=\u30DE\u30E4\u8A9E\u65CF
-myv=\u30A8\u30EB\u30B8\u30E3\u8A9E
-nah=\u30CA\u30EF\u30C8\u30EB\u8A9E
-nai=\u5317\u7C73\u30A4\u30F3\u30C7\u30A3\u30A2\u30F3\u8AF8\u8A9E
-nap=\u30CA\u30DD\u30EA\u8A9E
-nau=\u30CA\u30A6\u30EB\u8A9E
-nav=\u30CA\u30D0\u30DB\u8A9E
-nbl=\u5357\u30F3\u30C7\u30D9\u30EC\u8A9E
-nde=\u5317\u30F3\u30C7\u30D9\u30EC\u8A9E
-ndo=\u30F3\u30C9\u30F3\u30AC\u8A9E
-nds=\u4F4E\u5730\u30C9\u30A4\u30C4\u8A9E\u3001\u4F4E\u5730\u30B5\u30AF\u30BD\u30F3\u8A9E
-nep=\u30CD\u30D1\u30FC\u30EB\u8A9E
-new=\u30CD\u30EF\u30FC\u30EB\u8A9E
-nia=\u30CB\u30A2\u30B9\u8A9E
-nic=\u30CB\u30AB\u30E9\u30B0\u30A2 \u30B3\u30EB\u30C9\u30D0
-niu=\u30CB\u30A6\u30FC\u30A8\u30A4\u8A9E
-nno=\u30CE\u30EB\u30A6\u30A7\u30FC\u8A9E(\u30CB\u30FC\u30CE\u30B7\u30AF)
-nob=\u30CE\u30EB\u30A6\u30A7\u30FC\u8A9E(\u30D6\u30FC\u30AF\u30E2\u30FC\u30EB)
-nog=\u30CE\u30AC\u30A4\u8A9E
-non=\u53E4\u30CE\u30EB\u30C9\u8A9E
-nor=\u30CE\u30EB\u30A6\u30A7\u30FC\u8A9E
-nqo=\u30F3\u30B3\u8A9E
-nso=\u5317\u90E8\u30BD\u30C8\u8A9E
-nub=\u30CC\u30D3\u30A2\u8A9E\u65CF
-nwc=\u53E4\u5178\u30CD\u30EF\u30FC\u30EB\u8A9E
-nya=\u30C1\u30C1\u30A7\u30EF\u8A9E
-nym=\u30CB\u30E3\u30E0\u30A6\u30A7\u30B8\u8A9E
-nyn=\u30CB\u30E3\u30F3\u30B3\u30EC\u8A9E
-nyo=\u30CB\u30E7\u30ED\u8A9E
-nzi=\u30F3\u30BC\u30DE\u8A9E
-oci=\u30AA\u30C3\u30AF\u8A9E(1500\u4EE5\u5F8C)
-oji=\u30AA\u30B8\u30D6\u30EF\u8A9E
-ori=\u30AA\u30EA\u30E4\u30FC\u8A9E
-orm=\u30AA\u30ED\u30E2\u8A9E
-osa=\u30AA\u30BB\u30FC\u30B8\u8A9E
-oss=\u30AA\u30BB\u30C3\u30C8\u8A9E
-ota=\u30AA\u30B9\u30DE\u30F3\u30C8\u30EB\u30B3\u8A9E
-oto=\u30AA\u30C8\u30DF\u8A9E\u65CF
-paa=\u30D1\u30D7\u30A2\u8AF8\u8A9E
-pag=\u30D1\u30F3\u30AC\u30B7\u30CA\u30F3\u8A9E
-pal=\u30D1\u30D5\u30E9\u30F4\u30A3\u8A9E
-pam=\u30D1\u30F3\u30D1\u30F3\u30AC\u8A9E
-pan=\u30D1\u30F3\u30B8\u30E3\u30D6\u8A9E
-pap=\u30D1\u30D4\u30A2\u30E1\u30F3\u30C8\u8A9E
-pau=\u30D1\u30E9\u30AA\u8A9E
-peo=\u53E4\u4EE3\u30DA\u30EB\u30B7\u30A2\u8A9E
-per=\u30DA\u30EB\u30B7\u30A2\u8A9E
-phi=\u30D5\u30A3\u30EA\u30D4\u30F3\u8AF8\u8A9E
-phn=\u30D5\u30A7\u30CB\u30AD\u30A2\u8A9E
-pli=\u30D1\u30FC\u30EA\u8A9E
-pol=\u30DD\u30FC\u30E9\u30F3\u30C9\u8A9E
-pon=\u30DD\u30F3\u30DA\u30A4\u8A9E
-por=\u30DD\u30EB\u30C8\u30AC\u30EB\u8A9E
-pra=\u30D7\u30E9\u30FC\u30AF\u30EA\u30C3\u30C8\u8A9E\u65CF
-pro=\u53E4\u671F\u30D7\u30ED\u30D0\u30F3\u30B9\u8A9E
-pus=\u30D7\u30B7\u30E5\u30C8\u30A5\u30FC\u8A9E\u3001\u30D1\u30B7\u30E5\u30C8\u30A5\u30FC\u8A9E
-que=\u30B1\u30C1\u30E5\u30A2\u8A9E
-raj=\u30E9\u30FC\u30B8\u30E3\u30B9\u30BF\u30FC\u30F3\u8A9E
-rap=\u30E9\u30D1\u30CC\u30A4\u8A9E
-rar=\u30E9\u30ED\u30C8\u30AC\u8A9E
-roa=\u30ED\u30DE\u30F3\u30B9\u8AF8\u8A9E
-roh=\u30ED\u30DE\u30F3\u30B7\u30E5\u8A9E
-rom=\u30ED\u30DE\u30FC\u30CB\u30FC\u8A9E
-rum=\u30EB\u30FC\u30DE\u30CB\u30A2\u8A9E
-run=\u30EB\u30F3\u30C7\u30A3\u8A9E
-rup=\u30A2\u30EB\u30FC\u30DE\u30CB\u30A2\u8A9E
-rus=\u30ED\u30B7\u30A2\u8A9E
-sad=\u30B5\u30F3\u30C0\u30A6\u30A7\u8A9E
-sag=\u30B5\u30F3\u30B4\u8A9E
-sah=\u30E4\u30AF\u30FC\u30C8\u8A9E
-sai=\u5357\u7C73\u30A4\u30F3\u30C7\u30A3\u30A2\u30F3\u8AF8\u8A9E
-sal=\u30BB\u30A4\u30EA\u30C3\u30B7\u30E5\u8A9E\u65CF
-sam=\u30B5\u30DE\u30EA\u30A2\u30FB\u30A2\u30E9\u30E0\u8A9E
-san=\u30B5\u30F3\u30B9\u30AF\u30EA\u30C3\u30C8\u8A9E
-sas=\u30B5\u30B5\u30AF\u8A9E
-sat=\u30B5\u30F3\u30BF\u30FC\u30EA\u30FC\u8A9E
-scn=\u30B7\u30C1\u30EA\u30A2\u8A9E
-sco=\u30B9\u30B3\u30C3\u30C8\u30E9\u30F3\u30C9\u8A9E
-sel=\u30BB\u30EA\u30AF\u30D7\u8A9E
-sem=\u30BB\u30E0\u8AF8\u8A9E
-sga=\u53E4\u671F\u30A2\u30A4\u30EB\u30E9\u30F3\u30C9\u8A9E
-sgn=\u624B\u307E\u306D\u8A00\u8A9E
-shn=\u30B7\u30E3\u30F3\u8A9E
-sid=\u30B7\u30C0\u30E2\u8A9E
-sin=\u30B7\u30F3\u30CF\u30E9\u8A9E
-sio=\u30B9\u30FC\u8A9E\u65CF
-sit=\u30B9\u30ED\u30D9\u30CB\u30A2 \u30C8\u30E9\u30FC\u30EB
-sla=\u30B9\u30E9\u30D6\u8AF8\u8A9E
-slo=\u30B9\u30ED\u30D0\u30AD\u30A2\u8A9E
-slv=\u30B9\u30ED\u30D9\u30CB\u30A2\u8A9E
-sma=\u5357\u30B5\u30FC\u30DF\u8A9E
-sme=\u5317\u30B5\u30FC\u30DF\u8A9E
-smi=\u30B5\u30FC\u30DF\u8AF8\u8A9E
-smj=\u30EB\u30EC\u30FB\u30B5\u30FC\u30DF\u8A9E
-smn=\u30A4\u30CA\u30EA\u30FB\u30B5\u30FC\u30DF\u8A9E
-smo=\u30B5\u30E2\u30A2\u8A9E
-sms=\u30B9\u30B3\u30EB\u30C8\u30FB\u30B5\u30FC\u30DF\u8A9E
-sna=\u30B7\u30E7\u30CA\u8A9E
-snd=\u30B7\u30F3\u30C9\u8A9E
-snk=\u30BD\u30CB\u30F3\u30B1\u8A9E
-sog=\u30BD\u30B0\u30C9\u8A9E
-som=\u30BD\u30DE\u30EA\u8A9E
-son=\u30BD\u30F3\u30AC\u30A4\u8A9E
-sot=\u5357\u90E8\u30BD\u30C8\u8A9E
-spa=\u30B9\u30DA\u30A4\u30F3\u8A9E
-srd=\u30B9\u30EA\u30CA\u30E0 \u30C9\u30EB
-srn=\u30B9\u30EA\u30CA\u30E0\u8A9E
-srp=\u30BB\u30EB\u30D3\u30A2\u8A9E
-srr=\u30BB\u30EC\u30EB\u8A9E
-ssa=\u30CA\u30A4\u30EB\u30FB\u30B5\u30CF\u30E9\u8AF8\u8A9E
-ssw=\u30B7\u30B9\u30EF\u30C6\u30A3\u8A9E
-suk=\u30B9\u30AF\u30DE\u8A9E
-sun=\u30B9\u30F3\u30C0\u8A9E
-sus=\u30B9\u30B9\u8A9E
-sux=\u30B7\u30E5\u30E1\u30FC\u30EB\u8A9E
-swa=\u30B9\u30EF\u30D2\u30EA\u8A9E
-swe=\u30B9\u30A6\u30A7\u30FC\u30C7\u30F3\u8A9E
-syc=\u53E4\u5178\u30B7\u30EA\u30A2\u8A9E
-syr=\u30B7\u30EA\u30A2\u8A9E
-tah=\u30BF\u30D2\u30C1\u8A9E
-tai=\u30BF\u30A4\u8AF8\u8A9E
-tam=\u30BF\u30DF\u30EB\u8A9E
-tat=\u30BF\u30BF\u30FC\u30EB\u8A9E
-tel=\u30C6\u30EB\u30B0\u8A9E
-tem=\u30C6\u30E0\u30CD\u8A9E
-ter=\u30C6\u30EC\u30FC\u30CE\u8A9E
-tet=\u30C6\u30C8\u30A5\u30F3\u8A9E
-tgk=\u30BF\u30B8\u30AF\u8A9E
-tgl=\u30BF\u30AC\u30ED\u30B0\u8A9E
-tha=\u30BF\u30A4\u8A9E
-tib=\u30C1\u30D9\u30C3\u30C8\u8A9E
-tig=\u30C6\u30A3\u30B0\u30EC\u8A9E
-tir=\u30C6\u30A3\u30B0\u30EA\u30CB\u30E3\u8A9E
-tiv=\u30C6\u30A3\u30D6\u8A9E
-tkl=\u30C8\u30B1\u30E9\u30A6\u8A9E
-tlh=\u30AF\u30EA\u30F3\u30B4\u30F3\u8A9E
-tli=\u30C8\u30EA\u30F3\u30AE\u30C3\u30C8\u8A9E
-tmh=\u30BF\u30DE\u30B7\u30A7\u30AF\u8A9E
-tog=\u30C8\u30F3\u30AC\u8A9E (\u30CB\u30A2\u30B5)
-ton=\u30C8\u30F3\u30AC\u8A9E(\u30C8\u30F3\u30AC\u8AF8\u5CF6)
-tpi=\u30C8\u30AF\u30FB\u30D4\u30B7\u30F3\u8A9E
-tsi=\u30C1\u30E0\u30B7\u30E5\u8A9E
-tsn=\u30C4\u30EF\u30CA\u8A9E
-tso=\u30C4\u30A9\u30F3\u30AC\u8A9E
-tuk=\u30C8\u30EB\u30AF\u30E1\u30F3\u8A9E
-tum=\u30C8\u30A5\u30F3\u30D6\u30AB\u8A9E
-tup=\u30C8\u30A5\u30D4\u8A9E\u65CF
-tur=\u30C8\u30EB\u30B3\u8A9E
-tut=\u30A2\u30EB\u30BF\u30A4\u8AF8\u8A9E
-tvl=\u30C4\u30D0\u30EB\u8A9E
-twi=\u30C8\u30A6\u30A3\u8A9E
-tyv=\u30C8\u30A5\u30F4\u30A1\u8A9E
-udm=\u30A6\u30C9\u30E0\u30EB\u30C8\u8A9E
-uga=\u30A6\u30AC\u30EA\u30C8\u8A9E
-uig=\u30A6\u30A4\u30B0\u30EB\u8A9E
-ukr=\u30A6\u30AF\u30E9\u30A4\u30CA\u8A9E
-umb=\u30A6\u30F3\u30D6\u30F3\u30C9\u30A5\u8A9E
-und=\u975E\u78BA\u5B9A
-urd=\u30A6\u30EB\u30C9\u30A5\u30FC\u8A9E
-uzb=\u30A6\u30BA\u30D9\u30AF\u8A9E
-vai=\u30F4\u30A1\u30A4\u8A9E
-ven=\u30D9\u30F3\u30C0\u8A9E
-vie=\u30D9\u30C8\u30CA\u30E0\u8A9E
-vol=\u30F4\u30A9\u30E9\u30D4\u30E5\u30FC\u30AF\u8A9E
-vot=\u30DC\u30FC\u30C8\u8A9E
-wak=\u30EF\u30AB\u30B7\u8A9E\u65CF
-wal=\u30EF\u30C3\u30E9\u30E2\u8A9E
-war=\u30EF\u30E9\u30A4\u8A9E
-was=\u30EF\u30B7\u30E7\u8A9E
-wel=\u30A6\u30A7\u30FC\u30EB\u30BA\u8A9E
-wen=\u30BD\u30EB\u30D3\u30A2\u8A9E\u65CF
-wln=\u30EF\u30ED\u30F3\u8A9E
-wol=\u30A6\u30A9\u30ED\u30D5\u8A9E
-xal=\u30AB\u30EB\u30E0\u30A4\u30AF\u8A9E
-xho=\u30B3\u30FC\u30B5\u8A9E
-yao=\u30E4\u30AA\u8A9E
-yap=\u30E4\u30C3\u30D7\u8A9E
-yid=\u30A4\u30C7\u30A3\u30C3\u30B7\u30E5\u8A9E
-yor=\u30E8\u30EB\u30D0\u8A9E
-ypk=\u30E6\u30D4\u30C3\u30AF\u8A9E\u65CF
-zap=\u30B6\u30DD\u30C6\u30C3\u30AF\u8A9E
-zbl=\u30D6\u30EA\u30B9\u30B7\u30F3\u30DC\u30EB
-zen=\u30BC\u30CA\u30AC\u8A9E
-zha=\u30C1\u30E5\u30EF\u30F3\u8A9E
-znd=\u30B6\u30F3\u30C7\u8A9E
-zul=\u30BA\u30FC\u30EB\u30FC\u8A9E
-zun=\u30BA\u30CB\u8A9E
-zxx=\u8A00\u8A9E\u5185\u5BB9\u306A\u3057
-zza=\u30B6\u30B6\u8A9E
-
-# script names
-# key is ISO 15924 script code
-
-Arab=\u30A2\u30E9\u30D3\u30A2\u6587\u5B57
-Armi=\u5E1D\u56FD\u30A2\u30E9\u30E0\u8A9E
-Armn=\u30A2\u30EB\u30E1\u30CB\u30A2\u6587\u5B57
-Avst=\u30A2\u30F4\u30A7\u30B9\u30BF\u8A9E
-Bali=\u30D0\u30EA\u6587\u5B57
-Bamu=\u30D0\u30E0\u30F3\u8A9E
-Bass=\u30D0\u30B5\u8A9E(\u30D0\u30FC)
-Batk=\u30D0\u30BF\u30AF\u6587\u5B57
-Beng=\u30D9\u30F3\u30AC\u30EB\u6587\u5B57
-Blis=\u30D6\u30EA\u30B9\u30B7\u30F3\u30DC\u30EB
-Bopo=\u6CE8\u97F3\u5B57\u6BCD
-Brah=\u30D6\u30E9\u30FC\u30D5\u30DF\u30FC\u6587\u5B57
-Brai=\u30D6\u30E9\u30A4\u30E6\u70B9\u5B57
-Bugi=\u30D6\u30AE\u30B9\u6587\u5B57
-Buhd=\u30D6\u30D2\u30C3\u30C9\u6587\u5B57
-Cakm=\u30C1\u30E3\u30AF\u30DE\u8A9E
-Cans=\u7D71\u5408\u30AB\u30CA\u30C0\u5148\u4F4F\u6C11\u8A18\u53F7
-Cari=\u30AB\u30EA\u6587\u5B57
-Cham=\u30C1\u30E3\u30E0\u6587\u5B57
-Cher=\u30C1\u30A7\u30ED\u30AD\u30FC\u6587\u5B57
-Cirt=\u30AD\u30A2\u30B9\u6587\u5B57
-Copt=\u30B3\u30D7\u30C8\u6587\u5B57
-Cprt=\u30AD\u30D7\u30ED\u30B9\u6587\u5B57
-Cyrl=\u30AD\u30EA\u30EB\u6587\u5B57
-Cyrs=\u30AD\u30EA\u30EB\u6587\u5B57 (\u53E4\u4EE3\u6559\u4F1A\u30B9\u30E9\u30D6\u8A9E\u306E\u6587\u5B57)
-Deva=\u30C7\u30FC\u30D0\u30CA\u30FC\u30AC\u30EA\u30FC\u6587\u5B57
-Dsrt=\u30C7\u30BB\u30EC\u30C3\u30C8\u6587\u5B57
-Dupl=\u30C7\u30E5\u30D7\u30ED\u30EF\u30A8\u5F0F\u901F\u8A18
-Egyd=\u30A8\u30B8\u30D7\u30C8\u6C11\u8846\u6587\u5B57
-Egyh=\u30A8\u30B8\u30D7\u30C8\u795E\u5B98\u6587\u5B57
-Egyp=\u30A8\u30B8\u30D7\u30C8\u8056\u523B\u6587\u5B57
-Elba=\u30A8\u30EB\u30D0\u30B5\u30F3\u6587\u5B57
-Ethi=\u30A8\u30C1\u30AA\u30D4\u30A2\u6587\u5B57
-Geok=\u30B0\u30EB\u30B8\u30A2\u6587\u5B57\uFF08\u30D5\u30C4\u30EA\uFF09
-Geor=\u30B0\u30EB\u30B8\u30A2\u6587\u5B57
-Glag=\u30B0\u30E9\u30B4\u30FC\u30EB\u6587\u5B57
-Goth=\u30B4\u30FC\u30C8\u6587\u5B57
-Gran=\u30B0\u30E9\u30F3\u30BF\u6587\u5B57
-Grek=\u30AE\u30EA\u30B7\u30E3\u6587\u5B57
-Gujr=\u30B0\u30B8\u30E3\u30E9\u30FC\u30C8\u6587\u5B57
-Guru=\u30B0\u30EB\u30E0\u30AD\u30FC\u6587\u5B57
-Hang=\u30CF\u30F3\u30B0\u30EB
-Hani=\u6F22\u5B57
-Hano=\u30CF\u30CC\u30CE\u30AA\u6587\u5B57
-Hans=\u7C21\u4F53\u5B57
-Hant=\u7E41\u4F53\u5B57
-Hebr=\u30D8\u30D6\u30E9\u30A4\u6587\u5B57
-Hira=\u3072\u3089\u304C\u306A
-Hmng=\u30D1\u30CF\u30A6\u30FB\u30D5\u30E2\u30F3\u6587\u5B57
-Hrkt=\u30AB\u30BF\u30AB\u30CA\u3068\u3072\u3089\u304C\u306A
-Hung=\u53E4\u4EE3\u30CF\u30F3\u30AC\u30EA\u30FC\u6587\u5B57
-Inds=\u30A4\u30F3\u30C0\u30B9\u6587\u5B57 (\u30CF\u30E9\u30C3\u30D1\u6587\u5B57)
-Ital=\u53E4\u4EE3\u30A4\u30BF\u30EA\u30A2\u306E\u6587\u5B57
-Java=\u30B8\u30E3\u30EF\u6587\u5B57
-Jpan=\u65E5\u672C\u8A9E\u306E\u6587\u5B57
-Kali=\u30AB\u30E4\u30FC\u6587\u5B57
-Kana=\u30AB\u30BF\u30AB\u30CA
-Khar=\u30AB\u30ED\u30FC\u30B7\u30E5\u30C6\u30A3\u30FC\u6587\u5B57
-Khmr=\u30AF\u30E1\u30FC\u30EB\u6587\u5B57
-Knda=\u30AB\u30F3\u30CA\u30C0\u6587\u5B57
-Kore=\u97D3\u56FD\u8A9E\u306E\u6587\u5B57
-Kpel=\u30AF\u30DA\u30EC\u8A9E
-Kthi=\u30AB\u30A4\u30C6\u30A3\u30FC\u6587\u5B57
-Lana=\u30BF\u30A4\u30FB\u30BF\u30E0\u6587\u5B57
-Laoo=\u30E9\u30AA\u6587\u5B57
-Latf=\u30E9\u30C6\u30F3\u6587\u5B57 (\u30C9\u30A4\u30C4\u6587\u5B57)
-Latg=\u30E9\u30C6\u30F3\u6587\u5B57(\u30B2\u30FC\u30EB\u8A9E)
-Latn=\u30E9\u30C6\u30F3\u6587\u5B57
-Lepc=\u30EC\u30D7\u30C1\u30E3\u6587\u5B57 (\u30ED\u30F3\u6587\u5B57)
-Limb=\u30EA\u30F3\u30D6\u6587\u5B57
-Lina=\u7DDA\u6587\u5B57A
-Linb=\u7DDA\u6587\u5B57B
-Lisu=\u30EA\u30B9\u6587\u5B57
-Loma=\u30ED\u30DE\u6587\u5B57
-Lyci=\u30EA\u30E5\u30AD\u30A2\u6587\u5B57
-Lydi=\u30EA\u30C7\u30A3\u30A2\u6587\u5B57
-Mand=\u30DE\u30F3\u30C0\u6587\u5B57
-Mani=\u30DE\u30CB\u6587\u5B57
-Maya=\u30DE\u30E4\u8C61\u5F62\u6587\u5B57
-Mend=\u30E1\u30F3\u30C7\u8A9E
-Merc=\u30E1\u30ED\u30A8\u6587\u5B57\u8349\u66F8\u4F53
-Mero=\u30E1\u30ED\u30A8\u6587\u5B57
-Mlym=\u30DE\u30E9\u30E4\u30FC\u30E9\u30E0\u6587\u5B57
-Mong=\u30E2\u30F3\u30B4\u30EB\u6587\u5B57
-Moon=\u30E0\u30FC\u30F3\u6587\u5B57
-Mtei=\u30E1\u30A4\u30C6\u30A4\u6587\u5B57
-Mymr=\u30DF\u30E3\u30F3\u30DE\u30FC\u6587\u5B57
-Narb=\u53E4\u4EE3\u5317\u30A2\u30E9\u30D3\u30A2\u8A9E
-Nbat=\u30CA\u30D0\u30C6\u30A2\u8A9E
-Nkgb=Nakhi Geba\u6587\u5B57
-Nkoo=\u30F3\u30B3\u6587\u5B57
-Ogam=\u30AA\u30AC\u30E0\u6587\u5B57
-Olck=\u30AA\u30EB\u30C1\u30AD\u6587\u5B57
-Orkh=\u30AA\u30EB\u30DB\u30F3\u6587\u5B57
-Orya=\u30AA\u30EA\u30E4\u30FC\u6587\u5B57
-Osma=\u30AA\u30B9\u30DE\u30CB\u30A2\u6587\u5B57
-Palm=\u30D1\u30EB\u30DF\u30E9\u6587\u5B57
-Perm=\u53E4\u30DA\u30EB\u30DF\u30C3\u30AF\u6587\u5B57
-Phag=\u30D1\u30B9\u30D1\u6587\u5B57
-Phli=\u7891\u6587\u306E\u30D1\u30D5\u30E9\u30F4\u30A3\u30FC\u6587\u5B57
-Phlp=\u8A69\u7BC7\u306E\u30D1\u30D5\u30E9\u30F4\u30A3\u30FC\u6587\u5B57
-Phlv=\u66F8\u7C4D\u306E\u30D1\u30D5\u30E9\u30F4\u30A3\u30FC\u6587\u5B57
-Phnx=\u30D5\u30A7\u30CB\u30AD\u30A2\u6587\u5B57
-Plrd=\u30DD\u30E9\u30FC\u30C9\u97F3\u58F0\u8A18\u53F7
-Prti=\u7891\u6587\u306E\u30D1\u30EB\u30C6\u30A3\u30A2\u6587\u5B57
-Rjng=\u30EC\u30B8\u30E3\u30F3\u8A9E
-Roro=\u30ED\u30F3\u30B4\u30ED\u30F3\u30B4\u6587\u5B57
-Runr=\u30EB\u30FC\u30F3\u6587\u5B57
-Samr=\u30B5\u30DE\u30EA\u30A2\u8A9E
-Sara=\u30B5\u30E9\u30C6\u30A3\u6587\u5B57
-Sarb=\u53E4\u4EE3\u5357\u30A2\u30E9\u30D3\u30A2\u8A9E
-Saur=\u30B5\u30A4\u30E9\u30B7\u30E5\u30C8\u30E9\u8A9E
-Sgnw=\u624B\u8A71\u8A18\u8FF0
-Shaw=\u30B7\u30E7\u30FC\u6587\u5B57
-Sind=\u30B7\u30F3\u30C9\u8A9E
-Sinh=\u30B7\u30F3\u30CF\u30E9\u6587\u5B57
-Sund=\u30B9\u30F3\u30C0\u8A9E
-Sylo=\u30B7\u30ED\u30C6\u30A3\u30FB\u30CA\u30B0\u30EA\u6587\u5B57
-Syrc=\u30B7\u30EA\u30A2\u6587\u5B57
-Syre=\u30B7\u30EA\u30A2\u6587\u5B57 (\u30A8\u30B9\u30C8\u30E9\u30F3\u30B2\u30ED\u6587\u5B57)
-Syrj=\u30B7\u30EA\u30A2\u6587\u5B57 (\u897F\u65B9\u30B7\u30EA\u30A2\u6587\u5B57)
-Syrn=\u30B7\u30EA\u30A2\u6587\u5B57 (\u6771\u65B9\u30B7\u30EA\u30A2\u6587\u5B57)
-Tagb=\u30BF\u30B0\u30D0\u30F3\u30EF\u6587\u5B57
-Tale=\u30BF\u30A4\u30EC\u6587\u5B57
-Talu=\u65B0\u30BF\u30A4\u30FB\u30EB\u30FC\u6587\u5B57
-Taml=\u30BF\u30DF\u30FC\u30EB\u6587\u5B57
-Tavt=\u30BF\u30A4\u30FB\u30F4\u30A7\u30C8\u6587\u5B57
-Telu=\u30C6\u30EB\u30B0\u6587\u5B57
-Teng=\u30C6\u30F3\u30B0\u30EF\u30FC\u30EB\u6587\u5B57
-Tfng=\u30AF\u30E1\u30FC\u30EB\u8A9E
-Tglg=\u30BF\u30AC\u30ED\u30B0\u6587\u5B57
-Thaa=\u30BF\u30FC\u30CA\u6587\u5B57
-Thai=\u30BF\u30A4\u6587\u5B57
-Tibt=\u30C1\u30D9\u30C3\u30C8\u6587\u5B57
-Ugar=\u30A6\u30AC\u30EA\u30C8\u6587\u5B57
-Vaii=\u30F4\u30A1\u30A4\u6587\u5B57
-Visp=\u8996\u8A71\u6CD5
-Wara=\u30EF\u30E9\u30F3\u30B0\u30FB\u30AF\u30B7\u30C6\u30A3\u6587\u5B57
-Xpeo=\u53E4\u4EE3\u30DA\u30EB\u30B7\u30A2\u6587\u5B57
-Xsux=\u30B7\u30E5\u30E1\u30FC\u30EB\uFF1D\u30A2\u30C3\u30AB\u30C9\u8A9E\u6954\u5F62\u6587\u5B57
-Yiii=\u30A4\u6587\u5B57
-Zinh=\u7D99\u627F\u7528\u5B57
-Zmth=\u6570\u5B66\u8A18\u53F7
-Zsym=\u8A18\u53F7
-Zxxx=\u53E3\u627F\u8A00\u8A9E\u306E\u30B3\u30FC\u30C9
-Zyyy=\u5171\u901A\u30B3\u30FC\u30C9
-Zzzz=\u7528\u5B57\u672A\u30B3\u30FC\u30C9\u5316
-
-# country names
-# key is ISO 3166 country code
-
-AD=\u30a2\u30f3\u30c9\u30e9
-AE=\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6
-AF=\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3
-AG=\u30a2\u30f3\u30c1\u30b0\u30a2\u30d0\u30fc\u30d6\u30fc\u30c0
-AI=\u30a2\u30f3\u30ae\u30e9
-AL=\u30a2\u30eb\u30d0\u30cb\u30a2
-AM=\u30a2\u30eb\u30e1\u30cb\u30a2
-AN=\u30aa\u30e9\u30f3\u30c0\u9818\u30a2\u30f3\u30c6\u30a3\u30eb\u8af8\u5cf6
-AO=\u30a2\u30f3\u30b4\u30e9
-AQ=\u5357\u6975
-AR=\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3
-AS=\u30a2\u30e1\u30ea\u30ab\u30f3\u30b5\u30e2\u30a2
-AT=\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2
-AU=\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2
-AW=\u30a2\u30eb\u30d0\u5cf6
-AX=\u30aa\u30fc\u30e9\u30f3\u30c9\u8af8\u5cf6
-AZ=\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3
-BA=\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca
-BB=\u30d0\u30eb\u30d0\u30c9\u30b9
-BD=\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5
-BE=\u30d9\u30eb\u30ae\u30fc
-BF=\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd
-BG=\u30d6\u30eb\u30ac\u30ea\u30a2
-BH=\u30d0\u30fc\u30ec\u30fc\u30f3
-BI=\u30d6\u30eb\u30f3\u30b8
-BJ=\u30d9\u30cb\u30f3
-BL=\u30B5\u30F3\u30FB\u30D0\u30EB\u30C6\u30EB\u30DF\u30FC
-BM=\u30d0\u30fc\u30df\u30e5\u30fc\u30c0\u8af8\u5cf6
-BN=\u30d6\u30eb\u30cd\u30a4
-BO=\u30dc\u30ea\u30d3\u30a2
-BQ=\u30DC\u30CD\u30FC\u30EB\u3001\u30BB\u30F3\u30C8\u30FB\u30A8\u30A6\u30B9\u30BF\u30C6\u30A3\u30A6\u30B9\u304A\u3088\u3073\u30B5\u30D0
-BR=\u30d6\u30e9\u30b8\u30eb
-BS=\u30d0\u30cf\u30de
-BT=\u30d6\u30fc\u30bf\u30f3
-BV=\u30d6\u30fc\u30d9\u5cf6
-BW=\u30dc\u30c4\u30ef\u30ca
-BY=\u30d9\u30e9\u30eb\u30fc\u30b7
-BZ=\u30d9\u30ea\u30fc\u30ba
-CA=\u30ab\u30ca\u30c0
-CC=\u30b3\u30b3\u30b9\u8af8\u5cf6
-CD=\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd
-CF=\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd
-CG=\u30b3\u30f3\u30b4
-CH=\u30b9\u30a4\u30b9
-CI=\u30b3\u30fc\u30c8\u30b8\u30dc\u30a2\u30fc\u30eb
-CK=\u30af\u30c3\u30af\u8af8\u5cf6
-CL=\u30c1\u30ea
-CM=\u30ab\u30e1\u30eb\u30fc\u30f3
-CN=\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u56fd
-CO=\u30b3\u30ed\u30f3\u30d3\u30a2
-CR=\u30b3\u30b9\u30bf\u30ea\u30ab
-CS=\u30bb\u30eb\u30d3\u30a2\u30fb\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed
-CU=\u30ad\u30e5\u30fc\u30d0
-CV=\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7
-CW=\u30AD\u30E5\u30E9\u30BD\u30FC
-CX=\u30af\u30ea\u30b9\u30de\u30b9\u5cf6
-CY=\u30ad\u30d7\u30ed\u30b9
-CZ=\u30c1\u30a7\u30b3
-DE=\u30c9\u30a4\u30c4
-DJ=\u30b8\u30d6\u30c1
-DK=\u30c7\u30f3\u30de\u30fc\u30af
-DM=\u30c9\u30df\u30cb\u30ab\u56fd
-DO=\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd
-DZ=\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2
-EC=\u30a8\u30af\u30a2\u30c9\u30eb
-EE=\u30a8\u30b9\u30c8\u30cb\u30a2
-EG=\u30a8\u30b8\u30d7\u30c8
-EH=\u897f\u30b5\u30cf\u30e9
-ER=\u30a8\u30ea\u30c8\u30ea\u30a2
-ES=\u30b9\u30da\u30a4\u30f3
-ET=\u30a8\u30c1\u30aa\u30d4\u30a2
-FI=\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9
-FJ=\u30d5\u30a3\u30b8\u30fc
-FK=\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\u8af8\u5cf6
-FM=\u30df\u30af\u30ed\u30cd\u30b7\u30a2
-FO=\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6
-FR=\u30d5\u30e9\u30f3\u30b9
-GA=\u30ac\u30dc\u30f3
-GB=\u30a4\u30ae\u30ea\u30b9
-GD=\u30b0\u30ec\u30ca\u30c0
-GE=\u30b0\u30eb\u30b8\u30a2
-GF=\u4ecf\u9818\u30ae\u30a2\u30ca
-GG=\u30AC\u30FC\u30F3\u30B8\u30FC
-GH=\u30ac\u30fc\u30ca
-GI=\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb
-GL=\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9
-GM=\u30ac\u30f3\u30d3\u30a2
-GN=\u30ae\u30cb\u30a2
-GP=\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7
-GQ=\u8d64\u9053\u30ae\u30cb\u30a2
-GR=\u30ae\u30ea\u30b7\u30a2
-GS=\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u5cf6\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a6\u30a3\u30c3\u30c1\u5cf6
-GT=\u30b0\u30a2\u30c6\u30de\u30e9
-GU=\u30b0\u30a2\u30e0
-GW=\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6
-GY=\u30ac\u30a4\u30a2\u30ca
-HK=\u9999\u6e2f
-HM=\u30cf\u30fc\u30c9\u30fb\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6
-HN=\u30db\u30f3\u30b8\u30e5\u30e9\u30b9
-HR=\u30af\u30ed\u30a2\u30c1\u30a2
-HT=\u30cf\u30a4\u30c1
-HU=\u30cf\u30f3\u30ac\u30ea\u30fc
-ID=\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2
-IE=\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9
-IL=\u30a4\u30b9\u30e9\u30a8\u30eb
-IM=\u30DE\u30F3\u5CF6
-IN=\u30a4\u30f3\u30c9
-IO=\u82f1\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df
-IQ=\u30a4\u30e9\u30af
-IR=\u30a4\u30e9\u30f3
-IS=\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9
-IT=\u30a4\u30bf\u30ea\u30a2
-JE=\u30B8\u30E3\u30FC\u30B8\u30FC
-JM=\u30b8\u30e3\u30de\u30a4\u30ab
-JO=\u30e8\u30eb\u30c0\u30f3
-JP=\u65e5\u672c
-KE=\u30b1\u30cb\u30a2
-KG=\u30ad\u30eb\u30ae\u30b9\u30bf\u30f3
-KH=\u30ab\u30f3\u30dc\u30b8\u30a2
-KI=\u30ad\u30ea\u30d0\u30b9
-KM=\u30b3\u30e2\u30ed
-KN=\u30bb\u30f3\u30c8\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u30fb\u30cd\u30a4\u30d3\u30b9
-KP=\u671d\u9bae\u6c11\u4e3b\u4e3b\u7fa9\u4eba\u6c11\u5171\u548c\u56fd
-KR=\u5927\u97d3\u6c11\u56fd
-KW=\u30af\u30a6\u30a7\u30fc\u30c8
-KY=\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6
-KZ=\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3
-LA=\u30e9\u30aa\u30b9
-LB=\u30ec\u30d0\u30ce\u30f3
-LC=\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2
-LI=\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3
-LK=\u30b9\u30ea\u30e9\u30f3\u30ab
-LR=\u30ea\u30d9\u30ea\u30a2
-LS=\u30ec\u30bd\u30c8
-LT=\u30ea\u30c8\u30a2\u30cb\u30a2
-LU=\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af
-LV=\u30e9\u30c8\u30d3\u30a2
-LY=\u30ea\u30d3\u30a2
-MA=\u30e2\u30ed\u30c3\u30b3
-MC=\u30e2\u30ca\u30b3
-MD=\u30e2\u30eb\u30c9\u30d0
-ME=\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed
-MF=\u30BB\u30F3\u30C8\u30FB\u30DE\u30FC\u30C1\u30F3
-MG=\u30de\u30c0\u30ac\u30b9\u30ab\u30eb
-MH=\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6
-MK=\u30de\u30b1\u30c9\u30cb\u30a2
-ML=\u30de\u30ea
-MM=\u30df\u30e3\u30f3\u30de\u30fc
-MN=\u30e2\u30f3\u30b4\u30eb
-MO=\u30de\u30ab\u30aa
-MP=\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6
-MQ=\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af\u5cf6
-MR=\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2
-MS=\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8\u5cf6
-MT=\u30de\u30eb\u30bf
-MU=\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9
-MV=\u30e2\u30eb\u30c7\u30a3\u30d6
-MW=\u30de\u30e9\u30a6\u30a4
-MX=\u30e1\u30ad\u30b7\u30b3
-MY=\u30de\u30ec\u30fc\u30b7\u30a2
-MZ=\u30e2\u30b6\u30f3\u30d3\u30fc\u30af
-NA=\u30ca\u30df\u30d3\u30a2
-NC=\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2
-NE=\u30cb\u30b8\u30a7\u30fc\u30eb
-NF=\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6
-NG=\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2
-NI=\u30cb\u30ab\u30e9\u30b0\u30a2
-NL=\u30aa\u30e9\u30f3\u30c0
-NO=\u30ce\u30eb\u30a6\u30a7\u30fc
-NP=\u30cd\u30d1\u30fc\u30eb
-NR=\u30ca\u30a6\u30eb
-NU=\u30cb\u30a6\u30a8\u5cf6
-NZ=\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9
-OM=\u30aa\u30de\u30fc\u30f3
-PA=\u30d1\u30ca\u30de
-PE=\u30da\u30eb\u30fc
-PF=\u4ecf\u9818\u30dd\u30ea\u30cd\u30b7\u30a2
-PG=\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2
-PH=\u30d5\u30a3\u30ea\u30d4\u30f3
-PK=\u30d1\u30ad\u30b9\u30bf\u30f3
-PL=\u30dd\u30fc\u30e9\u30f3\u30c9
-PM=\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u30fb\u30df\u30af\u30ed\u30f3\u5cf6
-PN=\u30d4\u30c8\u30b1\u30a2\u30f3\u5cf6
-PR=\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3
-PS=\u30d1\u30ec\u30b9\u30c1\u30ca
-PT=\u30dd\u30eb\u30c8\u30ac\u30eb
-PW=\u30d1\u30e9\u30aa
-PY=\u30d1\u30e9\u30b0\u30a2\u30a4
-QA=\u30ab\u30bf\u30fc\u30eb
-RE=\u30ec\u30e6\u30cb\u30aa\u30f3
-RO=\u30eb\u30fc\u30de\u30cb\u30a2
-RS=\u30bb\u30eb\u30d3\u30a2
-RU=\u30ed\u30b7\u30a2
-RW=\u30eb\u30ef\u30f3\u30c0
-SA=\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2
-SB=\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6
-SC=\u30bb\u30a4\u30b7\u30a7\u30eb
-SD=\u30b9\u30fc\u30c0\u30f3
-SE=\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3
-SG=\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb
-SH=\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca\u5cf6
-SI=\u30b9\u30ed\u30d9\u30cb\u30a2
-SJ=\u30b9\u30d0\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u30fb\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6
-SK=\u30b9\u30ed\u30d0\u30ad\u30a2
-SL=\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd
-SM=\u30b5\u30f3\u30de\u30ea\u30ce
-SN=\u30bb\u30cd\u30ac\u30eb
-SO=\u30bd\u30de\u30ea\u30a2
-SR=\u30b9\u30ea\u30ca\u30e0
-ST=\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da
-SV=\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb
-SX=\u30B5\u30F3\u30FB\u30DE\u30EB\u30BF\u30F3(\u30AA\u30E9\u30F3\u30C0\u9818)
-SY=\u30b7\u30ea\u30a2
-SZ=\u30b9\u30ef\u30b8\u30e9\u30f3\u30c9
-TC=\u30bf\u30fc\u30af\u30b9\u8af8\u5cf6\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6
-TD=\u30c1\u30e3\u30c9
-TF=\u30d5\u30e9\u30f3\u30b9\u9818\u6975\u5357\u8af8\u5cf6
-TG=\u30c8\u30fc\u30b4
-TH=\u30bf\u30a4
-TJ=\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3
-TK=\u30c8\u30b1\u30e9\u30a6\u8af8\u5cf6
-TL=\u6771\u30c6\u30a3\u30e2\u30fc\u30eb
-TM=\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3
-TN=\u30c1\u30e5\u30cb\u30b8\u30a2
-TO=\u30c8\u30f3\u30ac
-TR=\u30c8\u30eb\u30b3
-TT=\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4
-TV=\u30c4\u30d0\u30eb
-TW=\u53f0\u6e7e
-TZ=\u30bf\u30f3\u30b6\u30cb\u30a2
-UA=\u30a6\u30af\u30e9\u30a4\u30ca
-UG=\u30a6\u30ac\u30f3\u30c0
-UM=\u7c73\u9818\u592a\u5e73\u6d0b\u8af8\u5cf6
-US=\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd
-UY=\u30a6\u30eb\u30b0\u30a2\u30a4
-UZ=\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3
-VA=\u30d0\u30c1\u30ab\u30f3
-VC=\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u304a\u3088\u3073\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3\u8af8\u5cf6
-VE=\u30d9\u30cd\u30ba\u30a8\u30e9
-VG=\u82f1\u9818\u30d0\u30fc\u30b8\u30f3\u8af8\u5cf6
-VI=\u7c73\u9818\u30d0\u30fc\u30b8\u30f3\u8af8\u5cf6
-VN=\u30d9\u30c8\u30ca\u30e0
-VU=\u30d0\u30cc\u30a2\u30c4
-WF=\u30ef\u30ea\u30b9\u30fb\u30d5\u30c6\u30e5\u30ca\u8af8\u5cf6
-WS=\u897f\u30b5\u30e2\u30a2
-YE=\u30a4\u30a8\u30e1\u30f3
-YT=\u30de\u30e8\u30c3\u30c8\u5cf6
-ZA=\u5357\u30a2\u30d5\u30ea\u30ab
-ZM=\u30b6\u30f3\u30d3\u30a2
-ZW=\u30b8\u30f3\u30d0\u30d6\u30a8
-
-# territory names
-# key is UN M.49 country and area code
-
-001=\u4E16\u754C
-002=\u30A2\u30D5\u30EA\u30AB
-003=\u5317\u7C73
-005=\u5357\u30A2\u30E1\u30EA\u30AB
-009=\u30AA\u30BB\u30A2\u30CB\u30A2
-011=\u897F\u30A2\u30D5\u30EA\u30AB
-013=\u4E2D\u592E\u30A2\u30E1\u30EA\u30AB
-014=\u6771\u30A2\u30D5\u30EA\u30AB
-015=\u5317\u30A2\u30D5\u30EA\u30AB
-017=\u4E2D\u90E8\u30A2\u30D5\u30EA\u30AB
-018=\u5357\u90E8\u30A2\u30D5\u30EA\u30AB
-019=\u30A2\u30E1\u30EA\u30AB\u5927\u9678
-021=\u5317\u30A2\u30E1\u30EA\u30AB
-029=\u30AB\u30EA\u30D6\u6D77
-030=\u6771\u30A2\u30B8\u30A2
-034=\u5357\u30A2\u30B8\u30A2
-035=\u6771\u5357\u30A2\u30B8\u30A2
-039=\u5357\u30E8\u30FC\u30ED\u30C3\u30D1
-053=\u30AA\u30FC\u30B9\u30C8\u30E9\u30EA\u30A2\u30FB\u30CB\u30E5\u30FC\u30B8\u30FC\u30E9\u30F3\u30C9
-054=\u30E1\u30E9\u30CD\u30B7\u30A2
-057=\u30DF\u30AF\u30ED\u30CD\u30B7\u30A2\u5730\u57DF
-061=\u30DD\u30EA\u30CD\u30B7\u30A2
-142=\u30A2\u30B8\u30A2
-143=\u4E2D\u592E\u30A2\u30B8\u30A2
-145=\u897F\u30A2\u30B8\u30A2
-150=\u30E8\u30FC\u30ED\u30C3\u30D1
-151=\u6771\u30E8\u30FC\u30ED\u30C3\u30D1
-154=\u5317\u30E8\u30FC\u30ED\u30C3\u30D1
-155=\u897F\u30E8\u30FC\u30ED\u30C3\u30D1
-419=\u30E9\u30C6\u30F3\u30A2\u30E1\u30EA\u30AB\u30FB\u30AB\u30EA\u30D6\u5730\u57DF
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ko.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ko.properties
deleted file mode 100755
index fbbf2ef..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ko.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=\uc544\ud30c\ub974\uc5b4
-ab=\uc555\uce74\uc988\uc5b4
-ae=\uc544\ubca0\uc2a4\ud0c0\uc5b4
-af=\ub0a8\uc544\uacf5 \uacf5\uc6a9\uc5b4
-ak=\uc544\uce78\uc5b4
-am=\uc554\ud558\ub77c\uc5b4
-an=\uc544\ub77c\uace4\uc5b4
-ar=\uc544\ub78d\uc5b4
-as=\uc544\uc0d8\uc5b4
-av=\uc544\ubc14\ub974\uc5b4
-ay=\uc544\uc774\ub9c8\ub77c\uc5b4
-az=\uc544\uc81c\ub974\ubc14\uc774\uc794\uc5b4
-ba=\ubc14\uc288\ud0a4\ub974\uc5b4
-be=\ubca8\ub85c\ub8e8\uc2dc\uc5b4
-bg=\ubd88\uac00\ub9ac\uc544\uc5b4
-bh=\ube44\ud558\ub974\uc5b4
-bi=\ube44\uc2ac\ub77c\ub9c8\uc5b4
-bm=\ubc24\ubc14\ub77c\uc5b4
-bn=\ubcb5\uace8\uc5b4
-bo=\ud2f0\ubca0\ud2b8\uc5b4
-br=\ube0c\ub974\ud0c0\ub274\uc5b4
-bs=\ubcf4\uc2a4\ub2c8\uc544\uc5b4
-ca=\uce74\ud0c8\ub85c\ub2c8\uc544\uc5b4
-ce=\uccb4\uccb8\uc5b4
-ch=\ucc28\ubaa8\ub85c\uc5b4
-co=\ucf54\ub974\uc2dc\uce74\uc5b4
-cr=\ud06c\ub9ac\uc5b4
-cs=\uccb4\ucf54\uc5b4
-cu=\uad50\ud68c \uc2ac\ub77c\ube0c\uc5b4
-cv=\ucd94\ubc14\uc26c\uc5b4
-cy=\uc6e8\uc77c\uc2a4\uc5b4
-da=\ub374\ub9c8\ud06c\uc5b4
-de=\ub3c5\uc77c\uc5b4
-dv=\ub514\ubca0\ud788\uc5b4
-dz=\ubd80\ud0c4\uc5b4
-ee=\uc5d0\uc6e8\uc5b4
-el=\uadf8\ub9ac\uc2a4\uc5b4
-en=\uc601\uc5b4
-eo=\uc5d0\uc2a4\ud398\ub780\ud1a0\uc5b4
-es=\uc2a4\ud398\uc778\uc5b4
-et=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4
-eu=\ubc14\uc2a4\ud06c\uc5b4
-fa=\uc774\ub780\uc5b4
-ff=\ud480\ub77c\ub2c8\uc5b4
-fi=\ud540\ub780\ub4dc\uc5b4
-fj=\ud53c\uc9c0\uc5b4
-fo=\ud398\ub85c\uc2a4\uc5b4
-fr=\ud504\ub791\uc2a4\uc5b4
-fy=\ud504\ub9ac\uc9c0\uc544\uc5b4
-ga=\uc544\uc77c\ub79c\ub4dc\uc5b4
-gd=\uc2a4\ucf54\uac24\ub9ad\uc5b4
-gl=\uac08\ub9ac\uc2dc\uc544\uc5b4
-gn=\uad6c\uc544\ub77c\ub2c8\uc5b4
-gu=\uad6c\uc790\ub77c\ud2b8\uc5b4
-gv=\ub9f9\ud06c\uc2a4\uc5b4
-ha=\ud558\uc6b0\uc790\uc5b4
-he=\ud788\ube0c\ub9ac\uc5b4
-hi=\ud78c\ub514\uc5b4
-ho=\ud788\ub9ac\ubaa8\ud22c\uc5b4
-hr=\ud06c\ub85c\uc544\ud2f0\uc544\uc5b4
-ht=\uc544\uc774\ud2f0\uc5b4
-hu=\ud5dd\uac00\ub9ac\uc5b4
-hy=\uc544\ub974\uba54\ub2c8\uc544\uc5b4
-hz=\ud5e4\ub808\ub85c\uc5b4
-ia=\uc778\ud130\ub9c1\uac70
-id=\uc778\ub3c4\ub124\uc2dc\uc544\uc5b4
-ie=\uc778\ud130\ub9c1\uac8c\uc5b4
-ig=\uc774\uadf8\ubcf4\uc5b4
-ii=\uc4f0\ucd28 \uc774\uc5b4
-ik=\uc774\ub204\ud53c\uc544\ud06c\uc5b4
-in=\uc778\ub3c4\ub124\uc2dc\uc544\uc5b4
-io=\uc774\ub3c4\uc5b4
-is=\uc544\uc774\uc2ac\ub780\ub4dc\uc5b4
-it=\uc774\ud0c8\ub9ac\uc544\uc5b4
-iu=\uc774\ub205\ud2f0\ud22c\ud2b8\uc5b4
-iw=\ud788\ube0c\ub9ac\uc5b4
-ja=\uc77c\ubcf8\uc5b4
-ji=\uc774\ub514\uc2dc\uc5b4
-jv=\uc790\ubc14\uc5b4
-ka=\uadf8\ub8e8\uc9c0\uc57c\uc5b4
-kg=\ucf69\uace0\uc5b4
-ki=\ud0a4\ucfe0\uc720\uc5b4
-kj=\ucf74\uc57c\ub9c8\uc5b4
-kk=\uce74\uc790\ud750\uc5b4
-kl=\uadf8\ub9b0\ub79c\ub4dc\uc5b4
-km=\uce84\ubcf4\ub514\uc544\uc5b4
-kn=\uce74\ub098\ub2e4\uc5b4
-ko=\ud55c\uad6d\uc5b4
-kr=\uce74\ub204\ub9ac\uc5b4
-ks=\uce74\uc288\ubbf8\ub974\uc5b4
-ku=\ud06c\ub974\ub4dc\uc5b4
-kv=\ucf54\ubbf8\uc5b4
-kw=\ucf58\uc6d4\uc5b4
-ky=\ud0a4\ub974\uae30\uc2a4\uc5b4
-la=\ub77c\ud2f4\uc5b4
-lb=\ub8e9\uc148\ubd80\ub974\ud06c\uc5b4
-lg=\uac04\ub2e4\uc5b4
-li=\ub9bc\ubc84\uadf8\uc5b4
-ln=\ub9c1\uac08\ub77c\uc5b4
-lo=\ub77c\uc624\uc5b4
-lt=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4
-lu=\ub8e8\ubc14\uc5b4(\uce74\ud0d5\uac00)
-lv=\ub77c\ud2b8\ube44\uc544\uc5b4(\ub808\ud2b8\uc5b4)
-mg=\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974\uc5b4
-mh=\ub9c8\uc15c\uc81c\ub3c4\uc5b4
-mi=\ub9c8\uc624\ub9ac\uc5b4
-mk=\ub9c8\ucf00\ub3c4\ub2c8\uc544\uc5b4
-ml=\ub9d0\ub77c\uc584\ub78c\uc5b4
-mn=\ubabd\uace8\uc5b4
-mo=\ubab0\ub2e4\ube44\uc544\uc5b4
-mr=\ub9c8\ub77c\ud2f0\uc5b4
-ms=\ub9d0\ub808\uc774\uc5b4
-mt=\ubab0\ud0c0\uc5b4
-my=\ubc84\ub9c8\uc5b4
-na=\ub098\uc6b0\ub8e8\uc5b4
-nb=\ub178\ub974\uc6e8\uc774\uc5b4(\ubd81\ubab0)
-nd=\ubd81\ubd80 \uc740\ub370\ubca8\ub808
-ne=\ub124\ud314\uc5b4
-ng=\uc740\ub3d9\uac00\uc5b4
-nl=\ub124\ub35c\ub780\ub4dc\uc5b4
-nn=\ub178\ub974\uc6e8\uc774\uc5b4(\ub2c8\ub178\ub974\uc2a4\ud06c)
-no=\ub178\ub974\uc6e8\uc774\uc5b4
-nr=\ub0a8\ubd80 \uc740\ub370\ubca8\ub808
-nv=\ub098\ubc14\ud638\uc5b4
-ny=\ub2c8\uc580\uc790\uc5b4
-oc=\uc625\uc2dc\ud2b8\uc5b4
-oj=\uc624\uc9c0\ube0c\uc640\uc5b4
-om=\uc624\ub85c\ubaa8\uc5b4(\uc544\ud310)
-or=\uc624\ub9ac\uc57c\uc5b4
-os=\uc624\uc138\ud2f0\uc548\uc5b4
-pa=\ud380\uc7a1\uc5b4
-pi=\ud314\ub9ac\uc5b4
-pl=\ud3f4\ub780\ub4dc\uc5b4
-ps=\ud30c\uc2dc\ud1a0\uc5b4(\ud478\uc2dc\ud1a0)
-pt=\ud3ec\ub974\ud22c\uce7c\uc5b4
-qu=\ucf00\ucd94\uc544\uc5b4
-rm=\ub808\ud1a0\ub85c\ub9cc\uc5b4
-rn=\ubc18\ud22c\uc5b4(\ubd80\ub8ec\ub514)
-ro=\ub8e8\ub9c8\ub2c8\uc544\uc5b4
-ru=\ub7ec\uc2dc\uc544\uc5b4
-rw=\ubc18\ud22c\uc5b4(\ub8e8\uc644\ub2e4)
-sa=\uc0b0\uc2a4\ud06c\ub9ac\ud2b8\uc5b4
-sc=\uc0ac\ub974\ub514\ub2c8\uc544\uc5b4
-sd=\uc2e0\ub514\uc5b4
-se=\ubd81\ubd80 \uc0ac\ubbf8\uc5b4
-sg=\uc0b0\uace0\uc5b4
-si=\uc2a4\ub9ac\ub791\uce74\uc5b4
-sk=\uc2ac\ub85c\ubc14\ud0a4\uc544\uc5b4
-sl=\uc2ac\ub85c\ubca0\ub2c8\uc544\uc5b4
-sm=\uc0ac\ubaa8\uc544\uc5b4
-sn=\uc1fc\ub098\uc5b4
-so=\uc18c\ub9d0\ub9ac\uc544\uc5b4
-sq=\uc54c\ubc14\ub2c8\uc544\uc5b4
-sr=\uc138\ub974\ube44\uc544\uc5b4
-ss=\uc2dc\uc2a4\uc640\ud2f0\uc5b4
-st=\uc138\uc18c\ud1a0\uc5b4
-su=\uc21c\ub2e8\uc5b4
-sv=\uc2a4\uc6e8\ub374\uc5b4
-sw=\uc2a4\uc640\ud790\ub9ac\uc5b4
-ta=\ud0c0\ubc00\uc5b4
-te=\ud154\ub8e8\uad6c\uc5b4
-tg=\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4\uc5b4
-th=\ud0dc\uad6d\uc5b4
-ti=\ud2f0\uadf8\ub9ac\ub0d0\uc5b4
-tk=\ud22c\ub974\ud06c\uba58\uc5b4
-tl=\ud0c0\uac08\ub85c\uadf8\uc5b4
-tn=\uc138\uce20\uc640\ub098\uc5b4
-to=\ud1b5\uac00\uc5b4
-tr=\ud130\ud0a4\uc5b4
-ts=\ud1b5\uac00\uc5b4
-tt=\ud0c0\ud0c0\ub974\uc5b4
-tw=\ud2b8\uc704\uc5b4
-ty=\ud0c0\ud788\ud2f0\uc548\uc5b4
-ug=\uc704\uad6c\ub974\uc5b4
-uk=\uc6b0\ud06c\ub77c\uc774\ub098\uc5b4
-ur=\uc6b0\ub974\ub450\uc5b4
-uz=\uc6b0\uc988\ubca0\ud06c\uc5b4
-ve=\ubca4\ub2e4\uc5b4
-vi=\ubca0\ud2b8\ub0a8\uc5b4
-vo=\ubcfc\ub77c\ud4cc\ud06c\uc5b4
-wa=\uc648\ub8ec\uc5b4
-wo=\uc62c\ub85c\ud504\uc5b4
-xh=\ubc18\ud22c\uc5b4(\ub0a8\uc544\ud504\ub9ac\uce74)
-yi=\uc774\ub514\uc2dc\uc5b4
-yo=\uc694\ub8e8\ubc14\uc5b4
-za=\uc8fc\uc559\uc5b4
-zh=\uc911\uad6d\uc5b4
-zu=\uc904\ub8e8\uc5b4
-
-# key is ISO 639.2 language code
-aar=\uC544\uD30C\uB974\uC5B4
-abk=\uC544\uBE0C\uD558\uC988\uC5B4
-ace=\uC544\uCCB4\uC5B4
-ach=\uC544\uCF5C\uB9AC\uC5B4
-ada=\uC544\uB2F9\uBA54\uC5B4
-ady=\uC544\uB2E5\uD5E4\uC5B4
-afa=\uC544\uD504\uAC00\uB2C8(1927-2002)
-afh=\uC544\uD504\uB9AC\uD788\uB9AC\uC5B4
-afr=\uB0A8\uC544\uACF5 \uACF5\uC6A9\uC5B4
-ain=\uC544\uC774\uB204\uC5B4
-aka=\uC544\uCE78\uC5B4
-akk=\uC544\uCE74\uB4DC\uC5B4
-alb=\uC54C\uBC14\uB2C8\uC544\uC5B4
-ale=\uC54C\uB958\uD2B8\uC5B4
-alg=\uC54C\uACF5\uD0A8\uC5B4\uC871
-alt=\uB0A8\uBD80 \uC54C\uD0C0\uC774\uC81C\uC5B4
-amh=\uC554\uD558\uB77C\uC5B4
-ang=\uB124\uB35C\uB780\uB4DC\uB839 \uC548\uD2F8\uB808\uC2A4 \uAE38\uB354
-anp=\uC559\uAC00\uC5B4
-apa=\uC544\uD30C\uCE58\uC5B4
-ara=\uC544\uB78D\uC5B4
-arc=\uC544\uB78C\uC5B4
-arg=\uC544\uB77C\uACE4\uC5B4
-arm=\uC544\uB974\uBA54\uB2C8\uC544\uC5B4
-arn=\uC544\uB77C\uC6B0\uCE78\uC5B4
-arp=\uC544\uB77C\uD30C\uD638\uC5B4
-art=\uAE30\uACC4\uC5B4(\uAE30\uD0C0)
-arw=\uC544\uB77C\uC640\uD06C\uC5B4
-asm=\uC544\uC0D8\uC5B4
-ast=\uC544\uC2A4\uD22C\uB9AC\uC544\uC5B4
-ath=\uC544\uD0C0\uD30C\uC2A4\uCE74\uC5B4\uAD70
-aus=\uC624\uC2A4\uD2B8\uB808\uC77C\uB9AC\uC544\uC5B4\uC871
-ava=\uC544\uBC14\uB974\uC5B4
-ave=\uC544\uBCA0\uC2A4\uD0C0\uC5B4
-awa=\uC544\uC640\uD788\uC5B4
-aym=\uC544\uC774\uB9C8\uB77C\uC5B4
-aze=\uC544\uC81C\uB974\uBC14\uC774\uC794\uC5B4
-bad=\uBCF4\uC2A4\uB2C8\uC544-\uD5E4\uB974\uCCB4\uACE0\uBE44\uB098 \uB514\uB098\uB974
-bai=\uBC14\uBC00\uB808\uCF00\uC5B4\uC871
-bak=\uBC14\uC288\uD0A4\uB974\uC5B4
-bal=\uBC1C\uB8E8\uCE58\uC5B4
-bam=\uBC24\uBC14\uB77C\uC5B4
-ban=\uBC1C\uB9AC\uC5B4
-baq=\uBC14\uC2A4\uD06C\uC5B4
-bas=\uBC14\uC0AC\uC5B4
-bat=\uBC1C\uD2B8\uC5B4(\uAE30\uD0C0)
-bej=\uBCA0\uC790\uC5B4
-bel=\uBCA8\uB77C\uB8E8\uC2A4\uC5B4
-bem=\uBCB0\uBC14\uC5B4
-ben=\uBCB5\uACE8\uC5B4
-ber=\uBCA0\uB974\uBCA0\uB974\uC5B4
-bho=\uD638\uC988\uD478\uB9AC\uC5B4
-bih=\uBE44\uD558\uB974\uC5B4
-bik=\uBE44\uCF5C\uC5B4
-bin=\uBE44\uB2C8\uC5B4
-bis=\uBE44\uC2AC\uB77C\uB9C8\uC5B4
-bla=\uC2DD\uC2DC\uCE74\uC5B4
-bnt=\uBC18\uD22C\uC5B4
-bos=\uBCF4\uC2A4\uB2C8\uC544\uC5B4
-bra=\uBE0C\uB77C\uC9C0\uC5B4
-bre=\uBE0C\uB77C\uC9C8 \uD06C\uB8E8\uC81C\uC774\uB8E8 (1990-1993)
-btk=\uBC14\uD0C0\uD06C\uC5B4
-bua=\uBD80\uB9AC\uC544\uD0C0
-bug=\uBD80\uAE30\uC5B4
-bul=\uBD88\uAC00\uB9AC\uC544\uC5B4
-bur=\uBC84\uB9C8\uC5B4
-byn=\uBE0C\uB9B0\uC5B4
-cad=\uCE74\uB3C4\uC5B4
-cai=\uC911\uC559 \uC544\uBA54\uB9AC\uCE74 \uC778\uB514\uC548\uC5B4(\uAE30\uD0C0)
-car=\uCE74\uB9AC\uBE0C\uC5B4
-cat=\uCE74\uD0C8\uB85C\uB2C8\uC544\uC5B4
-cau=\uCE74\uD504\uCE74\uC2A4\uC5B4(\uAE30\uD0C0)
-ceb=\uC138\uBD80\uC544\uB178\uC5B4
-cel=\uCF08\uD2B8\uC5B4(\uAE30\uD0C0)
-cha=\uCC28\uBAA8\uB85C\uC5B4
-chb=\uCE58\uBE0C\uCC28\uC5B4
-che=\uCCB4\uCCB8\uC5B4
-chg=\uCC28\uAC00\uD0C0\uC774\uC5B4
-chi=\uC911\uAD6D\uC5B4
-chk=\uCD94\uD06C\uC5B4
-chm=\uB9C8\uB9AC\uC5B4
-chn=\uCE58\uB204\uD06C\uC5B4\uC640 \uC601\uC5B4 \uD504\uB791\uC2A4\uC5B4\uC758 \uD63C\uC131\uC5B4
-cho=\uCD09\uD1A0\uC5B4
-chp=\uCE58\uD398\uC6B0\uC580
-chr=\uCCB4\uB85C\uD0A4 \uBB38\uC790
-chu=\uAD50\uD68C \uC2AC\uB77C\uBE0C\uC5B4
-chv=\uCD94\uBC14\uC26C\uC5B4
-chy=\uC0E4\uC774\uC5D4\uC5B4
-cmc=\uCC38\uC5B4\uAD70
-cop=\uCF65\uD2B8 \uBB38\uC790
-cor=\uCF58\uC6D4\uC5B4
-cos=\uCF54\uB974\uC2DC\uCE74\uC5B4
-cpe=\uD06C\uB9AC\uC62C\uC5B4 \uBC0F \uD53C\uC9C4\uC5B4(\uC601\uC5B4\uB97C \uAE30\uBC18\uC73C\uB85C \uD55C \uAE30\uD0C0)
-cpf=\uD06C\uB9AC\uC62C\uC5B4 \uBC0F \uD53C\uC9C4\uC5B4(\uD504\uB791\uC2A4\uC5B4\uB97C \uAE30\uBC18\uC73C\uB85C \uD55C \uAE30\uD0C0)
-cpp=\uD06C\uB9AC\uC62C\uC5B4 \uBC0F \uD53C\uC9C4\uC5B4(\uD3EC\uB974\uD22C\uCE7C\uC5B4\uB97C \uAE30\uBC18\uC73C\uB85C \uD55C \uAE30\uD0C0)
-cre=\uD06C\uB9AC\uC5B4
-crh=\uD06C\uB9AC\uBBFC \uD130\uD0A4\uC5B4; \uD06C\uB9AC\uBBFC \uD0C0\uD0C0\uB974\uC5B4
-crp=\uD06C\uB9AC\uC62C\uC5B4 \uBC0F \uD53C\uC9C4\uC5B4 (\uAE30\uD0C0)
-csb=\uCE74\uC288\uBE44\uC544\uC5B4
-cus=\uCFE0\uC2DC\uC5B4\uC871
-cze=\uCCB4\uCF54\uC5B4
-dak=\uB2E4\uCF54\uD0C0\uC5B4
-dan=\uB374\uB9C8\uD06C\uC5B4
-dar=\uB2E4\uB974\uADF8\uC640\uC5B4
-day=\uB2E4\uC57C\uD06C\uC5B4
-del=\uB378\uB77C\uC6E8\uC5B4\uC5B4
-den=\uC2AC\uB77C\uBE0C\uC5B4
-dgr=\uB3C4\uADF8\uB9AC\uBE0C\uC5B4
-din=\uB529\uCE74\uC5B4
-div=\uB514\uBCA0\uD788\uC5B4
-doi=\uB3C4\uADF8\uB9AC\uC5B4
-dra=\uB4DC\uB77C\uBE44\uB2E4\uC5B4 (\uAE30\uD0C0)
-dsb=\uC800\uC9C0 \uC18C\uB974\uBE44\uC544\uC5B4
-dua=\uB4DC\uC640\uB77C\uC5B4
-dum=\uC911\uC138 \uB124\uB35C\uB780\uB4DC\uC5B4
-dut=\uB124\uB35C\uB780\uB4DC\uC5B4
-dyu=\uB4DC\uC728\uB77C\uC5B4
-dzo=\uBD80\uD0C4\uC5B4
-efi=\uC774\uD53D\uC5B4
-egy=\uC774\uC9D1\uD2B8\uC5B4 (\uACE0\uB300)
-eka=\uC774\uCE74\uC8FD\uC5B4
-elx=\uC5D8\uB78C\uC5B4
-eng=\uC601\uC5B4
-enm=\uC601\uC5B4, \uC911\uC138(1100 - 1500)
-epo=\uC5D0\uC2A4\uD398\uB780\uD1A0\uC5B4
-est=\uC5D0\uC2A4\uD1A0\uB2C8\uC544\uC5B4
-ewe=\uC5D0\uC6E8\uC5B4
-ewo=\uC774\uC6D0\uB3C4\uC5B4
-fan=\uD321\uADF8\uC5B4
-fao=\uD398\uB85C\uC2A4\uC5B4
-fat=\uD310\uD2F0\uC5B4
-fij=\uD53C\uC9C0\uC5B4
-fil=\uD544\uB9AC\uD540\uC5B4
-fin=\uD540\uB780\uB4DC\uC5B4
-fiu=\uD53C\uB178\uC6B0\uADF8\uB9AC\uC544\uC5B4(\uAE30\uD0C0)
-fon=\uD3F0\uC5B4
-fre=\uD504\uB791\uC2A4\uC5B4
-frm=\uC911\uC138 \uD504\uB791\uC2A4\uC5B4
-fro=\uACE0\uB300 \uD504\uB791\uC2A4\uC5B4
-frr=\uBD81\uBD80 \uD504\uB9AC\uC2AC\uB780\uB4DC\uC5B4
-frs=\uB3D9\uBD80 \uD504\uB9AC\uC2AC\uB780\uB4DC\uC5B4
-fry=\uC11C\uBD80 \uD504\uB9AC\uC2AC\uB780\uB4DC\uC5B4
-ful=\uD480\uB77C\uB2C8\uC5B4
-fur=\uD504\uB9AC\uC6B0\uB9AC\uC548\uC5B4
-gaa=\uAC00\uC5B4
-gay=\uAC00\uC694\uC5B4
-gba=\uADF8\uBC14\uC57C\uC5B4
-gem=\uB3C5\uC77C\uC5B4(\uAE30\uD0C0)
-geo=\uADF8\uB8E8\uC9C0\uC57C\uC5B4
-ger=\uB3C5\uC77C\uC5B4
-gez=\uAC8C\uC774\uC988\uC5B4
-gil=\uD0A4\uB9AC\uBC14\uC2DC\uC5B4
-gla=\uAC8C\uC77C\uC5B4
-gle=\uC544\uC77C\uB79C\uB4DC\uC5B4
-glg=\uAC08\uB9AC\uC2DC\uC544\uC5B4
-glv=\uB9F9\uD06C\uC2A4\uC5B4
-gmh=\uC911\uC138 \uACE0\uC9C0 \uB3C5\uC77C\uC5B4
-goh=\uACE0\uB300 \uACE0\uC9C0 \uB3C5\uC77C\uC5B4
-gon=\uACE4\uB514\uC5B4
-gor=\uACE0\uB860\uD0C8\uB85C\uC5B4
-got=\uACE0\uD2B8\uC5B4
-grb=\uAC8C\uB974\uBCF4\uC5B4
-grc=\uADF8\uB9AC\uC2A4\uC5B4, \uACE0\uB300 (1453\uB144\uAE4C\uC9C0)
-gre=\uADF8\uB9AC\uC2A4\uC5B4, \uADFC\uC138(1453\uB144\uBD80\uD130)
-grn=\uAD6C\uC544\uB77C\uB2C8\uC5B4
-gsw=\uB3C5\uC77C\uC5B4(\uC2A4\uC704\uC2A4)
-guj=\uAD6C\uC790\uB77C\uD2B8\uC5B4
-gwi=\uADF8\uC704\uCE5C\uC5B4
-hai=\uD558\uC774\uB2E4\uC5B4
-hat=\uC544\uC774\uD2F0\uC5B4
-hau=\uD558\uC6B0\uC790\uC5B4
-haw=\uD558\uC640\uC774\uC5B4
-heb=\uD788\uBE0C\uB9AC \uBB38\uC790
-her=\uD5E4\uB808\uB85C\uC5B4
-hil=\uD5E4\uB9AC\uAC00\uB1EC\uC5B4
-him=\uD788\uB9C8\uCC28\uB9AC\uC5B4
-hin=\uD78C\uB514\uC5B4
-hit=\uD558\uD0C0\uC774\uD2B8\uC5B4
-hmn=\uD788\uBAB8\uC5B4
-hmo=\uD788\uB9AC\uBAA8\uD22C\uC5B4
-hrv=\uD06C\uB85C\uC544\uD2F0\uC544\uC5B4
-hsb=\uACE0\uC9C0 \uC18C\uB974\uBE44\uC544\uC5B4
-hun=\uD5DD\uAC00\uB9AC\uC5B4
-hup=\uD6C4\uD30C\uC5B4
-iba=\uC774\uBC18\uC5B4
-ibo=\uC774\uADF8\uBCF4\uC5B4
-ice=\uC544\uC774\uC2AC\uB780\uB4DC\uC5B4
-ido=\uC774\uB3C4\uC5B4
-iii=\uC4F0\uCD28 \uC774\uC5B4
-ijo=\uC774\uC870\uC5B4
-iku=\uC774\uB205\uD2F0\uD22C\uD2B8\uC5B4
-ile=\uC778\uD130\uB9C1\uAC8C\uC5B4
-ilo=\uC774\uB85C\uCF54\uC5B4
-ina=\uC778\uD130\uB9C1\uAC70(\uAD6D\uC81C \uBCF4\uC870 \uC5B8\uC5B4 \uD611\uD68C)
-inc=\uC778\uB3C4\uC5B4(\uAE30\uD0C0)
-ind=\uC778\uB3C4\uB124\uC2DC\uC544\uC5B4
-ine=\uC778\uB3C4\uC720\uB7FD\uC5B4(\uAE30\uD0C0)
-inh=\uC778\uADC0\uC2DC\uC5B4
-ipk=\uC774\uB204\uD53C\uC544\uD06C\uC5B4
-ira=\uC774\uB780\uC5B4 [ira]
-iro=\uC774\uB7EC\uCFFC\uC774\uC5B4
-ita=\uC774\uD0C8\uB9AC\uC544\uC5B4
-jav=\uC790\uBC14\uC5B4
-jbo=\uB85C\uBC18\uC5B4
-jpn=\uC77C\uBCF8\uC5B4
-jpr=\uC720\uB300-\uD398\uB974\uC2DC\uC544\uC5B4
-jrb=\uC720\uB300-\uC544\uB77C\uBE44\uC544\uC5B4
-kaa=\uCE74\uB77C\uCE7C\uD30C\uD06C\uC5B4
-kab=\uCEE4\uBC14\uC77C\uC5B4
-kac=\uCE74\uCE5C\uC5B4
-kal=\uCE7C\uB784\uB9AC\uC218\uD2B8
-kam=\uCE84\uBC14\uC5B4
-kan=\uCE78\uB098\uB2E4 \uBB38\uC790
-kar=\uCE74\uB80C\uC5B4
-kas=\uCE74\uC288\uBBF8\uB974\uC5B4
-kau=\uCE74\uB204\uB9AC\uC5B4
-kaw=\uCE74\uC704\uC5B4
-kaz=\uCE74\uC790\uD750\uC5B4
-kbd=\uCE74\uBC14\uB974\uB514\uC5B4
-kha=\uCE74\uC2DC\uC5B4
-khi=\uCF54\uC774\uC0B0\uC5B4
-khm=\uC911\uC559 \uD06C\uBA54\uB974 \uBB38\uC790
-kho=\uD638\uD0C4\uC5B4
-kik=\uD0A4\uCFE0\uC720\uC5B4
-kin=\uBC18\uD22C\uC5B4(\uB8E8\uC644\uB2E4)
-kir=\uD0A4\uB974\uAE30\uC2A4\uC5B4
-kmb=\uD0B4\uBD84\uB450\uC5B4
-kok=\uCF54\uCE74\uB2C8\uC5B4
-kom=\uCF54\uBBF8\uC5B4
-kon=\uCF69\uACE0\uC5B4
-kor=\uD55C\uAD6D\uC5B4
-kos=\uCF54\uC2A4\uB77C\uC774\uC5D4\uC5B4
-kpe=\uD06C\uD3A0\uB808\uC5B4
-krc=\uCE74\uB77C\uCC60\uC774-\uBC1C\uCE74\uB974\uC5B4
-krl=\uCE74\uB810\uB9AC\uC57C\uC5B4
-kro=\uD06C\uB8E8\uC5B4
-kru=\uCFE0\uB974\uD06C\uC5B4
-kua=\uCFE0\uC548\uC57C\uB9C8\uC5B4
-kum=\uCFE0\uBBF9\uC5B4
-kur=\uD06C\uB974\uB4DC\uC5B4
-kut=\uCFE0\uD14C\uB124\uC5B4
-lad=\uB77C\uB514\uB178\uC5B4
-lah=\uB77C\uD55C\uB2E4\uC5B4
-lam=\uB78C\uBC14\uC5B4
-lao=\uB77C\uC624\uC5B4
-lat=\uB77C\uD2F4\uC5B4
-lav=\uB77C\uD2B8\uBE44\uC544\uC5B4
-lez=\uB808\uC988\uAE30\uC548\uC5B4
-lim=\uB9BC\uBC84\uADF8\uC5B4
-lin=\uB9C1\uAC08\uB77C\uC5B4
-lit=\uB9AC\uD22C\uC544\uB2C8\uC544\uC5B4
-lol=\uBABD\uAD6C\uC5B4
-loz=\uB85C\uC9C0\uC5B4
-ltz=\uB8E9\uC148\uBD80\uB974\uD06C\uC5B4
-lua=\uB8E8\uBC14-\uB8F0\uB8E8\uC544\uC5B4
-lub=\uB8E8\uBC14\uC5B4(\uCE74\uD0D5\uAC00)
-lug=\uAC04\uB2E4\uC5B4
-lui=\uB8E8\uC774\uC138\uB178\uC5B4
-lun=\uB8EC\uB2E4\uC5B4
-luo=\uB8E8\uC624\uC5B4
-lus=\uB8E8\uC0E4\uC774\uC5B4
-mac=\uB9C8\uCF00\uB3C4\uB2C8\uC544\uC5B4
-mad=\uBAA8\uB85C\uCF54 \uB514\uB818
-mag=\uB9C8\uAC00\uD788
-mah=\uB9D0\uC0B4\uB808\uC2A4\uC5B4
-mai=\uB9C8\uC774\uD2F8\uB9AC
-mak=\uB9C8\uCE74\uC0AC\uC5B4
-mal=\uB9D0\uB77C\uC584\uB78C\uC5B4
-man=\uB9CC\uB529\uACE0\uC5B4
-mao=\uB9C8\uC624\uB9AC\uC5B4
-map=\uB0A8\uB3C4\uC5B4
-mar=\uB9C8\uB77C\uD2F0\uC5B4
-mas=\uB9C8\uC0AC\uC774\uC5B4
-may=\uB9D0\uB808\uC774\uC5B4
-mdf=\uBAA8\uD06C\uC0E4\uC5B4
-mdr=\uB9CC\uB2E4\uB974\uC5B4
-men=\uBA58\uB370\uC5B4
-mga=\uC544\uC77C\uB79C\uB4DC\uC5B4, \uC911\uC138(900 - 1200\uB144)
-mic=\uBBF8\uD06C\uB9E5\uC5B4
-min=\uBBF8\uB0AD\uCE74\uBC14\uC6B0
-mis=\uAE30\uD0C0 \uC5B8\uC5B4
-mkh=\uBAAC\uD06C\uBA54\uB974\uC5B4 (\uAE30\uD0C0)
-mlg=\uB9C8\uB2E4\uAC00\uC2A4\uCE74\uB974\uC5B4
-mlt=\uBAB0\uD0C0\uC5B4
-mnc=\uB9CC\uC8FC\uC5B4
-mni=\uB9C8\uB2C8\uD478\uB9AC\uC5B4
-mno=\uB9C8\uB178\uBCF4\uC5B4
-moh=\uBAA8\uD638\uD06C\uC5B4
-mon=\uBABD\uACE8\uC5B4
-mos=\uBAA8\uC2DC\uC5B4
-mul=\uB2E4\uC911 \uC5B8\uC5B4
-mun=\uBB38\uB2E4\uC5B4
-mus=\uD06C\uB9AC\uD06C\uC5B4
-mwl=\uBBF8\uB780\uB370\uC5B4
-mwr=\uB9C8\uB974\uC640\uB9AC\uC5B4
-myn=\uB9C8\uC57C\uC5B4
-myv=\uC5D8\uC988\uC57C\uC5B4
-nah=\uB098\uC6B0\uC544\uD2C0\uC5B4
-nai=\uBD81\uC544\uBA54\uB9AC\uCE74 \uC778\uB514\uC5B8\uC5B4 (\uAE30\uD0C0)
-nap=\uB098\uD3F4\uB9AC\uC5B4
-nau=\uB098\uC6B0\uB8E8\uC5B4
-nav=\uB098\uBC14\uD638\uC5B4
-nbl=\uB370\uBCA0\uB808\uC5B4, \uB0A8\uBD80
-nde=\uB370\uBCA0\uB808\uC5B4, \uBD81\uBD80
-ndo=\uC740\uB3D9\uAC00\uC5B4
-nds=\uC800\uC9C0 \uB3C5\uC77C\uC5B4
-nep=\uB124\uD314\uC5B4
-new=\uB124\uC640\uB974\uC5B4
-nia=\uB2C8\uC544\uC2A4\uC5B4
-nic=\uB2C8\uCE74\uB77C\uACFC \uCF54\uB974\uB3C4\uBC14
-niu=\uB2C8\uC6E8\uC5B8\uC5B4
-nno=\uB178\uB974\uC6E8\uC774\uC5B4(\uB2C8\uB178\uB974\uC2A4\uD06C)
-nob=\uB178\uB974\uC6E8\uC774\uC5B4(\uBD81\uBAB0)
-nog=\uB178\uAC00\uC774\uC5B4
-non=\uB178\uB974\uC6E8\uC774, \uACE0\uB300
-nor=\uB178\uB974\uC6E8\uC774\uC5B4
-nqo=\uC751\uCF54\uC5B4
-nso=\uC18C\uD1A0\uC5B4(\uBD81\uBD80)
-nub=\uB204\uBE44\uC548\uC5B4
-nwc=\uB124\uC640\uB974\uC5B4 (\uACE0\uC804)
-nya=\uCE58\uCCB4\uC640\uC5B4
-nym=\uB2C8\uC554\uC6E8\uC9C0\uC5B4
-nyn=\uB2C8\uC548\uCF5C\uC5B4
-nyo=\uB274\uB85C\uC5B4
-nzi=\uB290\uC9C0\uB9C8\uC5B4
-oci=\uC625\uC2DC\uD2B8\uC5B4(1500\uB144 \uC774\uD6C4)
-oji=\uC624\uC9C0\uBE0C\uC640\uC5B4
-ori=\uC624\uB9AC\uC57C\uC5B4
-orm=\uC624\uB85C\uBAA8\uC5B4
-osa=\uC624\uC138\uC774\uC9C0\uC5B4
-oss=\uC624\uC138\uD2F0\uC548\uC5B4
-ota=\uD130\uD0A4\uC5B4, \uC624\uC2A4\uB9CC(1500-1928)
-oto=\uC624\uD1A0\uBBF8\uC548\uC5B4
-paa=\uD30C\uD478\uC544\uC5B4(\uAE30\uD0C0)
-pag=\uD310\uAC00\uC2DC\uB09C\uC5B4
-pal=\uD314\uB808\uBE44\uC5B4
-pam=\uD31C\uD321\uAC00\uC5B4
-pan=\uD380\uC7A1\uC5B4
-pap=\uD30C\uD53C\uC544\uBA3C\uD1A0\uC5B4
-pau=\uD30C\uB77C\uC6B0\uC548\uC5B4
-peo=\uACE0\uB300 \uD398\uB974\uC2DC\uC544\uC5B4
-per=\uD398\uB974\uC2DC\uC544\uC5B4
-phi=\uD544\uB9AC\uD540\uC5B4(\uAE30\uD0C0)
-phn=\uD398\uB2C8\uD0A4\uC544\uC5B4
-pli=\uD314\uB9AC\uC5B4
-pol=\uD3F4\uB780\uB4DC\uC5B4
-pon=\uD3FC\uD398\uC774\uC5B4
-por=\uD3EC\uB974\uD22C\uCE7C\uC5B4
-pra=\uD504\uB77C\uD06C\uB9AC\uD2B8\uC5B4
-pro=\uACE0\uB300 \uD504\uB85C\uBC29\uC2A4\uC5B4
-pus=\uD30C\uC288\uD1A0(\uD30C\uC288\uD1A0\uC5B4)
-que=\uCF00\uCD94\uC544\uC5B4
-raj=\uB77C\uC790\uC2A4\uD0C4\uC5B4
-rap=\uB77C\uD30C\uB274\uC774
-rar=\uB77C\uB85C\uD1B5\uAC00\uC5B4
-roa=\uB85C\uB9DD\uC2A4\uC5B4(\uAE30\uD0C0)
-roh=\uB85C\uB9DD\uC288\uC5B4
-rom=\uC9D1\uC2DC\uC5B4
-rum=\uB8E8\uB9C8\uB2C8\uC544\uC5B4
-run=\uB8EC\uB514\uC5B4
-rup=\uC544\uB85C\uB9C8\uB2C8\uC544\uC5B4
-rus=\uB7EC\uC2DC\uC544\uC5B4
-sad=\uC0B0\uB2E4\uC6E8\uC5B4
-sag=\uC0B0\uACE0\uC5B4
-sah=\uC57C\uD050\uD2B8\uC5B4
-sai=\uB0A8\uC544\uBA54\uB9AC\uCE74 \uC778\uB514\uC5B8\uC5B4 (\uAE30\uD0C0)
-sal=\uC0D0\uB9AC\uC2DC\uC5B4\uC5B4
-sam=\uC0AC\uB9C8\uB9AC\uC544 \uC544\uB78D\uC5B4
-san=\uC0B0\uC2A4\uD06C\uB9AC\uD2B8\uC5B4
-sas=\uC0AC\uC0AC\uD06C\uC5B4
-sat=\uC0B0\uD0C8\uB9AC\uC5B4
-scn=\uC2DC\uCE60\uB9AC\uC544\uC5B4
-sco=\uC2A4\uCF54\uD2C0\uB79C\uB4DC\uC5B4
-sel=\uC140\uCFE0\uD504\uC5B4
-sem=\uC148\uC5B4(\uAE30\uD0C0)
-sga=\uC544\uC77C\uB79C\uB4DC, \uACE0\uB300 (900\uB144\uAE4C\uC9C0)
-sgn=\uC218\uD654
-shn=\uC0E8\uC5B4
-sid=\uC2DC\uB2E4\uBAA8\uC5B4
-sin=\uC2A4\uB9AC\uB791\uCE74\uC5B4
-sio=\uC218\uC871\uC5B4
-sit=\uC2AC\uB85C\uBCA0\uB2C8\uC544 \uD1A8\uB77C\uB974
-sla=\uC2AC\uB77C\uBE0C\uC5B4
-slo=\uC2AC\uB85C\uBC14\uD0A4\uC544\uC5B4
-slv=\uC2AC\uB85C\uBCA0\uB2C8\uC544\uC5B4
-sma=\uB0A8\uBD80 \uC0AC\uBBF8\uC5B4
-sme=\uBD81\uBD80 \uC0AC\uBBF8\uC5B4
-smi=\uC0AC\uBBF8\uC5B4 (\uAE30\uD0C0)
-smj=\uB8F0\uB808 \uC0AC\uBBF8\uC5B4
-smn=\uC774\uB098\uB9AC \uC0AC\uBBF8\uC5B4
-smo=\uC0AC\uBAA8\uC544\uC5B4
-sms=\uC2A4\uCF5C\uD2B8 \uC0AC\uBBF8\uC5B4
-sna=\uC1FC\uB098\uC5B4
-snd=\uC2E0\uB514\uC5B4
-snk=\uC18C\uB2CC\uCF00\uC5B4
-sog=\uC18C\uADF8\uB514\uC5D4\uC5B4
-som=\uC18C\uB9D0\uB9AC\uC544\uC5B4
-son=\uC1A1\uAC00\uC774\uC871\uC5B4
-sot=\uC18C\uD1A0\uC5B4, \uB0A8\uBD80
-spa=\uC2A4\uD398\uC778\uC5B4
-srd=\uC0AC\uB974\uB514\uB2C8\uC544\uC5B4
-srn=\uC2A4\uB77C\uB09C \uD1B5\uAC00\uC5B4
-srp=\uC138\uB974\uBE44\uC544\uC5B4
-srr=\uC138\uB808\uB974\uC5B4
-ssa=\uB2C8\uB85C-\uC0AC\uD558\uB78C\uC5B4 (\uAE30\uD0C0)
-ssw=\uC2DC\uC2A4\uC640\uD2F0\uC5B4
-suk=\uC218\uCFE0\uB9C8\uC871\uC5B4
-sun=\uC21C\uB2E8\uC5B4
-sus=\uC218\uC218\uC5B4
-sux=\uC218\uBA54\uB974\uC5B4
-swa=\uC2A4\uC640\uD790\uB9AC\uC5B4
-swe=\uC2A4\uC6E8\uB374\uC5B4
-syc=\uC2DC\uB9AC\uC544\uC5B4(\uACE0\uC804)
-syr=\uC2DC\uB9AC\uC544\uC5B4
-tah=\uD0C0\uD788\uD2F0\uC548\uC5B4
-tai=\uD0DC\uAD6D\uC5B4(\uAE30\uD0C0)
-tam=\uD0C0\uBC00\uC5B4
-tat=\uD0C0\uD0C0\uB974\uC5B4
-tel=\uD154\uB8E8\uAD6C\uC5B4
-tem=\uD300\uB2C8\uC5B4
-ter=\uD14C\uB808\uB178\uC5B4
-tet=\uD14C\uD23C\uC5B4
-tgk=\uD0C0\uC9C0\uD0A4\uC2A4\uD0C4\uC5B4
-tgl=\uD0C0\uAC08\uB85C\uADF8\uC5B4
-tha=\uD0DC\uAD6D\uC5B4
-tib=\uD2F0\uBCA0\uD2B8\uC5B4
-tig=\uD2F0\uADF8\uB808\uC5B4
-tir=\uD2F0\uADF8\uB9AC\uB0D0\uC5B4
-tiv=\uD2F0\uBE44\uC5B4
-tkl=\uD1A0\uCF08\uB77C\uC6B0\uC81C\uB3C4
-tlh=\uD074\uB9C1\uC628\uC5B4
-tli=\uD2C0\uB9C1\uAE43\uC871\uC5B4
-tmh=\uD0C0\uB9C8\uC139\uC5B4
-tog=\uD1B5\uAC00\uC5B4(\uB2C8\uC544\uC0B4\uB79C\uB4DC)
-ton=\uD1B5\uAC00\uC5B4(\uD1B5\uAC00 \uC12C)
-tpi=\uD1A0\uD06C \uD53C\uC2E0\uC5B4
-tsi=\uD2B8\uC2EC\uC2DC\uC548\uC5B4
-tsn=\uC138\uCE20\uC640\uB098\uC5B4
-tso=\uD1B5\uAC00\uC5B4
-tuk=\uD22C\uB974\uD06C\uBA58\uC5B4
-tum=\uD23C\uBD80\uCE74\uC5B4
-tup=\uD22C\uD53C\uC5B4
-tur=\uD130\uD0A4\uC5B4
-tut=\uC54C\uD0C0\uC774\uC81C\uC5B4 (\uAE30\uD0C0)
-tvl=\uD22C\uBC1C\uB8E8\uC5B4
-twi=\uD2B8\uC704\uC5B4
-tyv=\uD22C\uBE44\uB2C8\uC548\uC5B4
-udm=\uC6B0\uB4DC\uB9D0\uD2B8\uC5B4
-uga=\uC6B0\uAC00\uB9AC\uD2B8 \uBB38\uC790
-uig=\uC704\uAD6C\uB974\uC5B4
-ukr=\uC6B0\uD06C\uB77C\uC774\uB098\uC5B4
-umb=\uC724\uBC88\uB450\uC5B4
-und=\uACB0\uC815\uB418\uC9C0\uC54A\uC74C
-urd=\uC6B0\uB974\uB450\uC5B4
-uzb=\uC6B0\uC988\uBCA0\uD06C\uC5B4
-vai=\uBC14\uC774 \uBB38\uC790
-ven=\uBCA4\uB2E4\uC5B4
-vie=\uBCA0\uD2B8\uB0A8\uC5B4
-vol=\uBCFC\uB77C\uD4CC\uD06C\uC5B4
-vot=\uBCF4\uD2F1\uC5B4
-wak=\uC640\uCE74\uC0E8\uC5B4
-wal=\uC640\uB77C\uBAA8\uC5B4
-war=\uC640\uB77C\uC774\uC5B4
-was=\uC640\uC1FC\uC5B4
-wel=\uC6E8\uC77C\uC2A4\uC5B4
-wen=\uC18C\uB974\uBE0C\uC5B4
-wln=\uC648\uB8EC\uC5B4
-wol=\uC62C\uB85C\uD504\uC5B4
-xal=\uCE7C\uBBF8\uD06C\uC5B4
-xho=\uBC18\uD22C\uC5B4(\uB0A8\uC544\uD504\uB9AC\uCE74)
-yao=\uC57C\uC624\uC871\uC5B4
-yap=\uC58D\uD398\uC138\uC5B4
-yid=\uC774\uB514\uC2DC\uC5B4
-yor=\uC694\uB8E8\uBC14\uC5B4
-ypk=\uC57C\uD53D\uC5B4
-zap=\uC0AC\uD3EC\uD14C\uD06C\uC5B4
-zbl=\uBE14\uB9AC\uC2A4\uAE30\uD638 \uBB38\uC790
-zen=\uC81C\uB098\uAC00\uC5B4
-zha=\uC8FC\uC559\uC5B4
-znd=\uC544\uC794\uB370\uC871\uC5B4
-zul=\uC904\uB8E8\uC5B4
-zun=\uC8FC\uB2C8\uC5B4
-zxx=\uC5B8\uC5B4 \uCF58\uD150\uCE20 \uC5C6\uC74C
-zza=\uC790\uC790\uC5B4
-
-# script names
-# key is ISO 15924 script code
-
-Arab=\uC544\uB78D \uBB38\uC790
-Armi=\uC81C\uAD6D \uC544\uB78C\uC5B4
-Armn=\uC544\uB974\uBA54\uB2C8\uC544 \uBB38\uC790
-Avst=\uC544\uBCA0\uC2A4\uD0C0\uC5B4
-Bali=\uBC1C\uB9AC \uBB38\uC790
-Bamu=\uBC14\uBB44\uC5B4
-Bass=\uBC14\uC0AC\uC5B4
-Batk=\uBC14\uD0C0\uD06C \uBB38\uC790
-Beng=\uBCB5\uACE8 \uBB38\uC790
-Blis=\uBE14\uB9AC\uC2A4\uAE30\uD638 \uBB38\uC790
-Bopo=\uC8FC\uC74C\uBD80\uD638
-Brah=\uBE0C\uB77C\uBBF8
-Brai=\uBE0C\uB77C\uC720 \uC810\uC790
-Bugi=\uBD80\uAE30 \uBB38\uC790
-Buhd=\uBD80\uD788\uB4DC \uBB38\uC790
-Cakm=\uCC28\uD06C\uB9C8\uC5B4
-Cans=\uD1B5\uD569 \uCE90\uB098\uB2E4 \uD1A0\uCC29\uC5B4
-Cari=\uCE74\uB9AC \uBB38\uC790
-Cham=\uCE78 \uACE0\uC5B4
-Cher=\uCCB4\uB85C\uD0A4 \uBB38\uC790
-Cirt=\uD0A4\uB974\uC4F0
-Copt=\uCF65\uD2B8 \uBB38\uC790
-Cprt=\uD0A4\uD504\uB85C\uC2A4 \uBB38\uC790
-Cyrl=\uD0A4\uB9B4 \uBB38\uC790
-Cyrs=\uACE0\uB300\uAD50\uD68C\uC2AC\uB77C\uBE0C\uC5B4 \uD0A4\uB9B4\uBB38\uC790
-Deva=\uB370\uBC14\uB098\uAC00\uB9AC \uBB38\uC790
-Dsrt=\uB514\uC800\uB81B \uBB38\uC790
-Dupl=\uB4C0\uD50C\uB85C\uC774\uC548 \uC18D\uAE30
-Egyd=\uACE0\uB300 \uC774\uC9D1\uD2B8 \uBBFC\uC911\uBB38\uC790
-Egyh=\uACE0\uB300 \uC774\uC9D1\uD2B8 \uC2E0\uAD00\uBB38\uC790
-Egyp=\uACE0\uB300 \uC774\uC9D1\uD2B8 \uC2E0\uC131\uBB38\uC790
-Elba=\uC5D8\uBC14\uC0B0\uC5B4
-Ethi=\uC5D0\uD2F0\uC624\uD53C\uC544 \uBB38\uC790
-Geok=\uCFE0\uCD94\uB9AC\uC5B4
-Geor=\uADF8\uB8E8\uC9C0\uC57C \uBB38\uC790
-Glag=\uAE00\uB77C\uACE8 \uBB38\uC790
-Goth=\uACE0\uD2B8 \uBB38\uC790
-Gran=\uADF8\uB780\uD0C0\uC5B4
-Grek=\uADF8\uB9AC\uC2A4 \uBB38\uC790
-Gujr=\uAD6C\uC790\uB77C\uD2B8 \uBB38\uC790
-Guru=\uAD6C\uB974\uBB34\uD0A4 \uBB38\uC790
-Hang=\uD55C\uAE00
-Hani=\uD55C\uC790
-Hano=\uD558\uB204\uB204 \uBB38\uC790
-Hans=\uD55C\uC790(\uAC04\uCCB4)
-Hant=\uD55C\uC790(\uBC88\uCCB4)
-Hebr=\uD788\uBE0C\uB9AC \uBB38\uC790
-Hira=\uD788\uB77C\uAC00\uB098
-Hmng=\uD30C\uD654 \uD750\uBABD
-Hrkt=\uAC00\uD0C0\uCE74\uB098/\uD788\uB77C\uAC00\uB098
-Hung=\uACE0\uB300 \uD5DD\uAC00\uB9AC \uBB38\uC790
-Inds=\uC778\uB354\uC2A4 \uBB38\uC790
-Ital=\uACE0\uB300 \uC774\uD0C8\uB9AC\uC544 \uBB38\uC790
-Java=\uC790\uBC14 \uBB38\uC790
-Jpan=\uC77C\uBCF8 \uBB38\uC790
-Kali=\uCE74\uC57C \uB9AC \uBB38\uC790
-Kana=\uAC00\uD0C0\uCE74\uB098
-Khar=\uCE74\uB85C\uC288\uD2F0 \uBB38\uC790
-Khmr=\uD06C\uBA54\uB974 \uBB38\uC790
-Knda=\uCE78\uB098\uB2E4 \uBB38\uC790
-Kore=\uD55C\uAD6D\uC5B4
-Kpel=\uD06C\uD3A0\uB808\uC5B4
-Kthi=\uCE74\uC774\uD2F0\uC5B4
-Lana=\uB780\uB098 \uBB38\uC790
-Laoo=\uB77C\uC624 \uBB38\uC790
-Latf=\uB3C5\uC77C\uC2DD \uB85C\uB9C8\uC790
-Latg=\uC544\uC77C\uB79C\uB4DC\uC2DD \uB85C\uB9C8\uC790
-Latn=\uB85C\uB9C8\uC790
-Lepc=\uB819\uCC28 \uBB38\uC790
-Limb=\uB9BC\uBD80 \uBB38\uC790
-Lina=\uC120\uD615 \uBB38\uC790 A
-Linb=\uC120\uD615 \uBB38\uC790 B
-Lisu=\uB9AC\uC218\uC5B4
-Loma=\uB85C\uB9C8\uC5B4
-Lyci=\uB9AC\uD0A4\uC544 \uBB38\uC790
-Lydi=\uB9AC\uB514\uC544 \uBB38\uC790
-Mand=\uB9CC\uB2E4\uC774\uC544 \uBB38\uC790
-Mani=\uB9C8\uB2C8\uC5B4
-Maya=\uB9C8\uC57C \uC0C1\uD615 \uBB38\uC790
-Mend=\uBA58\uB370\uC5B4
-Merc=\uBA54\uB85C\uC5D0 \uBB38\uC790 \uD758\uB9BC
-Mero=\uBA54\uB85C\uC5D0 \uBB38\uC790
-Mlym=\uB9D0\uB77C\uC584\uB78C \uBB38\uC790
-Mong=\uBABD\uACE8 \uBB38\uC790
-Moon=\uBB38\uC2DD \uC120\uBB38\uC790
-Mtei=\uBA54\uC774\uD14C\uC774\uC5B4
-Mymr=\uBBF8\uC580\uB9C8 \uBB38\uC790
-Narb=\uACE0\uB300 \uBD81\uC544\uB77C\uBE44\uC544\uC5B4
-Nbat=\uB098\uBC14\uD2F0\uC544\uC5B4
-Nkgb=\uB098\uC2DC \uAC8C\uBC14\uC5B4
-Nkoo=\uC751\uCF54\uC5B4
-Ogam=\uC624\uAC80 \uBB38\uC790
-Olck=\uC62C\uCE58\uD0A4\uC5B4
-Orkh=\uC624\uB974\uD63C\uC5B4
-Orya=\uC624\uB9AC\uC57C \uBB38\uC790
-Osma=\uC624\uC2A4\uB9C8\uB2C8\uC544 \uBB38\uC790
-Palm=\uD314\uBBF8\uB77C\uC5B4
-Perm=\uACE0\uB300 \uD398\uB984 \uBB38\uC790
-Phag=\uD30C\uC2A4\uD30C\uC5B4
-Phli=\uCD08\uAE30 \uD314\uB808\uBE44\uC5B4
-Phlp=\uC911\uAE30 \uD314\uB808\uBE44\uC5B4
-Phlv=\uD6C4\uAE30 \uD314\uB808\uBE44\uC5B4
-Phnx=\uD398\uB2C8\uD0A4\uC544\uC5B4
-Plrd=\uBA00\uC624\uC5B4
-Prti=\uD30C\uB974\uD2F0\uC544 \uBB38\uC790
-Rjng=\uB808\uC7A5\uC5B4
-Roro=\uB871\uACE0\uB871\uACE0\uC5B4
-Runr=\uB8EC \uBB38\uC790
-Samr=\uC0AC\uB9C8\uB9AC\uC544\uC5B4
-Sara=\uC0AC\uB77C\uD2F0\uC5B4
-Sarb=\uACE0\uB300 \uB0A8\uC544\uB77C\uBE44\uC544\uC5B4
-Saur=\uC0AC\uC6B0\uB77C\uC288\uD2B8\uB77C\uC5B4
-Sgnw=\uC218\uD654 \uBB38\uC790
-Shaw=\uC0E4\uBE44\uC548 \uBB38\uC790
-Sind=\uC2E0\uB514\uC5B4
-Sinh=\uC2A4\uB9AC\uB791\uCE74\uC5B4
-Sund=\uC21C\uB2E8\uC5B4
-Sylo=\uC2E4\uD5E4\uD2F0 \uB098\uAC00\uB9AC
-Syrc=\uC2DC\uB9AC\uC544 \uBB38\uC790
-Syre=\uC5D0\uC2A4\uD2B8\uB791\uAC94\uB85C\uC2DD \uC2DC\uB9AC\uC544 \uBB38\uC790
-Syrj=\uC11C\uBD80 \uC2DC\uB9AC\uC544 \uBB38\uC790
-Syrn=\uB3D9\uBD80 \uC2DC\uB9AC\uC544 \uBB38\uC790
-Tagb=\uD0C0\uADF8\uBC18\uC640 \uBB38\uC790
-Tale=\uD0C0\uC774 \uB808 \uBB38\uC790
-Talu=\uC2E0 \uD0C0\uC774 \uB8E8\uC5D0
-Taml=\uD0C0\uBC00 \uBB38\uC790
-Tavt=\uD0C0\uC774 \uBE44\uC5E3\uC5B4
-Telu=\uD154\uB8E8\uAD6C \uBB38\uC790
-Teng=\uD161\uACFC\uB974 \uBB38\uC790
-Tfng=\uD2F0\uD53C\uB098\uADF8 \uBB38\uC790
-Tglg=\uD0C0\uAC08\uB85C\uADF8 \uBB38\uC790
-Thaa=\uD0C0\uB098 \uBB38\uC790
-Thai=\uD0C0\uC774 \uBB38\uC790
-Tibt=\uD2F0\uBCA0\uD2B8 \uBB38\uC790
-Ugar=\uC6B0\uAC00\uB9AC\uD2B8 \uBB38\uC790
-Vaii=\uBC14\uC774 \uBB38\uC790
-Visp=\uC2DC\uD654 \uBB38\uC790
-Wara=\uC640\uB8FD \uC2DC\uD2F0\uC5B4
-Xpeo=\uACE0\uB300 \uD398\uB974\uC2DC\uC544 \uBB38\uC790
-Xsux=\uC218\uBA54\uB974-\uC544\uCE74\uB4DC \uC124\uD615 \uBB38\uC790
-Yiii=\uC774 \uBB38\uC790
-Zinh=\uC0C1\uC18D \uBB38\uC790
-Zmth=\uC218\uD559 \uD45C\uAE30
-Zsym=\uAE30\uD638
-Zxxx=\uC791\uC131\uB418\uC9C0 \uC54A\uC74C
-Zyyy=\uC77C\uBC18 \uBB38\uC790
-Zzzz=\uAE30\uB85D\uB418\uC9C0 \uC54A\uC740 \uBB38\uC790(\uAD6C\uC804)
-
-# country names
-# key is ISO 3166 country code
-
-AD=\uc548\ub3c4\ub77c
-AE=\uc544\ub78d\uc5d0\ubbf8\ub9ac\ud2b8
-AF=\uc544\ud504\uac00\ub2c8\uc2a4\ud0c4
-AG=\uc564\ud2f0\uac00 \ubc14\ubd80\ub2e4
-AI=\uc548\uae38\ub77c
-AL=\uc54c\ubc14\ub2c8\uc544
-AM=\uc544\ub974\uba54\ub2c8\uc544
-AN=\ub124\ub35c\ub780\ub4dc\ub839 \uc548\ud2f8\ub808\uc2a4
-AO=\uc559\uace8\ub77c
-AQ=\ub0a8\uadf9
-AR=\uc544\ub974\ud5e8\ud2f0\ub098
-AS=\ubbf8\uad6d\ub839 \uc0ac\ubaa8\uc544
-AT=\uc624\uc2a4\ud2b8\ub9ac\uc544
-AU=\uc624\uc2a4\ud2b8\ub808\uc77c\ub9ac\uc544
-AW=\uc544\ub8e8\ubc14
-AX=\uc62c\ub780\ub4dc \uc81c\ub3c4
-AZ=\uc544\uc81c\ub974\ubc14\uc774\uc794
-BA=\ubcf4\uc2a4\ub2c8\uc544 \ud5e4\ub974\uccb4\uace0\ube44\ub098
-BB=\ubc14\ubca0\uc774\ub3c4\uc2a4
-BD=\ubc29\uae00\ub77c\ub370\uc2dc
-BE=\ubca8\uae30\uc5d0
-BF=\ubd80\ub974\ud0a4\ub098\ud30c\uc18c
-BG=\ubd88\uac00\ub9ac\uc544
-BH=\ubc14\ub808\uc778
-BI=\ubd80\ub8ec\ub514
-BJ=\ubca0\ub139
-BL=\uC0DD \uBC14\uB974\uD154\uB808\uBBF8
-BM=\ubc84\ubba4\ub2e4
-BN=\ube0c\ub8e8\ub098\uc774
-BO=\ubcfc\ub9ac\ube44\uc544
-BQ=\uBCF4\uB124\uB974, \uC2E0\uD2B8\uC720\uC2A4\uD0C0\uD2F0\uC6B0\uC2A4, \uC0AC\uBC14 \uC81C\uB3C4
-BR=\ube0c\ub77c\uc9c8
-BS=\ubc14\ud558\ub9c8
-BT=\ubd80\ud0c4
-BV=\ubd80\ubca0\uc774 \uc12c
-BW=\ubcf4\uce20\uc640\ub098
-BY=\ubca8\ub77c\ub8e8\uc2a4
-BZ=\ubca8\ub9ac\uc988
-CA=\uce90\ub098\ub2e4
-CC=\ucf54\ucf54\uc2a4 \uad70\ub3c4
-CD=\ucf69\uace0 \ubbfc\uc8fc \uacf5\ud654\uad6d
-CF=\uc911\uc559 \uc544\ud504\ub9ac\uce74
-CG=\ucf69\uace0
-CH=\uc2a4\uc704\uc2a4
-CI=\ucf54\ud2b8\ub514\ubd80\uc640\ub974
-CK=\ucfe1 \uc81c\ub3c4
-CL=\uce60\ub808
-CM=\uce74\uba54\ub8ec
-CN=\uc911\uad6d
-CO=\ucf5c\ub86c\ube44\uc544
-CR=\ucf54\uc2a4\ud0c0\ub9ac\uce74
-CS=\uc138\ub974\ube44\uc544 \ubaac\ud14c\ub124\uadf8\ub85c(\uc720\uace0\uc2ac\ub77c\ube44\uc544)
-CU=\ucfe0\ubc14
-CV=\uae4c\ubf40\ubca0\ub974\ub370
-CW=\uD034\uB77C\uC18C
-CX=\ud06c\ub9ac\uc2a4\ub9c8\uc2a4 \uc12c
-CY=\uc0ac\uc774\ud504\ub7ec\uc2a4
-CZ=\uccb4\ucf54
-DE=\ub3c5\uc77c
-DJ=\uc9c0\ubd80\ud2f0
-DK=\ub374\ub9c8\ud06c
-DM=\ub3c4\ubbf8\ub2c8\uce74
-DO=\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d
-DZ=\uc54c\uc81c\ub9ac
-EC=\uc5d0\ucfe0\uc544\ub3c4\ub974
-EE=\uc5d0\uc2a4\ud1a0\ub2c8\uc544
-EG=\uc774\uc9d1\ud2b8
-EH=\uc11c\uc0ac\ud558\ub77c
-ER=\uc5d0\ub9ac\ud2b8\ub9ac\uc544
-ES=\uc2a4\ud398\uc778
-ET=\uc774\ub514\uc624\ud53c\uc544
-FI=\ud540\ub780\ub4dc
-FJ=\ud53c\uc9c0
-FK=\ud3ec\ud074\ub79c\ub4dc \uc81c\ub3c4
-FM=\ub9c8\uc774\ud06c\ub85c\ub124\uc2dc\uc544
-FO=\ud398\ub85c \uc81c\ub3c4
-FR=\ud504\ub791\uc2a4
-GA=\uac00\ubd09
-GB=\uc601\uad6d
-GD=\uadf8\ub808\ub098\ub2e4
-GE=\uadf8\ub8e8\uc9c0\uc57c
-GF=\ud504\ub791\uc2a4\ub839 \uae30\uc544\ub098
-GG=\uAC74\uC9C0
-GH=\uac00\ub098
-GI=\uc9c0\ube0c\ub864\ud130
-GL=\uadf8\ub9b0\ub79c\ub4dc
-GM=\uac10\ube44\uc544
-GN=\uae30\ub2c8
-GP=\uacfc\ub2ec\ub85c\ud504
-GQ=\uc801\ub3c4 \uae30\ub2c8
-GR=\uadf8\ub9ac\uc2a4
-GS=\uc0ac\uc6b0\uc2a4 \uc870\uc9c0\uc544 \ubc0f \uc0ac\uc6b0\uc2a4 \uc0cc\ub4dc\uc704\uce58 \uc81c\ub3c4
-GT=\uacfc\ud14c\ub9d0\ub77c
-GU=\uad0c
-GW=\uae30\ub124\ube44\uc3d8
-GY=\uac00\uc774\uc544\ub098
-HK=\ud64d\ucf69
-HM=\ud5c8\ub4dc \uc12c \ubc0f \ub9e5\ub3c4\ub110\ub4dc \uc81c\ub3c4
-HN=\uc628\ub450\ub77c\uc2a4
-HR=\ud06c\ub85c\uc544\ud2f0\uc544
-HT=\ud558\uc774\ud2f0
-HU=\ud5dd\uac00\ub9ac
-ID=\uc778\ub3c4\ub124\uc2dc\uc544
-IE=\uc544\uc77c\ub79c\ub4dc
-IL=\uc774\uc2a4\ub77c\uc5d8
-IM=\uB9E8 \uC12C
-IN=\uc778\ub3c4
-IO=\uc601\uc778\ub3c4 \uc81c\ub3c4
-IQ=\uc774\ub77c\ud06c
-IR=\uc774\ub780
-IS=\uc544\uc774\uc2ac\ub780\ub4dc
-IT=\uc774\ud0c8\ub9ac\uc544
-JE=\uC800\uC9C0
-JM=\uc790\uba54\uc774\uce74
-JO=\uc694\ub974\ub2e8
-JP=\uc77c\ubcf8
-KE=\ucf00\ub0d0
-KG=\ud0a4\ub974\uae30\uc2a4\uc2a4\ud0c4
-KH=\uce84\ubcf4\ub514\uc544
-KI=\ud0a4\ub9ac\ubc14\uc2dc
-KM=\ucf54\ubaa8\ub974
-KN=\uc138\uc778\ud2b8 \ud06c\ub9ac\uc2a4\ud1a0\ud37c \ub2c8\ube44\uc2a4
-KP=\ubd81\ud55c
-KR=\ub300\ud55c\ubbfc\uad6d
-KW=\ucfe0\uc6e8\uc774\ud2b8
-KY=\ucf00\uc774\ub9e8 \uc81c\ub3c4
-KZ=\uce74\uc790\ud750\uc2a4\ud0c4
-LA=\ub77c\uc624\uc2a4
-LB=\ub808\ubc14\ub17c
-LC=\uc138\uc778\ud2b8 \ub8e8\uc2dc\uc544
-LI=\ub9ac\ud788\ud150\uc288\ud0c0\uc778
-LK=\uc2a4\ub9ac\ub791\uce74
-LR=\ub77c\uc774\ubca0\ub9ac\uc544
-LS=\ub808\uc18c\ud1a0
-LT=\ub9ac\ud22c\uc544\ub2c8\uc544
-LU=\ub8e9\uc148\ubd80\ub974\ud06c
-LV=\ub77c\ud2b8\ube44\uc544
-LY=\ub9ac\ube44\uc544
-MA=\ubaa8\ub85c\ucf54
-MC=\ubaa8\ub098\ucf54
-MD=\ubab0\ub3c4\ubc14
-ME=\ubaac\ud14c\ub124\uadf8\ub85c
-MF=\uC0DD \uB9C8\uB974\uD0F1
-MG=\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974
-MH=\ub9c8\uc15c \uc81c\ub3c4
-MK=\ub9c8\ucf00\ub3c4\ub2c8\uc544\uc5b4
-ML=\ub9d0\ub9ac
-MM=\ubbf8\uc580\ub9c8
-MN=\ubabd\uace8
-MO=\ub9c8\uce74\uc624
-MP=\ubd81\ub9c8\ub9ac\uc544\ub098 \uc81c\ub3c4
-MQ=\ub9d0\ud2f0\ub2c8\ud06c
-MR=\ubaa8\ub9ac\ud0c0\ub2c8
-MS=\ubaac\ud2b8\uc138\ub77c\ud2b8
-MT=\ubab0\ud0c0
-MU=\ubaa8\ub9ac\uc154\uc2a4
-MV=\ubab0\ub514\ube0c
-MW=\ub9d0\ub77c\uc704
-MX=\uba55\uc2dc\ucf54
-MY=\ub9d0\ub808\uc774\uc9c0\uc544
-MZ=\ubaa8\uc7a0\ube44\ud06c
-NA=\ub098\ubbf8\ube44\uc544
-NC=\ub274 \uce7c\ub808\ub3c4\ub2c8\uc544
-NE=\ub2c8\uc81c\ub974
-NF=\ub178\ud37d \uc12c
-NG=\ub098\uc774\uc9c0\ub9ac\uc544
-NI=\ub2c8\uce74\ub77c\uacfc
-NL=\ub124\ub35c\ub780\ub4dc
-NO=\ub178\ub974\uc6e8\uc774
-NP=\ub124\ud314
-NR=\ub098\uc6b0\ub8e8
-NU=\ub2c8\uc6b0\uc5d0
-NZ=\ub274\uc9c8\ub79c\ub4dc
-OM=\uc624\ub9cc
-PA=\ud30c\ub098\ub9c8
-PE=\ud398\ub8e8
-PF=\ud504\ub791\uc2a4\ub839 \ud3f4\ub9ac\ub124\uc2dc\uc544
-PG=\ud30c\ud478\uc544\ub274\uae30\ub2c8
-PH=\ud544\ub9ac\ud540
-PK=\ud30c\ud0a4\uc2a4\ud0c4
-PL=\ud3f4\ub780\ub4dc
-PM=\uc138\uc778\ud2b8 \ud53c\uc5d0\ub974 \ubbf8\ucf08\ub860
-PN=\ud54f\ucf00\uc5b8 \uc81c\ub3c4
-PR=\ud478\uc5d0\ub974\ud1a0\ub9ac\ucf54
-PS=\ud314\ub808\uc2a4\ud0c0\uc778
-PT=\ud3ec\ub974\ud2b8\uce7c
-PW=\ud314\ub77c\uc6b0
-PY=\ud30c\ub77c\uacfc\uc774
-QA=\uce74\ud0c0\ub974
-RE=\ub9ac\uc720\ub2c8\uc5b8
-RO=\ub8e8\ub9c8\ub2c8\uc544
-RS=\uc138\ub974\ube44\uc544
-RU=\ub7ec\uc2dc\uc544
-RW=\ub974\uc644\ub2e4
-SA=\uc0ac\uc6b0\ub514\uc544\ub77c\ube44\uc544
-SB=\uc194\ub85c\ubaac \uc81c\ub3c4
-SC=\uc250\uc774\uc258
-SD=\uc218\ub2e8
-SE=\uc2a4\uc6e8\ub374
-SG=\uc2f1\uac00\ud3ec\ub974
-SH=\uc138\uc778\ud2b8 \ud5ec\ub808\ub098
-SI=\uc2ac\ub85c\ubca0\ub2c8\uc544
-SJ=\uc2a4\ubc1c\ubc14\ub974 \ubc0f \uc580\ub9c8\uc6ec
-SK=\uc2ac\ub85c\ubc14\ud0a4\uc544
-SL=\uc2dc\uc5d0\ub77c\ub9ac\uc628
-SM=\uc0b0\ub9c8\ub9ac\ub178
-SN=\uc138\ub124\uac08
-SO=\uc18c\ub9d0\ub9ac\uc544
-SR=\uc218\ub9ac\ub0a8
-ST=\uc0c1\ud22c\uba54 \ud504\ub9b0\uc2dc\ud398
-SV=\uc5d8\uc0b4\ubc14\ub3c4\ub974
-SX=\uC2E0\uD2B8\uB9C8\uB974\uD150(\uB124\uB35C\uB780\uB4DC\uB839)
-SY=\uc2dc\ub9ac\uc544
-SZ=\uc2a4\uc640\uc9c8\ub79c\ub4dc
-TC=\ud130\ud06c\uc2a4 \ucf00\uc774\ucee4\uc2a4 \uc81c\ub3c4
-TD=\ucc28\ub4dc
-TF=\ud504\ub791\uc2a4 \ub0a8\ubd80 \uc9c0\ubc29
-TG=\ud1a0\uace0
-TH=\ud0dc\uad6d
-TJ=\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4
-TK=\ud1a0\ucf08\ub77c\uc6b0
-TL=\ub3d9\ud2f0\ubaa8\ub974
-TM=\ud22c\ub974\ud06c\uba54\ub2c8\uc2a4\ud0c4
-TN=\ud280\ub2c8\uc9c0
-TO=\ud1b5\uac00
-TR=\ud130\ud0a4
-TT=\ud2b8\ub9ac\ub2c8\ub2e4\ub4dc \ud1a0\ubc14\uace0
-TV=\ud22c\ubc1c\ub8e8
-TW=\ub300\ub9cc
-TZ=\ud0c4\uc790\ub2c8\uc544
-UA=\uc6b0\ud06c\ub77c\uc774\ub098
-UG=\uc6b0\uac04\ub2e4
-UM=\ubbf8\uad6d\ub839 \uad70\ub3c4
-US=\ubbf8\uad6d
-UY=\uc6b0\ub8e8\uacfc\uc774
-UZ=\uc6b0\uc988\ubca0\ud0a4\uc2a4\ud0c4
-VA=\ubc14\ud2f0\uce78
-VC=\uc138\uc778\ud2b8 \ube48\uc13c\ud2b8 \uadf8\ub808\ub098\ub518\uc2a4
-VE=\ubca0\ub124\uc218\uc5d8\ub77c
-VG=\uc601\uad6d\ub839 \ubc84\uc9c4 \uc544\uc77c\ub79c\ub4dc
-VI=\ubbf8\uad6d\ub839 \ubc84\uc9c4 \uc544\uc77c\ub79c\ub4dc
-VN=\ubca0\ud2b8\ub0a8
-VU=\ubc14\ub204\uc544\ud22c
-WF=\uc70c\ub9ac\uc2a4 \ud478\ud22c\ub098
-WS=\uc0ac\ubaa8\uc544
-YE=\uc608\uba58
-YT=\ub9c8\uc694\ud2f0
-ZA=\ub0a8\uc544\ud504\ub9ac\uce74
-ZM=\uc7a0\ube44\uc544
-ZW=\uc9d0\ubc14\ube0c\uc6e8
-
-# territory names
-# key is UN M.49 country and area code
-
-001=\uC138\uACC4
-002=\uC544\uD504\uB9AC\uCE74
-003=\uBD81\uC544\uBA54\uB9AC\uCE74
-005=\uB0A8\uC544\uBA54\uB9AC\uCE74[\uB0A8\uBBF8]
-009=\uC624\uC138\uC544\uB2C8\uC544, \uB300\uC591\uC8FC
-011=\uC11C\uC544\uD504\uB9AC\uCE74
-013=\uC911\uC559 \uC544\uBA54\uB9AC\uCE74
-014=\uB3D9\uBD80 \uC544\uD504\uB9AC\uCE74
-015=\uBD81\uBD80 \uC544\uD504\uB9AC\uCE74
-017=\uC911\uBD80 \uC544\uD504\uB9AC\uCE74
-018=\uB0A8\uBD80 \uC544\uD504\uB9AC\uCE74
-019=\uC544\uBA54\uB9AC\uCE74 \uB300\uB959
-021=\uBD81\uBD80 \uC544\uBA54\uB9AC\uCE74
-029=\uCE74\uB9AC\uBE0C \uD574 \uC81C\uB3C4
-030=\uB3D9\uC544\uC2DC\uC544
-034=\uB0A8\uC544\uC2DC\uC544
-035=\uB3D9\uB0A8 \uC544\uC2DC\uC544
-039=\uB0A8\uC720\uB7FD
-053=\uC624\uC2A4\uD2B8\uB808\uC77C\uB9AC\uC544\uC640 \uB274\uC9C8\uB79C\uB4DC
-054=\uBA5C\uB77C\uB124\uC2DC\uC544
-057=\uB9C8\uC774\uD06C\uB85C\uB124\uC2DC\uC544 \uC9C0\uC5ED
-061=\uD3F4\uB9AC\uB124\uC2DC\uC544
-142=\uC544\uC2DC\uC544
-143=\uC911\uC559 \uC544\uC2DC\uC544
-145=\uC11C\uC544\uC2DC\uC544
-150=\uC720\uB7FD
-151=\uB3D9\uC720\uB7FD
-154=\uBD81\uC720\uB7FD
-155=\uC11C\uC720\uB7FD
-419=\uB77C\uD2F4 \uC544\uBA54\uB9AC\uCE74 \uBC0F \uCE74\uB9AC\uBE0C \uD574 \uC81C\uB3C4
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_lt.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_lt.properties
deleted file mode 100755
index 1b42fc6..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_lt.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-lt=Lietuvi\u0173
-
-# country names
-# key is ISO 3166 country code
-
-LT=Lietuva
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_lv.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_lv.properties
deleted file mode 100755
index 97f7ba0..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_lv.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-lv=Latvie\u0161u
-
-# country names
-# key is ISO 3166 country code
-
-LV=Latvija
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_mk.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_mk.properties
deleted file mode 100755
index 8a7702c..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_mk.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-mk=\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438
-
-# country names
-# key is ISO 3166 country code
-
-MK=\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ms.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ms.properties
deleted file mode 100755
index 5f7f230..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ms.properties
+++ /dev/null
@@ -1,111 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ms=Bahasa Melayu
-AE=Emiriah Arab Bersatu
-AG=Antigua dan Barbuda
-BA=Bosnia dan Herzegovina
-CA=Kanada
-CC=Cocos (Keeling) Islands
-CD=Democratic Republic of the Congo
-CF=Republik Afrika Tengah
-CI=Pantai Gading
-CL=Cile
-CM=Kamerun
-CN=Cina
-CR=Kosta Rika
-CY=Kibris
-CZ=Republik Czech
-DE=Jerman
-DJ=Jibouti
-DO=Republik Dominican
-DZ=Aljazair
-EG=Mesir
-EH=Sahara Barat
-ES=Sepanyol
-FR=Perancis
-GR=Yunani
-GS=South Georgia and the South Sandwich Islands
-GW=Guinea Bissau
-HK=Hong Kong S.A.R., China
-HM=Heard Island and McDonald Islands
-HU=Hungari
-IN=Hindia
-IT=Itali
-JM=Jamaika
-JP=Jepun
-KH=Kemboja
-KN=Saint Kitts dan Nevis
-KP=Utara Korea
-KR=Selatan Korea
-LB=Lubnan
-LU=Luksembourg
-MA=Maghribi
-MG=Madagaskar
-MH=Kepulauan Marshall
-MO=Macao S.A.R., China
-MV=Maldiv
-MX=Meksiko
-MZ=Mozambik
-NL=Belanda
-PH=Filipina
-PM=Saint Pierre and Miquelon
-PS=Palestinian Territory
-PT=Feringgi
-RE=R\u00e9union
-SA=Arab Saudi
-SB=Kepulauan Solomon
-SG=Singapura
-SJ=Svalbard and Jan Mayen
-SL=Siera Leon
-SR=Surinam
-ST=Sao Tome dan Principe
-TC=Turks and Caicos Islands
-TD=Cad
-TJ=Tadjikistan
-TR=Turki
-TT=Trinidad dan Tobago
-US=Amerika Syarikat
-VC=Saint Vincent dan Grenadines
-WF=Wallis and Futuna
-YE=Yaman
-ZA=Afrika Selatan
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_mt.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_mt.properties
deleted file mode 100755
index c0c3c05..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_mt.properties
+++ /dev/null
@@ -1,364 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ab=Abka\u017cjan
-af=Afrikans
-am=Am\u0127ariku
-ar=G\u0127arbi
-av=Avarik
-ay=Ajmara
-az=A\u017cerbaj\u0121ani
-ba=Baxkir
-be=Belarussu
-bg=Bulgaru
-bh=Bi\u0127ari
-bo=Tibetjan
-br=Brenton
-bs=Bosnijan
-ca=Katalan
-ce=\u010ae\u010ben
-ch=\u010aamorro
-co=Korsiku
-cr=Krij
-cs=\u010aek
-cu=Slaviku tal-Knisja
-cv=\u010auvax
-cy=Welx
-da=Dani\u017c
-de=\u0120ermani\u017c
-dv=Dive\u0127i
-dz=D\u017congka
-el=Grieg
-en=Ingli\u017c
-es=Spanjol
-et=Estonjan
-eu=Bask
-fa=Persjan
-ff=Fula\u0127
-fi=Finlandi\u017c
-fj=Fi\u0121i
-fo=Fawri\u017c
-fr=Fran\u010bi\u017c
-fy=Fri\u017cjan
-ga=Irlandi\u017c
-gd=Galliku Sko\u010b\u010bi\u017c
-gl=Gallegjan
-gn=Gwarani
-gu=Gu\u0121arati
-gv=Manks
-ha=\u0126awsa
-he=Ebrajk
-hi=\u0126indi
-ho=\u0126iri Motu
-hr=Kroat
-hu=Ungeri\u017c
-hy=Armenjan
-hz=\u0126erero
-id=Indone\u017cjan
-ik=Inupjak
-in=Indone\u017cjan
-is=I\u017clandi\u017c
-it=Taljan
-iu=Inukitut
-iw=Ebrajk
-ja=\u0120appuni\u017c
-ji=Jiddix
-jv=\u0120avani\u017c
-ka=\u0120or\u0121jan
-ki=Kikuju
-kj=Kuanyama
-kk=Ka\u017cak
-kl=Kalallisut
-km=Kmer
-ko=Korejan
-ks=Kaxmiri
-ku=Kurdi\u017c
-kw=Korniku
-ky=Kirgi\u017c
-lb=Let\u017cburgi\u017c
-ln=Lingaljan
-lt=Litwanjan
-lv=Latvjan (Lettix)
-mg=Malaga\u017ci
-mh=Marxall
-mk=Ma\u010bedonjan
-ml=Malajalam
-mn=Mongoljan
-mo=Moldavjan
-mr=Marati
-ms=Malajan
-mt=Malti
-my=Burmi\u017c
-na=Nawuru
-nb=Bokmahal Norve\u0121i\u017c
-nd=Ndebele, ta\u2019 Fuq
-ne=Nepali\u017c
-nl=Olandi\u017c
-nn=Ninorsk Norve\u0121i\u017c
-no=Norve\u0121i\u017c
-nr=Ndebele, t\u2019Isfel
-nv=Nava\u0127o
-ny=\u010ai\u010bewa; Njan\u0121a
-oc=Provenzal (wara 1500)
-oj=O\u0121ibwa
-om=Oromo (Afan)
-or=Orija
-os=Ossettiku
-pa=Pun\u0121abi
-pl=Pollakk
-ps=Paxtun
-pt=Portugi\u017c
-qu=Ke\u010bwa
-rm=Reto-Romanz
-ro=Rumen
-ru=Russu
-rw=Kinjarwanda
-sc=Sardinjan
-sd=Sindi
-se=Sami ta\u2019 Fuq
-si=Sin\u0127ali\u017c
-sk=Slovakk
-sl=Sloven
-sm=Samojan
-sn=Xona
-sq=Albani\u017c
-sr=Serb
-st=Soto, t\u2019Isfel
-su=Sundani\u017c
-sv=Svedi\u017c
-sw=Swa\u0127ili
-tg=Ta\u0121ik
-th=Tajlandi\u017c
-ti=Tigrinja
-tk=Turkmeni
-tn=Zwana
-to=Tongan (G\u017cejjer ta\u2019 Tonga)
-tr=Tork
-ty=Ta\u0127itjan
-ug=Wigur
-uk=Ukranjan
-uz=U\u017cbek
-vi=Vjetnami\u017c
-vo=Volapuk
-xh=\u0126o\u017ca
-yi=Jiddix
-yo=Joruba
-za=\u017bwang
-zh=\u010aini\u017c
-zu=\u017bulu
-AE=Emirati G\u0127arab Maqg\u0127uda
-AF=Afganistan
-AI=Angwilla
-AL=Albanija
-AM=Armenja
-AN=Antilles Olandi\u017ci
-AQ=Antartika
-AR=Ar\u0121entina
-AS=Samoa Amerikana
-AT=Awstrija
-AU=Awstralja
-AZ=A\u017cerbaj\u0121an
-BA=Bo\u017cnija \u0126er\u017cegovina
-BD=Bangladexx
-BE=Bel\u0121ju
-BG=Bulgarija
-BH=Ba\u0127rajn
-BN=Brunej
-BO=Bolivja
-BR=Bra\u017cil
-BS=Ba\u0127amas
-BT=Butan
-BY=Bjelorussja
-BZ=Beli\u017ce
-CA=Kanada
-CC=Cocos (Keeling) Islands
-CD=Democratic Republic of the Congo
-CF=Repubblika Afrikana \u010aentrali
-CG=Kongo
-CH=Svizzera
-CI=Kosta ta\u2019 l-Avorju
-CL=\u010aili
-CM=Kamerun
-CN=\u010aina
-CO=Kolumbja
-CR=Kosta Rika
-CS=Serbja u Montenegro
-CU=Kuba
-CV=Kape Verde
-CY=\u010aipru
-CZ=Repubblika \u010aeka
-DE=\u0120ermanja
-DJ=\u0120ibuti
-DK=Danimarka
-DM=Dominika
-DO=Republikka Domenikana
-DZ=Al\u0121erija
-EC=Ekwador
-EE=Estonja
-EG=E\u0121ittu
-EH=Sahara tal-Punent
-ER=Eritreja
-ES=Spanja
-ET=Etijopja
-FI=Finlandja
-FJ=Fi\u0121i
-FM=Mikronesja
-FO=G\u017cejjer Faroe
-FR=Franza
-GB=Ingilterra
-GE=\u0120or\u0121ja
-GF=Gujana Fran\u010bi\u017ca
-GH=Gana
-GL=Grinlandja
-GM=Gambja
-GN=Gineja
-GP=Gwadelupe
-GQ=Ginea Ekwatorjali
-GR=Gre\u010bja
-GS=South Georgia and the South Sandwich Islands
-GT=Gwatemala
-GU=Gwam
-GW=Ginea-Bissaw
-GY=Gujana
-HK=\u0126ong Kong S.A.R., \u010aina
-HM=Heard Island and McDonald Islands
-HN=\u0126onduras
-HR=Kroazja
-HT=\u0126aiti
-HU=Ungerija
-ID=Indone\u017cja
-IE=Irlanda
-IL=I\u017crael
-IN=Indja
-IS=Islanda
-IT=Italja
-JM=\u0120amajka
-JO=\u0120ordan
-JP=\u0120appun
-KE=Kenja
-KG=Kirgistan
-KH=Kambodja
-KM=Komoros
-KN=Saint Kitts and Nevis
-KP=Koreja ta\u2019 Fuq
-KR=Koreja t\u2019Isfel
-KW=Kuwajt
-KZ=Ka\u017cakstan
-LB=Libanu
-LC=Santa Lu\u010bija
-LR=Liberja
-LS=Lesoto
-LT=Litwanja
-LU=Lussemburgu
-LV=Latvja
-LY=Libja
-MA=Marokk
-MC=Monako
-MD=Maldova
-MG=Madagaskar
-MH=G\u017cejjer ta\u2019 Marshall
-MK=Ma\u010bedonja
-MM=Mjanmar
-MN=Mongolja
-MO=Macao S.A.R., China
-MP=G\u017cejjer Marjana ta\u2019 Fuq
-MQ=Martinik
-MR=Mawritanja
-MU=Mawrizju
-MX=Messiku
-MY=Malasja
-MZ=Mo\u017cambik
-NA=Namibja
-NE=Ni\u0121er
-NG=Ni\u0121erja
-NI=Nikaragwa
-NL=Olanda
-NO=Norve\u0121ja
-PF=Polinesja Fran\u010bi\u017ca
-PG=Papwa-Ginea \u0120dida
-PH=Filippini
-PL=Polonja
-PM=Saint Pierre and Miquelon
-PS=Palestinian Territory
-PT=Portugall
-PY=Paragwaj
-RE=R\u00e9union
-RO=Rumanija
-RU=Russja
-SA=G\u0127arabja Sawdita
-SE=\u017bvezja
-SG=Singapor
-SI=Slovenja
-SJ=Svalbard and Jan Mayen
-SK=Slovakkja
-SO=Somalja
-SR=Surinam
-ST=Sao Tome and Principe
-SY=Sirja
-SZ=Swa\u017ciland
-TC=Turks and Caicos Islands
-TD=\u010aad
-TF=Territorji Fran\u010bi\u017ci ta\u2019 Nofsinhar
-TH=Tajlandja
-TJ=Ta\u0121ikistan
-TK=Tokelaw
-TL=Timor tal-Lvant
-TN=Tune\u017c
-TR=Turkija
-TT=Trinidad u Tobago
-TW=Tajwan
-TZ=Tan\u017canija
-UA=Ukraina
-US=Stati Uniti
-UY=Urugwaj
-UZ=U\u017cbekistan
-VA=Vatikan
-VC=Saint Vincent and the Grenadines
-VE=Venezwela
-VN=Vjetnam
-VU=Vanwatu
-WF=Wallis and Futuna
-YE=Jemen
-YT=Majotte
-ZA=Afrika t\u2019Isfel
-ZM=\u017bambja
-ZW=\u017bimbabwe
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_nl.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_nl.properties
deleted file mode 100755
index b88e5a0..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_nl.properties
+++ /dev/null
@@ -1,469 +0,0 @@
-# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-# language names
-# key is ISO 639 language code
-
-aa=Afar
-ab=Abchazisch
-ae=Avestisch
-af=Afrikaans
-ak=Akan
-am=Amhaars
-an=Aragonees
-ar=Arabisch
-as=Assamees
-av=Avarisch
-ay=Aymara
-az=Azerbeidzjaans
-ba=Basjkiers
-be=Wit-Russisch
-bg=Bulgaars
-bh=Bihari
-bi=Bislama
-bm=Bambara
-bn=Bengalees
-bo=Tibetaans
-br=Bretons
-bs=Bosnisch
-ca=Catalaans
-ce=Chechen
-ch=Chamorro
-co=Corsicaans
-cr=Cree
-cs=Tsjechisch
-cu=Kerkslavisch
-cv=Tsjoevasjisch
-cy=Welsh
-da=Deens
-de=Duits
-dv=Divehi
-dz=Dzongkha
-ee=Ewe
-el=Grieks
-en=Engels
-eo=Esperanto
-es=Spaans
-et=Estlands
-eu=Baskisch
-fa=Perzisch
-ff=Fulah
-fi=Fins
-fj=Fijisch
-fo=Faer\u00f6ers
-fr=Frans
-fy=Fries
-ga=Iers
-gd=Schots Gaelic
-gl=Galicisch
-gn=Guarani
-gu=Gujarati
-gv=Manx
-ha=Hausa
-he=Hebreeuws
-hi=Hindi
-ho=Hiri Motu
-hr=Kroatisch
-ht=Ha\u00eftiaans
-hu=Hongaars
-hy=Armeens
-hz=Herero
-ia=Interlingua
-id=Indonesisch
-ie=Interlingue
-ig=Igbo
-ii=Sichuan Yi
-ik=Inupiaq
-io=Ido
-is=IJslands
-it=Italiaans
-iu=Inuktitut
-ja=Japans
-jv=Javaans
-ka=Georgisch
-kg=Kongo
-ki=Kikuyu
-kj=Kuanyama
-kk=Kazachs
-kl=Kalaallisut
-km=Khmer
-kn=Kannada
-ko=Koreaans
-kr=Kanuri
-ks=Kashmiri
-ku=Koerdisch
-kv=Komi
-kw=Cornish
-ky=Kirgizisch
-la=Latijn
-lb=Luxemburgs
-lg=Ganda
-li=Limburgs
-ln=Lingala
-lo=Lao
-lt=Litouws
-lu=Luba-Katanga
-lv=Letlands
-mg=Malagasisch
-mh=Marshallees
-mi=Maori
-mk=Macedonisch
-ml=Malayalam
-mn=Mongools
-mo=Moldavisch
-mr=Marathi
-ms=Maleis
-mt=Maltees
-my=Birmees
-na=Nauru
-nb=Noors - Bokm\u00e5l
-nd=Noord-Ndbele
-ne=Nepalees
-ng=Ndonga
-nl=Nederlands
-nn=Noors - Nynorsk
-no=Noors
-nr=Zuid-Ndbele
-nv=Navajo
-ny=Nyanja
-oc=Occitaans
-oj=Ojibwa
-om=Oromo
-or=Oriya
-os=Ossetisch
-pa=Punjabi
-pi=Pali
-pl=Pools
-ps=Pasjtoe
-pt=Portugees
-qu=Quechua
-rm=Reto-Romaans
-rn=Rundi
-ro=Roemeens
-ru=Russisch
-rw=Kinyarwanda
-sa=Sanskriet
-sc=Sardinisch
-sd=Sindhi
-se=Noord-Samisch
-sg=Sango
-si=Singalees
-sk=Slowaaks
-sl=Sloveens
-sm=Samoaans
-sn=Shona
-so=Somalisch
-sq=Albanees
-sr=Servisch
-ss=Swati
-st=Zuid-Sotho
-su=Soendanees
-sv=Zweeds
-sw=Swahili
-ta=Tamil
-te=Teloegoe
-tg=Tadzjieks
-th=Thais
-ti=Tigrinya
-tk=Turkmeens
-tl=Tagalog
-tn=Tswana
-to=Tonga
-tr=Turks
-ts=Tsonga
-tt=Tataars
-tw=Twi
-ty=Tahitisch
-ug=Oeigoers
-uk=Oekra\u00efens
-ur=Urdu
-uz=Oezbeeks
-ve=Venda
-vi=Vietnamees
-vo=Volap\u00fck
-wa=Wallonisch
-wo=Wolof
-xh=Xhosa
-yi=Jiddisch
-yo=Yoruba
-za=Zhuang
-zh=Chinees
-zu=Zulu
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=Verenigde Arabische Emiraten
-AF=Afghanistan
-AG=Antigua en Barbuda
-AI=Anguilla
-AL=Albani\u00eb
-AM=Armeni\u00eb
-AN=Nederlandse Antillen
-AO=Angola
-AQ=Antarctica
-AR=Argentini\u00eb
-AS=Amerikaans Samoa
-AT=Oostenrijk
-AU=Australi\u00eb
-AW=Aruba
-AX=Alandeilanden
-AZ=Azerbeidzjan
-BA=Bosni\u00eb en Herzegovina
-BB=Barbados
-BD=Bangladesh
-BE=Belgi\u00eb
-BF=Burkina Faso
-BG=Bulgarije
-BH=Bahrein
-BI=Burundi
-BJ=Benin
-BM=Bermuda
-BN=Brunei
-BO=Bolivia
-BR=Brazili\u00eb
-BS=Bahama\u2019s
-BT=Bhutan
-BV=Bouveteiland
-BW=Botswana
-BY=Wit-Rusland
-BZ=Belize
-CA=Canada
-CC=Cocoseilanden
-CD=Congo-Kinshasa
-CF=Centraal-Afrikaanse Republiek
-CG=Congo
-CH=Zwitserland
-CI=Ivoorkust
-CK=Cookeilanden
-CL=Chili
-CM=Kameroen
-CN=China
-CO=Colombia
-CR=Costa Rica
-CS=Servi\u00eb en Montenegro
-CU=Cuba
-CV=Kaapverdi\u00eb
-CX=Christmaseiland
-CY=Cyprus
-CZ=Tsjechi\u00eb
-DE=Duitsland
-DJ=Djibouti
-DK=Denemarken
-DM=Dominica
-DO=Dominicaanse Republiek
-DZ=Algerije
-EC=Ecuador
-EE=Estland
-EG=Egypte
-EH=Westelijke Sahara
-ER=Eritrea
-ES=Spanje
-ET=Ethiopi\u00eb
-FI=Finland
-FJ=Fiji
-FK=Falklandeilanden
-FM=Micronesi\u00eb
-FO=Faer\u00f6er
-FR=Frankrijk
-GA=Gabon
-GB=Verenigd Koninkrijk
-GD=Grenada
-GE=Georgi\u00eb
-GF=Frans-Guyana
-GH=Ghana
-GI=Gibraltar
-GL=Groenland
-GM=Gambia
-GN=Guinee
-GP=Guadeloupe
-GQ=Equatoriaal-Guinea
-GR=Griekenland
-GS=Zuid-Georgi\u00eb en Zuidelijke Sandwicheilanden
-GT=Guatemala
-GU=Guam
-GW=Guinee-Bissau
-GY=Guyana
-HK=Hongkong SAR van China
-HM=Heard- en McDonaldeilanden
-HN=Honduras
-HR=Kroati\u00eb
-HT=Ha\u00efti
-HU=Hongarije
-ID=Indonesi\u00eb
-IE=Ierland
-IL=Isra\u00ebl
-IN=India
-IO=Britse Gebieden in de Indische Oceaan
-IQ=Irak
-IR=Iran
-IS=IJsland
-IT=Itali\u00eb
-JM=Jamaica
-JO=Jordani\u00eb
-JP=Japan
-KE=Kenia
-KG=Kirgizi\u00eb
-KH=Cambodja
-KI=Kiribati
-KM=Comoren
-KN=Saint Kitts en Nevis
-KP=Noord-Korea
-KR=Zuid-Korea
-KW=Koeweit
-KY=Caymaneilanden
-KZ=Kazachstan
-LA=Laos
-LB=Libanon
-LC=Saint Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Litouwen
-LU=Luxemburg
-LV=Letland
-LY=Libi\u00eb
-MA=Marokko
-MC=Monaco
-MD=Moldavi\u00eb
-ME=Montenegro
-MG=Madagaskar
-MH=Marshalleilanden
-MK=Macedoni\u00eb
-ML=Mali
-MM=Myanmar
-MN=Mongoli\u00eb
-MO=Macao SAR van China
-MP=Noordelijke Marianeneilanden
-MQ=Martinique
-MR=Mauritani\u00eb
-MS=Montserrat
-MT=Malta
-MU=Mauritius
-MV=Maldiven
-MW=Malawi
-MX=Mexico
-MY=Maleisi\u00eb
-MZ=Mozambique
-NA=Namibi\u00eb
-NC=Nieuw-Caledoni\u00eb
-NE=Niger
-NF=Norfolkeiland
-NG=Nigeria
-NI=Nicaragua
-NL=Nederland
-NO=Noorwegen
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Nieuw-Zeeland
-OM=Oman
-PA=Panama
-PE=Peru
-PF=Frans-Polynesi\u00eb
-PG=Papoea-Nieuw-Guinea
-PH=Filipijnen
-PK=Pakistan
-PL=Polen
-PM=Saint Pierre en Miquelon
-PN=Pitcairn
-PR=Puerto Rico
-PS=Palestijns Gebied
-PT=Portugal
-PW=Palau
-PY=Paraguay
-QA=Qatar
-RE=R\u00e9union
-RO=Roemeni\u00eb
-RS=Servi\u00eb
-RU=Rusland
-RW=Rwanda
-SA=Saoedi-Arabi\u00eb
-SB=Salomonseilanden
-SC=Seychellen
-SD=Soedan
-SE=Zweden
-SG=Singapore
-SH=Sint-Helena
-SI=Sloveni\u00eb
-SJ=Svalbard en Jan Mayen
-SK=Slowakije
-SL=Sierra Leone
-SM=San Marino
-SN=Senegal
-SO=Somali\u00eb
-SR=Suriname
-ST=Sao Tom\u00e9 en Principe
-SV=El Salvador
-SY=Syri\u00eb
-SZ=Swaziland
-TC=Turks- en Caicoseilanden
-TD=Tsjaad
-TF=Franse Gebieden in de zuidelijke Indische Oceaan
-TG=Togo
-TH=Thailand
-TJ=Tadzjikistan
-TK=Tokelau
-TL=Oost-Timor
-TM=Turkmenistan
-TN=Tunesi\u00eb
-TO=Tonga
-TR=Turkije
-TT=Trinidad en Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tanzania
-UA=Oekra\u00efne
-UG=Oeganda
-UM=Amerikaanse kleinere afgelegen eilanden
-US=Verenigde Staten
-UY=Uruguay
-UZ=Oezbekistan
-VA=Vaticaanstad
-VC=Saint Vincent en de Grenadines
-VE=Venezuela
-VG=Britse Maagdeneilanden
-VI=Amerikaanse Maagdeneilanden
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis en Futuna
-WS=Samoa
-YE=Jemen
-YT=Mayotte
-ZA=Zuid-Afrika
-ZM=Zambia
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_no.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_no.properties
deleted file mode 100755
index bcfc071..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_no.properties
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-no=norsk
-
-# country names
-# key is ISO 3166 country code
-
-NO=Norge
-
-
-# variant names
-# key is %%variant
-# rarely localized
-
-%%B=bokm\u00e5l
-%%NY=nynorsk
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_no_NO_NY.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_no_NO_NY.properties
deleted file mode 100755
index bcfc071..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_no_NO_NY.properties
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-no=norsk
-
-# country names
-# key is ISO 3166 country code
-
-NO=Norge
-
-
-# variant names
-# key is %%variant
-# rarely localized
-
-%%B=bokm\u00e5l
-%%NY=nynorsk
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_pl.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_pl.properties
deleted file mode 100755
index 86d8ff6..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_pl.properties
+++ /dev/null
@@ -1,382 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ab=abchaski
-aa=afar
-af=afrykanerski
-sq=alba\u0144ski
-am=amharski
-ar=arabski
-hy=arme\u0144ski
-as=asamski
-ay=ajmara
-az=azerbejd\u017Ca\u0144ski
-ba=baszkirski
-eu=baskijski
-bn=bengali
-dz=bhuta\u0144ski
-bh=biharski
-bi=bislama
-br=breto\u0144ski
-bg=bu\u0142garski
-my=birma\u0144ski
-be=bia\u0142oruski
-km=khmerski
-ca=katalo\u0144ski
-zh=chi\u0144ski
-co=korsyka\u0144ski
-hr=chorwacki
-cs=czeski
-da=du\u0144ski
-nl=holenderski
-en=angielski
-eo=esperanto
-et=esto\u0144ski
-fo=farerski
-fj=fid\u017Ci
-fi=fi\u0144ski
-fr=francuski
-fy=fryzyjski
-gl=galisyjski
-ka=gruzi\u0144ski
-de=niemiecki
-el=grecki
-kl=grenlandzki
-gn=guarani
-gu=gujarati
-ha=hausa
-he=hebrajski
-iw=hebrajski
-hi=hindi
-hu=w\u0119gierski
-is=islandzki
-id=indonezyjski
-in=indonezyjski
-ia=interlingua
-ie=interlingua
-iu=inuktitut
-ik=inupiak
-ga=irlandzki
-it=w\u0142oski
-ja=japo\u0144ski
-jw=jawajski
-kn=kanadyjski
-ks=kaszmirski
-kk=kazaski
-rw=kinyaruanda
-ky=kirgiski
-rn=kirundi
-ko=korea\u0144ski
-ku=kurdyjski
-lo=laota\u0144ski
-la=\u0142aci\u0144ski
-lv=\u0142otewski
-ln=lingala
-lt=litewski
-mk=macedo\u0144ski
-mg=malgaski
-ms=malajski
-ml=malayalam
-mt=malta\u0144ski
-mi=maoryski
-mr=marathi
-mo=mo\u0142dawski
-mn=mongolski
-na=nauru
-ne=nepalski
-no=norweski
-oc=prowansalski
-or=oryski
-om=oromo 
-ps=paszto 
-fa=perski
-pl=polski
-pt=portugalski
-pa=pend\u017Cabski
-qu=keczua
-rm=retoroma\u0144ski
-ro=rumu\u0144ski
-ru=rosyjski
-sm=samoa\u0144ski
-sg=sangho
-sa=sanskrycki
-gd=szkocki
-sr=serbski
-st=lesotho
-tn=tswana
-sn=szona
-sd=sind
-si=syngaleski
-ss=suazi
-sk=s\u0142owacki
-sl=s\u0142owe\u0144ski
-so=somalijski
-es=hiszpa\u0144ski
-su=sundajski
-sw=swahili
-sv=szwedzki
-tl=tagalog
-tg=tad\u017Cycki
-ta=tamilski
-tt=tatarski
-te=telugu
-th=tajlandzki
-bo=tybeta\u0144ski
-ti=tigrinya
-to=tonga\u0144ski
-ts=tsonga
-tr=turecki
-tk=turkme\u0144ski
-tw=twi
-ug=ujguryjski
-uk=ukrai\u0144ski
-ur=urdu
-uz=uzbecki
-vi=wietnamski
-vo=volapuk
-cy=walijski
-wo=wolof
-xh=xhosa
-ji=jidisz
-yi=jidisz
-yo=joruba
-za=zhuang
-zu=zulu
-
-# country names
-# key is ISO 3166 country code
-
-AF=Afganistan
-AL=Albania
-DZ=Algeria
-AD=Andora
-AO=Angola
-AI=Anguilla
-AR=Argentyna
-AM=Armenia
-AW=Aruba
-AU=Australia
-AT=Austria
-AZ=Azerbejd\u017Can
-BS=Bahamy
-BH=Bahrajn
-BD=Bangladesz
-BB=Barbados
-BY=Bia\u0142oru\u015B
-BE=Belgia
-BZ=Belize
-BJ=Benin
-BM=Bermudy
-BT=Bhutan
-BO=Boliwia
-BA=Bo\u015Bnia i Hercegowina
-BW=Botswana
-BR=Brazylia
-BN=Brunei
-BG=Bu\u0142garia
-BF=Burkina Faso
-BI=Burundi
-KH=Kambod\u017Ca
-CM=Kamerun
-CA=Kanada
-CV=Republika Zielonego Przyl\u0105dka
-CF=Republika \u015Arodkowoafryka\u0144ska
-TD=Czad
-CL=Chile
-CN=Chiny
-CO=Kolumbia
-KM=Komory
-CG=Kongo
-CR=Kostaryka
-CI=Wybrze\u017Ce Ko\u015Bci S\u0142oniowej
-HR=Chorwacja
-CU=Kuba
-CY=Cypr
-CZ=Republika Czeska
-DK=Dania
-DJ=D\u017Cibuti
-DM=Dominika
-DO=Republika Dominikany
-TP=Wschodni Timor
-EC=Ekwador
-EG=Egipt
-SV=Salwador
-GQ=Gwinea R\u00F3wnikowa
-ER=Erytrea
-EE=Estonia
-ET=Etiopia
-FJ=Fid\u017Ci
-FI=Finlandia
-FR=Francja
-GF=Gujana Francuska
-PF=Polinezja Francuska
-TF=Francuskie Terytoria Zamorskie
-GA=Gabon
-GM=Gambia
-GE=Gruzja
-DE=Niemcy
-GH=Ghana
-GR=Grecja
-GP=Gwadelupa
-GT=Gwatemala
-GN=Gwinea
-GW=Gwinea Bissau
-GY=Gujana
-HT=Haiti
-HN=Honduras
-HK=Hong Kong
-HU=W\u0119gry
-IS=Islandia
-IN=Indie
-ID=Indonezja
-IR=Iran
-IQ=Irak
-IE=Irlandia
-IL=Izrael
-IT=W\u0142ochy
-JM=Jamajka
-JP=Japonia
-JO=Jordan
-KZ=Kazachstan
-KE=Kenia
-KI=Kiribati
-KP=Korea P\u00f3\u0142nocna
-KR=Korea Po\u0142udniowa
-KW=Kuwejt
-KG=Kirgistan
-LA=Laos
-LV=\u0141otwa
-LB=Liban
-LS=Lesoto
-LR=Liberia
-LY=Libia
-LI=Liechtenstein
-LT=Litwa
-LU=Luksemburg
-MK=Macedonia
-MG=Madagaskar
-MY=Malezja
-ML=Mali
-MT=Malta
-MQ=Martynika
-MR=Mauretania
-MU=Mauritius
-YT=Mayotte
-MX=Meksyk
-FM=Mikronezja
-MD=Mo\u0142dawia
-MC=Monako
-MN=Mongolia
-MS=Montserrat
-MA=Maroko
-MZ=Mozambik
-MM=Myanmar
-NA=Namibia
-NP=Nepal
-NL=Holandia
-AN=Antyle Holenderskie
-NC=Nowa Kaledonia
-NZ=Nowa Zelandia
-NI=Nikaragua
-NE=Niger
-NG=Nigeria
-NU=Niue
-NO=Norwegia
-OM=Oman
-PK=Pakistan
-PA=Panama
-PG=Papua Nowa Gwinea
-PY=Paragwaj
-PE=Peru
-PH=Filipiny
-PL=Polska
-PT=Portugalia
-PR=Portoryko
-QA=Katar
-RO=Rumunia
-RU=Rosja
-RW=Rwanda
-SA=Arabia Saudyjska
-SN=Senegal
-SP=Serbia
-SC=Seszele
-SL=Sierra Leone
-SG=Singapur
-SK=S\u0142owacja
-SI=S\u0142owenia
-SO=Somalia
-ZA=Republika Po\u0142udniowej Afryki
-ES=Hiszpania
-LK=Sri Lanka
-SD=Sudan
-SR=Surinam
-SZ=Suazi
-SE=Szwecja
-CH=Szwajcaria
-SY=Syria
-TW=Tajwan
-TJ=Tad\u017Cykistan
-TZ=Tanzania
-TH=Tajlandia
-TG=Togo
-TK=Tokelau
-TO=Tonga
-TT=Trynidad i Tobago
-TN=Tunezja
-TR=Turcja
-TM=Turkmenistan
-UG=Uganda
-UA=Ukraina
-AE=Zjednoczone Emiraty Arabskie
-GB=Wielka Brytania
-US=Stany Zjednoczone Ameryki
-UY=Urugwaj
-UZ=Uzbekistan
-VU=Vanuatu
-VA=Watykan
-VE=Wenezuela
-VN=Wietnam
-VG=Dziewicze Wyspy Brytyjskie
-VI=Dziewicze Wyspy Stan\u00F3w Zjednoczonych
-EH=Sahara Zachodnia
-YE=Jemen
-ZR=Zair
-ZM=Zambia
-ZW=Zimbabwe
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_pt.properties
deleted file mode 100755
index 93cff5b..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt.properties
+++ /dev/null
@@ -1,406 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-aa=afar
-ab=abkhazian
-ae=av\u00e9stico
-af=afric\u00e2ner
-am=am\u00e1rico
-an=aragon\u00eas
-ar=\u00e1rabe
-as=assam\u00eas
-av=avaric
-ay=aimara
-az=azerbaijano
-ba=bashkir
-be=bielo-russo
-bg=b\u00falgaro
-bh=biari
-bi=bislam\u00e1
-bm=bambara
-bn=bengali
-bo=tibetano
-br=bret\u00e3o
-bs=b\u00f3snio
-ca=catal\u00e3o
-ce=chechene
-ch=chamorro
-co=c\u00f3rsico
-cr=cree
-cs=tcheco
-cu=eslavo eclesi\u00e1stico
-cv=chuvash
-cy=gal\u00eas
-da=dinamarqu\u00eas
-de=alem\u00e3o
-dv=divehi
-dz=dzonga
-ee=eve
-el=grego
-en=ingl\u00eas
-eo=esperanto
-es=espanhol
-et=estoniano
-eu=basco
-fa=persa
-ff=fula
-fi=finland\u00eas
-fj=fijiano
-fo=fero\u00eas
-fr=franc\u00eas
-fy=fris\u00e3o
-ga=irland\u00eas
-gd=ga\u00e9lico escoc\u00eas
-gl=galego
-gn=guarani
-gu=guzerate
-gv=manx
-ha=hau\u00e7\u00e1
-he=hebraico
-hi=hindi
-ho=hiri motu
-hr=croata
-ht=haitiano
-hu=h\u00fangaro
-hy=arm\u00eanio
-hz=herero
-ia=interl\u00edngua
-id=indon\u00e9sio
-ie=interlingue
-ig=ibo
-ii=sichuan yi
-in=indon\u00e9sio
-io=ido
-is=island\u00eas
-it=italiano
-iu=inuktitut
-iw=hebraico
-ja=japon\u00eas
-ji=i\u00eddiche
-ka=georgiano
-kg=congol\u00eas
-ki=quicuio
-kj=Kuanyama
-kk=cazaque
-kl=groenland\u00eas
-km=cmer
-kn=canar\u00eas
-ko=coreano
-kr=can\u00fari
-ks=kashmiri
-ku=curdo
-kv=komi
-kw=c\u00f3rnico
-ky=quirguiz
-la=latim
-lb=luxemburgu\u00eas
-lg=luganda
-li=limburgish
-ln=lingala
-lo=laosiano
-lt=lituano
-lu=luba-catanga
-lv=let\u00e3o
-mg=malgaxe
-mh=marshall\u00eas
-mi=maori
-mk=maced\u00f4nio
-ml=malaiala
-mn=mongol
-mo=mold\u00e1vio
-mr=marata
-ms=malaio
-mt=malt\u00eas
-my=birman\u00eas
-na=nauruano
-nb=bokm\u00e5l noruegu\u00eas
-nd=ndebele, north
-ne=nepali
-ng=dongo
-nl=holand\u00eas
-nn=nynorsk noruegu\u00eas
-no=noruegu\u00eas
-nr=ndebele, south
-nv=navajo
-ny=nianja; chicheua; cheua
-oc=occit\u00e2nico (ap\u00f3s 1500); proven\u00e7al
-oj=ojibwa
-om=oromo
-or=oriya
-os=ossetic
-pa=panjabi
-pi=p\u00e1li
-pl=polon\u00eas
-ps=pashto (pushto)
-pt=portugu\u00eas
-qu=qu\u00edchua
-rm=rhaeto-romance
-rn=rundi
-ro=romeno
-ru=russo
-rw=kinyarwanda
-sa=s\u00e2nscrito
-sc=sardo
-sd=sindi
-se=northern sami
-sg=sango
-si=cingal\u00eas
-sk=eslovaco
-sl=eslov\u00eanio
-so=somali
-sq=alban\u00eas
-sr=s\u00e9rvio
-ss=swati
-st=soto, do sul
-su=sundan\u00eas
-sv=sueco
-sw=sua\u00edli
-ta=t\u00e2mil
-te=telugu
-tg=tadjique
-th=tailand\u00eas
-ti=tigr\u00ednia
-tk=turcomano
-tn=tswana
-to=tonga (ilhas tonga)
-tr=turco
-ts=tsonga
-tt=tatar
-tw=twi
-ty=taitiano
-ug=uighur
-uk=ucraniano
-ur=urdu
-uz=usbeque
-ve=venda
-vi=vietnamita
-vo=volapuque
-wa=walloon
-wo=uolofe
-xh=xosa
-yi=i\u00eddiche
-yo=ioruba
-za=zhuang
-zh=chin\u00eas
-zu=zulu
-AE=Emirados \u00c1rabes Unidos
-AF=Afeganist\u00e3o
-AG=Ant\u00edgua e Barbuda
-AL=Alb\u00e2nia
-AM=Arm\u00eania
-AN=Antilhas Holandesas
-AQ=Ant\u00e1rtida
-AS=Samoa Americana
-AT=\u00c1ustria
-AU=Austr\u00e1lia
-AZ=Azerbaij\u00e3o
-BA=B\u00f3snia-Herzeg\u00f3vina
-BE=B\u00e9lgica
-BF=Burquina Faso
-BG=Bulg\u00e1ria
-BH=Bareine
-BM=Bermudas
-BO=Bol\u00edvia
-BR=Brasil
-BT=But\u00e3o
-BV=Ilha Bouvet
-BW=Botsuana
-CA=Canad\u00e1
-CC=Ilhas Cocos (Keeling)
-CD=Congo, Rep\u00fablica Democr\u00e1tica do
-CF=Rep\u00fablica Centro-Africana
-CH=Su\u00ed\u00e7a
-CI=Costa do Marfim
-CK=Ilhas Cook
-CM=Rep\u00fablica dos Camar\u00f5es
-CO=Col\u00f4mbia
-CS=S\u00e9rvia e Montenegro
-CV=Cabo Verde
-CX=Ilhas Natal
-CY=Chipre
-CZ=Rep\u00fablica Tcheca
-DE=Alemanha
-DJ=Djibuti
-DK=Dinamarca
-DO=Rep\u00fablica Dominicana
-DZ=Arg\u00e9lia
-EC=Equador
-EE=Est\u00f4nia
-EG=Egito
-EH=Saara Ocidental
-ER=Eritr\u00e9ia
-ES=Espanha
-ET=Eti\u00f3pia
-FI=Finl\u00e2ndia
-FK=Ilhas Malvinas
-FM=Micron\u00e9sia, Estados Federados da
-FO=Ilhas Faroe
-FR=Fran\u00e7a
-GA=Gab\u00e3o
-GB=Reino Unido
-GD=Granada
-GE=Ge\u00f3rgia
-GF=Guiana Francesa
-GH=Gana
-GL=Gro\u00eanlandia
-GM=G\u00e2mbia
-GN=Guin\u00e9
-GP=Guadalupe
-GQ=Guin\u00e9 Equatorial
-GR=Gr\u00e9cia
-GS=Ge\u00f3rgia do Sul e Ilhas Sandwich do Sul
-GW=Guin\u00e9 Bissau
-GY=Guiana
-HK=Hong Kong, Regi\u00e3o Admin. Especial da China
-HM=Ilha Heard e Ilhas McDonald
-HR=Cro\u00e1cia
-HU=Hungria
-ID=Indon\u00e9sia
-IE=Irlanda
-IN=\u00cdndia
-IO=Territ\u00f3rio Brit\u00e2nico do Oceano \u00cdndico
-IQ=Iraque
-IR=Ir\u00e3
-IS=Isl\u00e2ndia
-IT=It\u00e1lia
-JO=Jord\u00e2nia
-JP=Jap\u00e3o
-KE=Qu\u00eania
-KG=Quirguist\u00e3o
-KH=Camboja
-KI=Quiribati
-KM=Comores
-KN=S\u00e3o Cristov\u00e3o e Nevis
-KP=Cor\u00e9ia, Norte
-KR=Cor\u00e9ia, Sul
-KY=Ilhas Caiman
-KZ=Casaquist\u00e3o
-LA=Rep\u00fablica Democr\u00e1tica Popular de Lao
-LB=L\u00edbano
-LC=Santa L\u00facia
-LR=Lib\u00e9ria
-LS=Lesoto
-LT=Litu\u00e2nia
-LU=Luxemburgo
-LV=Let\u00f4nia
-LY=L\u00edbia
-MA=Marrocos
-MC=M\u00f4naco
-MD=Moldova, Rep\u00fablica de
-MH=Ilhas Marshall
-MK=Maced\u00f4nia, Rep\u00fablica da
-MM=Mianm\u00e1
-MN=Mong\u00f3lia
-MO=Macau, Regi\u00e3o Admin. Especial da China
-MP=Ilhas Marianas do Norte
-MQ=Martinica
-MR=Maurit\u00e2nia
-MU=Maur\u00edcio
-MV=Maldivas
-MX=M\u00e9xico
-MY=Mal\u00e1sia
-MZ=Mo\u00e7ambique
-NA=Nam\u00edbia
-NC=Nova Caled\u00f4nia
-NE=N\u00edger
-NF=Ilha Norfolk
-NG=Nig\u00e9ria
-NI=Nicar\u00e1gua
-NL=Pa\u00edses Baixos
-NO=Noruega
-NZ=Nova Zel\u00e2ndia
-OM=Om\u00e3
-PA=Panam\u00e1
-PF=Polin\u00e9sia Francesa
-PG=Papua-Nova Guin\u00e9
-PH=Filipinas
-PK=Paquist\u00e3o
-PL=Pol\u00f4nia
-PM=Saint Pierre e Miquelon
-PR=Porto Rico
-PS=Territ\u00f3rio da Palestina
-PY=Paraguai
-QA=Catar
-RE=Reuni\u00e3o
-RO=Rom\u00eania
-RU=R\u00fassia
-RW=Ruanda
-SA=Ar\u00e1bia Saudita
-SB=Ilhas Salom\u00e3o
-SD=Sud\u00e3o
-SE=Su\u00e9cia
-SG=Cingapura
-SH=Santa Helena
-SI=Eslov\u00eania
-SJ=Svalbard e Jan Mayen
-SK=Eslov\u00e1quia
-SL=Serra Leoa
-SO=Som\u00e1lia
-ST=S\u00e3o Tom\u00e9 e Pr\u00edncipe
-SY=S\u00edria
-SZ=Suazil\u00e2ndia
-TC=Ilhas Turks e Caicos
-TD=Chade
-TF=Territ\u00f3rios Franceses do Sul
-TH=Tail\u00e2ndia
-TJ=Tadjiquist\u00e3o
-TL=Timor Leste
-TM=Turcomenist\u00e3o
-TN=Tun\u00edsia
-TR=Turquia
-TT=Trinidad e Tobago
-TZ=Tanz\u00e2nia
-UA=Ucr\u00e2nia
-UM=Ilhas Menores Distantes dos Estados Unidos
-US=Estados Unidos
-UY=Uruguai
-UZ=Uzbequist\u00e3o
-VA=Vaticano
-VC=S\u00e3o Vicente e Granadinas
-VG=Ilhas Virgens Brit\u00e2nicas
-VI=Ilhas Virgens dos EUA
-VN=Vietn\u00e3
-WF=Wallis e Futuna
-YE=I\u00eamen
-ZA=\u00c1frica do Sul
-ZM=Z\u00e2mbia
-ZW=Zimb\u00e1bwe
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_BR.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_BR.properties
deleted file mode 100755
index d6e391f..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_BR.properties
+++ /dev/null
@@ -1,54 +0,0 @@
-#
-# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ce=checheno
-ik=inupiaque
-jv=javan\u00eas
-nd=ndebele do norte
-nr=ndebele do sul
-st=soto do sul
-AX=Ilhas Aland
-BA=B\u00f3snia-Herzegovina
-BH=Bahrain
-KP=Cor\u00e9ia do Norte
-MK=Maced\u00f4nia
-ZW=Zimb\u00e1bue
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_PT.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_PT.properties
deleted file mode 100755
index 5643557..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_pt_PT.properties
+++ /dev/null
@@ -1,104 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-cs=checo
-et=est\u00f3nio
-pl=polaco
-sl=esloveno
-AE=Emiratos \u00c1rabes Unidos
-AM=Arm\u00e9nia
-AQ=Ant\u00e1rctica
-AZ=Azerbeij\u00e3o
-BA=B\u00f3snia-Herzegovina
-BJ=Benim
-BY=Bielorr\u00fassia
-CM=Camar\u00f5es
-CX=Ilha do Natal
-CZ=Rep\u00fablica Checa
-EE=Est\u00f3nia
-EG=Egipto
-EH=Sahara Ocidental
-ER=Eritreia
-FK=Ilhas Falkland
-GL=Gronel\u00e2ndia
-GS=Ilhas South Georgia e South Sandwich
-GW=Guin\u00e9-Bissau
-HK=Hong Kong - Regi\u00e3o Administrativa Especial da China
-KE=Qu\u00e9nia
-KG=Quirguizist\u00e3o
-KN=Saint Kitts e Nevis
-KP=Coreia do Norte
-KR=Coreia do Sul
-KY=Ilhas Caim\u00e3o
-KZ=Cazaquist\u00e3o
-LA=Lao, Rep\u00fablica Popular Democr\u00e1tica
-LV=Let\u00f3nia
-MC=M\u00f3naco
-MD=Mold\u00e1via, Rep\u00fablica da
-MG=Madag\u00e1scar
-MK=Maced\u00f3nia, Rep\u00fablica da
-MO=Macau - Regi\u00e3o Administrativa Especial da China
-MP=Ilhas Mariana do Norte
-MU=Maur\u00edcias
-NC=Nova Caled\u00f3nia
-PG=Papua Nova Guin\u00e9
-PL=Pol\u00f3nia
-PS=Territ\u00f3rio Palestiniano
-RE=Reunion
-RO=Rom\u00e9nia
-SC=Seicheles
-SG=Singapura
-SI=Eslov\u00e9nia
-SM=S\u00e3o Marino
-TC=Ilhas Turcas e Caicos
-TD=Tchade
-TF=Territ\u00f3rios Franceses a Sul
-TJ=Tajiquist\u00e3o
-TM=Turquemenist\u00e3o
-UM=Ilhas Minor Outlying (E.U.A)
-UZ=Uzbaquist\u00e3o
-VA=Santa S\u00e9 (Estado da Cidade do Vaticano)
-VC=Saint Vincent e Grenadines
-VG=Ilhas Virgin Brit\u00e2nicas
-VI=Ilhas Virgin E.U.A.
-VN=Vietname
-YE=I\u00e9men
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ro.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ro.properties
deleted file mode 100755
index 2d18ac4..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ro.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ro=rom\u00e2n\u0103
-
-# country names
-# key is ISO 3166 country code
-
-RO=Rom\u00e2nia
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_ru.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_ru.properties
deleted file mode 100755
index fe65cf7..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_ru.properties
+++ /dev/null
@@ -1,382 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-ab=\u0430\u0431\u0445\u0430\u0437\u0441\u043A\u0438\u0439
-aa=\u0430\u0444\u0430\u0440
-af=\u0430\u0444\u0440\u0438\u043A\u0430\u0430\u043D\u0441
-sq=\u0430\u043B\u0431\u0430\u043D\u0441\u043A\u0438\u0439
-am=\u0430\u043C\u0445\u0430\u0440\u0438\u043A
-ar=\u0430\u0440\u0430\u0431\u0441\u043A\u0438\u0439
-hy=\u0430\u0440\u043C\u044F\u043D\u0441\u043A\u0438\u0439
-as=\u0430\u0441\u0441\u0430\u043C\u0441\u043A\u0438\u0439
-ay=\u0430\u0439\u043C\u0430\u0440\u0430
-az=\u0430\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043D\u0441\u043A\u0438\u0439
-ba=\u0431\u0430\u0448\u043A\u0438\u0440\u0441\u043A\u0438\u0439
-eu=\u0431\u0430\u0441\u043A\u0441\u043A\u0438\u0439
-bn=\u0431\u0435\u043D\u0433\u0430\u043B\u044C\u0441\u043A\u0438\u0439
-dz=\u0431\u0443\u0442\u0430\u043D\u0441\u043A\u0438\u0439
-bh=\u0431\u0438\u0445\u0430\u0440\u0438
-bi=\u0431\u0438\u0441\u043B\u0430\u043C\u0430
-br=\u0431\u0440\u0435\u0442\u043E\u043D\u0441\u043A\u0438\u0439
-bg=\u0431\u043E\u043B\u0433\u0430\u0440\u0441\u043A\u0438\u0439
-my=\u0431\u0438\u0440\u043C\u0430\u043D\u0441\u043A\u0438\u0439
-be=\u0431\u0435\u043B\u043E\u0440\u0443\u0441\u0441\u043A\u0438\u0439
-km=\u043A\u0430\u043C\u0431\u043E\u0434\u0436\u0438\u0439\u0441\u043A\u0438\u0439
-ca=\u043A\u0430\u0442\u0430\u043B\u0430\u043D\u0441\u043A\u0438\u0439
-zh=\u043A\u0438\u0442\u0430\u0439\u0441\u043A\u0438\u0439
-co=\u043A\u043E\u0440\u0441\u0438\u043A\u0430\u043D\u0441\u043A\u0438\u0439
-hr=\u0445\u043E\u0440\u0432\u0430\u0442\u0441\u043A\u0438\u0439
-cs=\u0447\u0435\u0448\u0441\u043A\u0438\u0439
-da=\u0434\u0430\u0442\u0441\u043A\u0438\u0439
-nl=\u043D\u0438\u0434\u0435\u0440\u043B\u0430\u043D\u0434\u0441\u043A\u0438\u0439
-en=\u0430\u043D\u0433\u043B\u0438\u0439\u0441\u043A\u0438\u0439
-eo=\u044D\u0441\u043F\u0435\u0440\u0430\u043D\u0442\u043E
-et=\u044D\u0441\u0442\u043E\u043D\u0441\u043A\u0438\u0439
-fo=\u0444\u0430\u0440\u0435\u0440\u0441\u043A\u0438\u0439
-fj=\u0444\u0438\u0434\u0436\u0438
-fi=\u0444\u0438\u043D\u0441\u043A\u0438\u0439
-fr=\u0444\u0440\u0430\u043D\u0446\u0443\u0437\u043A\u0438\u0439
-fy=\u0444\u0440\u0438\u0437\u0441\u043A\u0438\u0439
-gl=\u0433\u0430\u043B\u0438\u0441\u0438\u0439\u0441\u043A\u0438\u0439
-ka=\u0433\u0440\u0443\u0437\u0438\u043D\u0441\u043A\u0438\u0439
-de=\u043D\u0435\u043C\u0435\u0446\u043A\u0438\u0439
-el=\u0433\u0440\u0435\u0447\u0435\u0441\u043A\u0438\u0439
-kl=\u0433\u0440\u0435\u043D\u043B\u0430\u043D\u0434\u0441\u043A\u0438\u0439
-gn=\u0433\u0443\u0430\u0440\u0430\u043D\u0438
-gu=\u0433\u0443\u044F\u0440\u0430\u0442\u0438
-ha=\u0445\u0430\u0443\u0441
-he=\u0438\u0432\u0440\u0438\u0442
-iw=\u0434\u0440\u0435\u0432\u043D\u0435\u0435\u0432\u0440\u0435\u0439\u0441\u043A\u0438\u0439
-hi=\u0445\u0438\u043D\u0434\u0438
-hu=\u0432\u0435\u043D\u0433\u0435\u0440\u0441\u043A\u0438\u0439
-is=\u0438\u0441\u043B\u0430\u043D\u0434\u0441\u043A\u0438\u0439
-id=\u0438\u043D\u0434\u043E\u043D\u0435\u0437\u0438\u0439\u0441\u043A\u0438\u0439
-in=\u0438\u043D\u0434\u043E\u043D\u0435\u0437\u0438\u0439\u0441\u043A\u0438\u0439
-ia=\u0438\u043D\u0442\u0435\u0440\u043B\u0438\u043D\u0433\u0432\u0430
-ie=\u0438\u043D\u0442\u0435\u0440\u043B\u0438\u043D\u0433\u0432\u0430
-iu=\u0438\u043D\u0443\u043A\u0442\u0438\u0442\u0443\u0442
-ik=\u0438\u043D\u0443\u043F\u0438\u0430\u043A
-ga=\u0438\u0440\u043B\u0430\u043D\u0434\u0441\u043A\u0438\u0439
-it=\u0438\u0442\u0430\u043B\u044C\u044F\u043D\u0441\u043A\u0438\u0439
-ja=\u044F\u043F\u043E\u043D\u0441\u043A\u0438\u0439
-jw=\u044F\u0432\u0430\u043D\u0441\u043A\u0438\u0439
-kn=\u043A\u0430\u043D\u0430\u0434\u0430
-ks=\u043A\u0430\u0448\u043C\u0438\u0440\u0441\u043A\u0438\u0439
-kk=\u043A\u0430\u0437\u0430\u0445\u0441\u043A\u0438\u0439
-rw=\u043A\u0438\u043D\u0438\u0430\u0440\u0432\u0430\u043D\u0434\u0430
-ky=\u043A\u0438\u0440\u0433\u0438\u0437\u0441\u043A\u0438\u0439
-rn=\u043A\u0438\u0440\u0443\u043D\u0434\u0438
-ko=\u043A\u043E\u0440\u0435\u0439\u0441\u043A\u0438\u0439
-ku=\u043A\u0443\u0440\u0434\u0441\u043A\u0438\u0439
-lo=\u043B\u0430\u043E\u0441\u0441\u043A\u0438\u0439
-la=\u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u0439
-lv=\u043B\u0430\u0442\u0432\u0438\u0439\u0441\u043A\u0438\u0439
-ln=\u043B\u0438\u043D\u0433\u0430\u043B\u0430
-lt=\u043B\u0438\u0442\u043E\u0432\u0441\u043A\u0438\u0439
-mk=\u043C\u0430\u043A\u0435\u0434\u043E\u043D\u0441\u043A\u0438\u0439
-mg=\u043C\u0430\u043B\u0430\u0433\u0430\u0441\u0438\u0439\u0441\u043A\u0438\u0439
-ms=\u043C\u0430\u043B\u0430\u0439\u0441\u043A\u0438\u0439
-ml=\u043C\u0430\u043B\u0430\u0439\u044F\u043B\u0430\u043C
-mt=\u043C\u0430\u043B\u044C\u0442\u0438\u0439\u0441\u043A\u0438\u0439
-mi=\u043C\u0430\u043E\u0440\u0438
-mr=\u043C\u0430\u0440\u0430\u0442\u0445\u0438
-mo=\u043C\u043E\u043B\u0434\u0430\u0432\u0430\u043D\u0441\u043A\u0438\u0439
-mn=\u043C\u043E\u043D\u0433\u043E\u043B\u044C\u0441\u043A\u0438\u0439
-na=\u043D\u0430\u0443\u0440\u0443
-ne=\u043D\u0435\u043F\u0430\u043B\u044C\u0441\u043A\u0438\u0439
-no=\u043D\u043E\u0440\u0432\u0435\u0436\u0441\u043A\u0438\u0439
-oc=\u043E\u0441\u0435\u0442\u0438\u043D\u0441\u043A\u0438\u0439
-or=\u043E\u0440\u0438\u044F
-om=\u043E\u0440\u043E\u043C\u043E
-ps=\u043F\u0430\u0448\u0442\u043E (\u043F\u0443\u0448\u0442\u043E)
-fa=\u043F\u0435\u0440\u0441\u0438\u0434\u0441\u043A\u0438\u0439
-pl=\u043F\u043E\u043B\u044C\u0441\u043A\u0438\u0439
-pt=\u043F\u043E\u0440\u0442\u0443\u0433\u0430\u043B\u044C\u0441\u043A\u0438\u0439
-pa=\u043F\u0435\u043D\u0434\u0436\u0430\u0431\u0438
-qu=\u043A\u0435\u0447\u0443\u0430
-rm=\u0440\u0435\u0442\u043E\u0440\u043E\u043C\u0430\u043D\u0441\u043A\u0438\u0435 \u0434\u0438\u0430\u043B\u0435\u043A\u0442\u044B
-ro=\u0440\u0443\u043C\u044B\u043D\u0441\u043A\u0438\u0439
-ru=\u0440\u0443\u0441\u0441\u043A\u0438\u0439
-sm=\u043F\u043E\u043B\u0438\u043D\u0435\u0437\u0438\u0439\u0441\u043A\u0438\u0439
-sg=\u0441\u0430\u043D\u0445\u043E
-sa=\u0441\u0430\u043D\u0441\u043A\u0440\u0438\u0442
-gd=\u0433\u0430\u044D\u043B\u044C\u0441\u043A\u0438\u0439
-sr=\u0441\u0435\u0440\u0431\u0441\u043A\u0438\u0439
-st=\u0441\u0435\u0441\u043E\u0437\u043E
-tn=\u0441\u0435\u0442\u0441\u0432\u0430\u043D\u0430
-sn=\u0448\u043E\u043D\u0430
-sd=\u0441\u0438\u043D\u0445\u0438
-si=\u0441\u0438\u043D\u0433\u0430\u043B\u044C\u0441\u043A\u0438\u0439
-ss=\u0441\u0438\u0441\u0432\u0430\u0442\u0438
-sk=\u0441\u043B\u043E\u0432\u0430\u0446\u043A\u0438\u0439
-sl=\u0441\u043B\u043E\u0432\u0435\u043D\u0441\u043A\u0438\u0439
-so=\u0441\u043E\u043C\u0430\u043B\u0438
-es=\u0438\u0441\u043F\u0430\u043D\u0441\u043A\u0438\u0439
-su=\u0441\u0430\u043D\u0434\u0430\u043D\u0435\u0437\u0441\u043A\u0438\u0439
-sw=\u0441\u0443\u0430\u0445\u0438\u043B\u0438
-sv=\u0448\u0432\u0435\u0434\u0441\u043A\u0438\u0439
-tl=\u0442\u0430\u0433\u0430\u043B\u044C\u0441\u043A\u0438\u0439
-tg=\u0442\u0430\u0434\u0436\u0438\u043A\u0441\u043A\u0438\u0439
-ta=\u0442\u0430\u043C\u0438\u043B\u044C\u0441\u043A\u0438\u0439
-tt=\u0442\u0430\u0442\u0430\u0440\u0441\u043A\u0438\u0439
-te=\u0442\u0435\u043B\u0443\u0433\u0443
-th=\u0442\u0430\u0439\u0441\u043A\u0438\u0439
-bo=\u0442\u0438\u0431\u0435\u0442\u0441\u043A\u0438\u0439
-ti=\u0442\u0438\u0433\u0440\u0438\u0439\u0441\u043A\u0438\u0439
-to=\u0442\u043E\u043D\u0433\u0430
-ts=\u0442\u0441\u043E\u043D\u0433\u0430
-tr=\u0442\u0443\u0440\u0435\u0446\u043A\u0438\u0439
-tk=\u0442\u0443\u0440\u043A\u043C\u0435\u043D\u0441\u043A\u0438\u0439
-tw=\u0442\u0432\u0438
-ug=\u0441\u0438\u043D\u0446\u0437\u044F\u043D-\u0423\u0439\u0433\u0443\u0440\u0441\u043A\u0438\u0439
-uk=\u0443\u043A\u0440\u0430\u0438\u043D\u0441\u043A\u0438\u0439
-ur=\u0443\u0440\u0434\u0443
-uz=\u0443\u0437\u0431\u0435\u043A\u0441\u043A\u0438\u0439
-vi=\u0432\u044C\u0435\u0442\u043D\u0430\u043C\u0441\u043A\u0438\u0439
-vo=\u0432\u043E\u043B\u044F\u043F\u044E\u043A
-cy=\u0432\u0430\u043B\u043B\u0438\u0439\u0441\u043A\u0438\u0439
-wo=\u0432\u043E\u043B\u043E\u0444
-xh=\u0445\u043E\u0441\u0430
-ji=\u0438\u0434\u0438\u0448
-yi=\u0435\u0432\u0440\u0435\u0439\u0441\u043A\u0438\u0439
-yo=\u0439\u043E\u0440\u0443\u0431\u0430
-za=\u0436\u0430\u043D\u0433
-zu=\u0437\u0443\u043B\u0443\u0441\u0441\u043A\u0438\u0439
-
-# country names
-# key is ISO 3166 country code
-
-AF=\u0410\u0444\u0433\u0430\u043D\u0438\u0441\u0442\u0430\u043D
-AL=\u0410\u043B\u0431\u0430\u043D\u0438\u044F
-DZ=\u0410\u043B\u0436\u0438\u0440
-AD=\u0410\u043D\u0434\u043E\u0440\u0440\u0430
-AO=\u0410\u043D\u0433\u043E\u043B\u0430
-AI=\u0410\u043D\u0433\u0443\u0438\u043B\u0430
-AR=\u0410\u0440\u0433\u0435\u043D\u0442\u0438\u043D\u0430
-AM=\u0410\u0440\u043C\u0435\u043D\u0438\u044F
-AW=\u0410\u0440\u0443\u0431\u0430
-AU=\u0410\u0432\u0441\u0442\u0440\u0430\u043B\u0438\u044F
-AT=\u0410\u0432\u0441\u0442\u0440\u0438\u044F
-AZ=\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043D
-BS=\u0411\u0430\u0433\u0430\u043C\u0441\u043A\u0438\u0435 \u043E\u0441\u0442\u0440\u043E\u0432\u0430
-BH=\u0411\u0430\u0445\u0440\u0435\u0439\u043D
-BD=\u0411\u0430\u043D\u0433\u043B\u0430\u0434\u0435\u0448
-BB=\u0411\u0430\u0440\u0431\u0430\u0434\u043E\u0441
-BY=\u0411\u0435\u043B\u0430\u0440\u0443\u0441\u044C
-BE=\u0411\u0435\u043B\u044C\u0433\u0438\u044F
-BZ=\u0411\u0435\u043B\u0438\u0437
-BJ=\u0411\u0435\u043D\u0438\u043D
-BM=\u0411\u0435\u0440\u043C\u0443\u0434\u0441\u043A\u0438\u0435 \u043E\u0441\u0442\u0440\u043E\u0432\u0430
-BT=\u0411\u0443\u0442\u0430\u043D
-BO=\u0411\u043E\u043B\u0438\u0432\u0438\u044F
-BA=\u0411\u043E\u0441\u043D\u0438\u044F \u0438 \u0413\u0435\u0440\u0446\u0435\u0433\u043E\u0432\u0438\u043D\u0430
-BW=\u0411\u043E\u0442\u0441\u0432\u0430\u043D\u0430
-BR=\u0411\u0440\u0430\u0437\u0438\u043B\u0438\u044F
-BN=\u0411\u0440\u0443\u043D\u0435\u0439
-BG=\u0411\u043E\u043B\u0433\u0430\u0440\u0438\u044F
-BF=\u0411\u0443\u0440\u043A\u0438\u043D\u0430-\u0424\u0430\u0441\u043E
-BI=\u0411\u0443\u0440\u0443\u043D\u0434\u0438
-KH=\u041A\u0430\u043C\u0431\u043E\u0434\u0436\u0430
-CM=\u041A\u0430\u043C\u0435\u0440\u0443\u043D
-CA=\u041A\u0430\u043D\u0430\u0434\u0430
-CV=\u0417\u0435\u043B\u0435\u043D\u044B\u0439 \u041C\u044B\u0441
-CF=\u0426\u0435\u043D\u0442\u0440\u0430\u043B\u044C\u043D\u043E\u0430\u0444\u0440\u0438\u043A\u0430\u043D\u0441\u043A\u0430\u044F \u0420\u0435\u0441\u043F\u0443\u0431\u043B\u0438\u043A\u0430
-TD=\u0427\u0430\u0434
-CL=\u0427\u0438\u043B\u0438
-CN=\u041A\u0438\u0442\u0430\u0439
-CO=\u041A\u043E\u043B\u0443\u043C\u0431\u0438\u044F
-KM=\u041A\u043E\u043C\u043E\u0440\u043E\u0441
-CG=\u041A\u043E\u043D\u0433\u043E
-CR=\u041A\u043E\u0441\u0442\u0430-\u0420\u0438\u043A\u0430
-CI=\u041A\u043E\u0442-\u0434'\u0418\u0432\u0443\u0430\u0440
-HR=\u0425\u043E\u0440\u0432\u0430\u0442\u0438\u044F
-CU=\u041A\u0443\u0431\u0430
-CY=\u041A\u0438\u043F\u0440
-CZ=\u0427\u0435\u0445\u0438\u044F
-DK=\u0414\u0430\u043D\u0438\u044F
-DJ=\u0414\u0436\u0438\u0431\u0443\u0442\u0438
-DM=\u0414\u043E\u043C\u0438\u043D\u0438\u043A\u0430
-DO=\u0414\u043E\u043C\u0438\u043D\u0438\u043A\u0430\u043D\u0441\u043A\u0430\u044F \u0420\u0435\u0441\u043F\u0443\u0431\u043B\u0438\u043A\u0430
-TP=\u0412\u043E\u0441\u0442\u043E\u0447\u043D\u044B\u0439 \u0422\u0438\u043C\u043E\u0440
-EC=\u042D\u043A\u0432\u0430\u0434\u043E\u0440
-EG=\u0415\u0433\u0438\u043F\u0442
-SV=\u0421\u0430\u043B\u044C\u0432\u0430\u0434\u043E\u0440
-GQ=\u042D\u043A\u0432\u0430\u0442\u043E\u0440\u0438\u0430\u043B\u044C\u043D\u0430\u044F \u0413\u0432\u0438\u043D\u0435\u044F
-ER=\u042D\u0440\u0438\u0442\u0440\u0435\u044F
-EE=\u042D\u0441\u0442\u043E\u043D\u0438\u044F
-ET=\u042D\u0444\u0438\u043E\u043F\u0438\u044F
-FJ=\u0424\u0438\u0434\u0436\u0438
-FI=\u0424\u0438\u043D\u043B\u044F\u043D\u0434\u0438\u044F
-FR=\u0424\u0440\u0430\u043D\u0446\u0438\u044F
-GF=\u0424\u0440\u0430\u043D\u0446\u0443\u0437\u0441\u043A\u0430\u044F \u0413\u0432\u0438\u043D\u0435\u044F
-PF=\u0424\u0440\u0430\u043D\u0446\u0443\u0437\u0441\u043A\u0430\u044F \u041F\u043E\u043B\u0438\u043D\u0435\u0437\u0438\u044F
-TF=\u0444\u0440\u0430\u043D\u0446\u0443\u0437\u0441\u043A\u0438\u0435 \u044E\u0436\u043D\u044B\u0435 \u0442\u0435\u0440\u0440\u0438\u0442\u043E\u0440\u0438\u0438
-GA=\u0413\u0430\u0431\u043E\u043D
-GM=\u0413\u0430\u043C\u0431\u0438\u044F
-GE=\u0413\u0440\u0443\u0437\u0438\u044F
-DE=\u0413\u0435\u0440\u043C\u0430\u043D\u0438\u044F
-GH=\u0413\u0430\u043D\u0430
-GR=\u0413\u0440\u0435\u0446\u0438\u044F
-GP=\u0413\u0432\u0430\u0434\u0435\u043B\u0443\u043F\u0430
-GT=\u0413\u0432\u0430\u0442\u0435\u043C\u0430\u043B\u0430
-GN=\u0413\u0432\u0438\u043D\u0435\u044F
-GW=\u0413\u0432\u0438\u043D\u0435\u044F-\u0411\u0438\u0441\u0430\u0443
-GY=\u0413\u0430\u0439\u0430\u043D\u0430
-HT=\u0413\u0430\u0438\u0442\u0438
-HN=\u0413\u043E\u043D\u0434\u0443\u0440\u0430\u0441
-HK=\u0413\u043E\u043D\u043A\u043E\u043D\u0433
-HU=\u0412\u0435\u043D\u0433\u0440\u0438\u044F
-IS=\u0418\u0441\u043B\u0430\u043D\u0434\u0438\u044F
-IN=\u0418\u043D\u0434\u0438\u044F
-ID=\u0418\u043D\u0434\u043E\u043D\u0435\u0437\u0438\u044F
-IR=\u0418\u0440\u0430\u043D
-IQ=\u0418\u0440\u0430\u043A
-IE=\u0418\u0440\u043B\u0430\u043D\u0434\u0438\u044F
-IL=\u0418\u0437\u0440\u0430\u0438\u043B\u044C
-IT=\u0418\u0442\u0430\u043B\u0438\u044F
-JM=\u042F\u043C\u0430\u0439\u043A\u0430
-JP=\u042F\u043F\u043E\u043D\u0438\u044F
-JO=\u0418\u043E\u0440\u0434\u0430\u043D\u0438\u044F
-KZ=\u041A\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043D
-KE=\u041A\u0435\u043D\u0438\u044F
-KI=\u041A\u0438\u0440\u0438\u0431\u0430\u0442\u0438
-KP=\u0421\u0435\u0432\u0435\u0440\u043D\u0430\u044F \u041A\u043E\u0440\u0435\u044F
-KR=\u042E\u0436\u043D\u0430\u044F \u041A\u043E\u0440\u0435\u044F
-KW=\u041A\u0443\u0432\u0435\u0439\u0442
-KG=\u041A\u0438\u0440\u0433\u0438\u0437\u0441\u0442\u0430\u043D
-LA=\u041B\u0430\u043E\u0441
-LV=\u041B\u0430\u0442\u0432\u0438\u044F
-LB=\u041B\u0438\u0432\u0430\u043D
-LS=\u041B\u0435\u0441\u043E\u0442\u043E
-LR=\u041B\u0438\u0431\u0435\u0440\u0438\u044F
-LY=\u041B\u0438\u0432\u0438\u044F
-LI=\u041B\u0438\u0445\u0442\u0435\u043D\u0448\u0442\u0435\u0439\u043D
-LT=\u041B\u0438\u0442\u0432\u0430
-LU=\u041B\u044E\u043A\u0441\u0435\u043C\u0431\u0443\u0440\u0433
-MK=\u041C\u0430\u043A\u0435\u0434\u043E\u043D\u0438\u044F
-MG=\u041C\u0430\u0434\u0430\u0433\u0430\u0441\u043A\u0430\u0440
-MY=\u041C\u0430\u043B\u0430\u0439\u0437\u0438\u044F
-ML=\u041C\u0430\u043B\u0438
-MT=\u041C\u0430\u043B\u044C\u0442\u0430
-MQ=\u041C\u0430\u0440\u0442\u0438\u043D\u0438\u043A\u0430
-MR=\u041C\u0430\u0432\u0440\u0438\u0442\u0430\u043D\u0438\u044F
-MU=\u041C\u0430\u0432\u0440\u0438\u043A\u0438\u0439
-YT=\u041C\u0430\u0439\u043E\u0442\u0442\u0435
-MX=\u041C\u0435\u043A\u0441\u0438\u043A\u0430
-FM=\u041C\u0438\u043A\u0440\u043E\u043D\u0435\u0437\u0438\u044F
-MD=\u041C\u043E\u043B\u0434\u043E\u0432\u0430
-MC=\u041C\u043E\u043D\u0430\u043A\u043E
-MN=\u041C\u043E\u043D\u0433\u043E\u043B\u0438\u044F
-MS=\u041C\u043E\u043D\u0442\u0441\u0435\u0440\u0430\u0442
-MA=\u041C\u0430\u0440\u043E\u043A\u043A\u043E
-MZ=\u041C\u043E\u0437\u0430\u043C\u0431\u0438\u043A
-MM=\u041C\u044C\u044F\u043D\u043C\u0430
-NA=\u041D\u0430\u043C\u0438\u0431\u0438\u044F
-NP=\u041D\u0435\u043F\u0430\u043B
-NL=\u041D\u0438\u0434\u0435\u0440\u043B\u0430\u043D\u0434\u044B
-AN=\u041D\u0438\u0434\u0435\u0440\u043B\u0430\u043D\u0434\u0441\u043A\u0438\u0435 \u0410\u043D\u0442\u0438\u043B\u044C\u0441\u043A\u0438\u0435 \u043E\u0441\u0442\u0440\u043E\u0432\u0430
-NC=\u041D\u043E\u0432\u0430\u044F \u041A\u0430\u043B\u0435\u0434\u043E\u043D\u0438\u044F
-NZ=\u041D\u043E\u0432\u0430\u044F \u0417\u0435\u043B\u0430\u043D\u0434\u0438\u044F
-NI=\u041D\u0438\u043A\u0430\u0440\u0430\u0433\u0443\u0430
-NE=\u041D\u0438\u0433\u0435\u0440
-NG=\u041D\u0438\u0433\u0435\u0440\u0438\u044F
-NU=\u041D\u0438\u044E
-NO=\u041D\u043E\u0440\u0432\u0435\u0433\u0438\u044F
-OM=\u041E\u043C\u0430\u043D
-PK=\u041F\u0430\u043A\u0438\u0441\u0442\u0430\u043D
-PA=\u041F\u0430\u043D\u0430\u043C\u0430
-PG=\u041F\u0430\u043F\u0443\u0430 - \u041D\u043E\u0432\u0430\u044F \u0413\u0432\u0438\u043D\u0435\u044F
-PY=\u041F\u0430\u0440\u0430\u0433\u0432\u0430\u0439
-PE=\u041F\u0435\u0440\u0443
-PH=\u0424\u0438\u043B\u0438\u043F\u043F\u0438\u043D\u044B
-PL=\u041F\u043E\u043B\u044C\u0448\u0430
-PT=\u041F\u043E\u0440\u0442\u0443\u0433\u0430\u043B\u0438\u044F
-PR=\u041F\u0443\u044D\u0440\u0442\u043E-\u0420\u0438\u043A\u043E
-QA=\u041A\u0430\u0442\u0430\u0440
-RO=\u0420\u0443\u043C\u044B\u043D\u0438\u044F
-RU=\u0420\u043E\u0441\u0441\u0438\u044F
-RW=\u0420\u0443\u0430\u043D\u0434\u0430
-SA=\u0421\u0430\u0443\u0434\u043E\u0432\u0441\u043A\u0430\u044F \u0410\u0440\u0430\u0432\u0438\u044F
-SN=\u0421\u0435\u043D\u0435\u0433\u0430\u043B
-SP=\u0421\u0435\u0440\u0431\u0438\u044F
-SC=\u0421\u0435\u0439\u0448\u0435\u043B\u044C\u0441\u043A\u0438\u0435 \u041E\u0441\u0442\u0440\u043E\u0432\u0430
-SL=\u0421\u044C\u0435\u0440\u0440\u0430-\u041B\u0435\u043E\u043D\u0435
-SG=\u0421\u0438\u043D\u0433\u0430\u043F\u0443\u0440
-SK=\u0421\u043B\u043E\u0432\u0430\u043A\u0438\u044F
-SI=\u0421\u043B\u043E\u0432\u0435\u043D\u0438\u044F
-SO=\u0421\u043E\u043C\u0430\u043B\u0438
-ZA=\u042E\u0436\u043D\u0430\u044F \u0410\u0444\u0440\u0438\u043A\u0430
-ES=\u0418\u0441\u043F\u0430\u043D\u0438\u044F
-LK=\u0428\u0440\u0438-\u041B\u0430\u043D\u043A\u0430
-SD=\u0421\u0443\u0434\u0430\u043D
-SR=\u0421\u0443\u0440\u0438\u043D\u0430\u043C
-SZ=\u0421\u0432\u0430\u0437\u0438\u043B\u0435\u043D\u0434
-SE=\u0428\u0432\u0435\u0446\u0438\u044F
-CH=\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044F
-SY=\u0421\u0438\u0440\u0438\u044F
-TW=\u0422\u0430\u0439\u0432\u0430\u043D\u044C
-TJ=\u0422\u0430\u0434\u0436\u0438\u043A\u0438\u0441\u0442\u0430\u043D
-TZ=\u0422\u0430\u043D\u0437\u0430\u043D\u0438\u044F
-TH=\u0422\u0430\u0438\u043B\u0430\u043D\u0434
-TG=\u0422\u043E\u0433\u043E
-TK=\u0422\u043E\u043A\u0435\u043B\u0430\u0443
-TO=\u0422\u043E\u043D\u0433\u0430
-TT=\u0422\u0440\u0438\u043D\u0438\u0434\u0430\u0434 \u0438 \u0422\u043E\u0431\u0430\u0433\u043E
-TN=\u0422\u0443\u043D\u0438\u0441
-TR=\u0422\u0443\u0440\u0446\u0438\u044F
-TM=\u0422\u0443\u0440\u043A\u043C\u0435\u043D\u0438\u0441\u0442\u0430\u043D
-UG=\u0423\u0433\u0430\u043D\u0434\u0430
-UA=\u0423\u043A\u0440\u0430\u0438\u043D\u0430
-AE=\u041E\u0431\u044A\u0435\u0434\u0438\u043D\u0435\u043D\u043D\u044B\u0435 \u0410\u0440\u0430\u0431\u0441\u043A\u0438\u0435 \u042D\u043C\u0438\u0440\u0430\u0442\u044B
-GB=\u0421\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u043D\u043E\u0435 \u041A\u043E\u0440\u043E\u043B\u0435\u0432\u0441\u0442\u0432\u043E
-US=\u0421\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u043D\u044B\u0435 \u0428\u0442\u0430\u0442\u044B
-UY=\u0423\u0440\u0443\u0433\u0432\u0430\u0439
-UZ=\u0423\u0437\u0431\u0435\u043A\u0438\u0441\u0442\u0430\u043D
-VU=\u0412\u0430\u043D\u0443\u0430\u0442\u0443
-VA=\u0412\u0430\u0442\u0438\u043A\u0430\u043D
-VE=\u0412\u0435\u043D\u0435\u0441\u0443\u044D\u043B\u0430
-VN=\u0412\u044C\u0435\u0442\u043D\u0430\u043C
-VG=\u0411\u0440\u0438\u0442\u0430\u043D\u0441\u043A\u0438\u0435 \u0412\u0438\u0440\u0433\u0438\u043D\u0441\u043A\u0438\u0435 \u043E\u0441\u0442\u0440\u043E\u0432\u0430
-VI=\u0412\u0438\u0440\u0433\u0438\u043D\u0441\u043A\u0438\u0435 \u043E\u0441\u0442\u0440\u043E\u0432\u0430 \u0421\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u043D\u044B\u0445 \u0428\u0442\u0430\u0442\u043E\u0432
-EH=\u0417\u0430\u043F\u0430\u0434\u043D\u0430\u044F \u0421\u0430\u0445\u0430\u0440\u0430
-YE=\u0419\u0435\u043C\u0435\u043D
-ZR=\u0417\u0430\u0438\u0440
-ZM=\u0417\u0430\u043C\u0431\u0438\u044F
-ZW=\u0417\u0438\u043C\u0431\u0430\u0431\u0432\u0435
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sk.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sk.properties
deleted file mode 100755
index 2fd0d1b..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sk.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-sk=Sloven\u010dina
-
-# country names
-# key is ISO 3166 country code
-
-SK=Slovensk\u00e1 republika
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sl.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sl.properties
deleted file mode 100755
index 154e6e2..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sl.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-sl=Sloven\u0161\u010dina
-
-# country names
-# key is ISO 3166 country code
-
-SI=Slovenija
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sq.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sq.properties
deleted file mode 100755
index f027076..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sq.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-sq=shqipe
-
-# country names
-# key is ISO 3166 country code
-
-AL=Shqip\u00ebria
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sr.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sr.properties
deleted file mode 100755
index 7ebe39a..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sr.properties
+++ /dev/null
@@ -1,339 +0,0 @@
-#
-# Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-af=\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0435\u0440\u0441\u043a\u0438
-ar=\u0410\u0440\u0430\u043f\u0441\u043a\u0438
-be=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u043a\u0438
-bg=\u0411\u0443\u0433\u0430\u0440\u0441\u043a\u0438
-br=\u0411\u0440\u0435\u0442\u043e\u043d\u0441\u043a\u0438
-ca=\u041a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0438
-co=\u041a\u043e\u0440\u0437\u0438\u043a\u0430\u043d\u0441\u043a\u0438
-cs=\u0427\u0435\u0448\u043a\u0438
-da=\u0414\u0430\u043d\u0441\u043a\u0438
-de=\u041d\u0435\u043c\u0430\u0447\u043a\u0438
-el=\u0413\u0440\u0447\u043a\u0438
-en=\u0415\u043d\u0433\u043b\u0435\u0441\u043a\u0438
-eo=\u0415\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e
-es=\u0428\u043f\u0430\u043d\u0441\u043a\u0438
-et=\u0415\u0441\u0442\u043e\u043d\u0441\u043a\u0438
-eu=\u0411\u0430\u0441\u043a\u0438\u0458\u0441\u043a\u0438
-fa=\u041f\u0435\u0440\u0441\u0438\u0458\u0441\u043a\u0438
-fi=\u0424\u0438\u043d\u0441\u043a\u0438
-fr=\u0424\u0440\u0430\u043d\u0446\u0443\u0441\u043a\u0438
-ga=\u0418\u0440\u0441\u043a\u0438
-he=\u0425\u0435\u0431\u0440\u0435\u0458\u0441\u043a\u0438
-hi=\u0425\u0438\u043d\u0434\u0438
-hr=\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0438
-hu=\u041c\u0430\u0452\u0430\u0440\u0441\u043a\u0438
-hy=\u0410\u0440\u043c\u0435\u043d\u0441\u043a\u0438
-id=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0458\u0441\u043a\u0438
-in=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0458\u0441\u043a\u0438
-is=\u0418\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0438
-it=\u0418\u0442\u0430\u043b\u0438\u0458\u0430\u043d\u0441\u043a\u0438
-iw=\u0425\u0435\u0431\u0440\u0435\u0458\u0441\u043a\u0438
-ja=\u0408\u0430\u043f\u0430\u043d\u0441\u043a\u0438
-ji=\u0408\u0438\u0434\u0438\u0448
-ka=\u0413\u0440\u0443\u0437\u0438\u0458\u0441\u043a\u0438
-km=\u041a\u043c\u0435\u0440\u0441\u043a\u0438
-ko=\u041a\u043e\u0440\u0435\u0458\u0441\u043a\u0438
-ku=\u041a\u0443\u0440\u0434\u0441\u043a\u0438
-ky=\u041a\u0438\u0440\u0433\u0438\u0441\u043a\u0438
-la=\u041b\u0430\u0442\u0438\u043d\u0441\u043a\u0438
-lt=\u041b\u0438\u0442\u0432\u0430\u043d\u0441\u043a\u0438
-lv=\u041b\u0435\u0442\u043e\u043d\u0441\u043a\u0438
-mk=\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438
-mn=\u041c\u043e\u043d\u0433\u043e\u043b\u0441\u043a\u0438
-mo=\u041c\u043e\u043b\u0434\u0430\u0432\u0441\u043a\u0438
-my=\u0411\u0443\u0440\u043c\u0430\u043d\u0441\u043a\u0438
-nl=\u0425\u043e\u043b\u0430\u043d\u0434\u0441\u043a\u0438
-no=\u041d\u043e\u0440\u0432\u0435\u0448\u043a\u0438
-pl=\u041f\u043e\u0459\u0441\u043a\u0438
-pt=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0441\u043a\u0438
-rm=\u0420\u0435\u0442\u043e-\u0420\u043e\u043c\u0430\u043d\u0441\u043a\u0438
-ro=\u0420\u0443\u043c\u0443\u043d\u0441\u043a\u0438
-ru=\u0420\u0443\u0441\u043a\u0438
-sa=\u0421\u0430\u043d\u0441\u043a\u0440\u0438\u0442
-sk=\u0421\u043b\u043e\u0432\u0430\u0447\u043a\u0438
-sl=\u0421\u043b\u043e\u0432\u0435\u043d\u0430\u0447\u043a\u0438
-sq=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0438
-sr=\u0421\u0440\u043f\u0441\u043a\u0438
-sv=\u0428\u0432\u0435\u0434\u0441\u043a\u0438
-sw=\u0421\u0432\u0430\u0445\u0438\u043b\u0438
-tr=\u0422\u0443\u0440\u0441\u043a\u0438
-uk=\u0423\u043a\u0440\u0430\u0458\u0438\u043d\u0441\u043a\u0438
-vi=\u0412\u0438\u0458\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438
-yi=\u0408\u0438\u0434\u0438\u0448
-zh=\u041a\u0438\u043d\u0435\u0441\u043a\u0438
-AD=\u0410\u043d\u0434\u043e\u0440\u0430
-AE=\u0423\u0458\u0435\u0434\u0438\u045a\u0435\u043d\u0438 \u0410\u0440\u0430\u043f\u0441\u043a\u0438 \u0415\u043c\u0438\u0440\u0430\u0442\u0438
-AF=\u0410\u0432\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d
-AL=\u0410\u043b\u0431\u0430\u043d\u0438\u0458\u0430
-AM=\u0410\u0440\u043c\u0435\u043d\u0438\u0458\u0430
-AN=\u0425\u043e\u043b\u0430\u043d\u0434\u0441\u043a\u0438 \u0410\u043d\u0442\u0438\u043b\u0438
-AO=\u0410\u043d\u0433\u043e\u043b\u0430
-AR=\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430
-AT=\u0410\u0443\u0441\u0442\u0440\u0438\u0458\u0430
-AU=\u0410\u0443\u0441\u0442\u0440\u0430\u043b\u0438\u0458\u0430
-AW=\u0410\u0440\u0443\u0431\u0430
-AX=\u0410\u043b\u0430\u043d\u0434\u0441\u043a\u0430 \u043e\u0441\u0442\u0440\u0432\u0430
-AZ=\u0410\u0437\u0435\u0440\u0431\u0435\u0458\u045f\u0430\u043d
-BA=\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430
-BB=\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441
-BD=\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448
-BE=\u0411\u0435\u043b\u0433\u0438\u0458\u0430
-BF=\u0411\u0443\u0440\u043a\u0438\u043d\u0430 \u0424\u0430\u0441\u043e
-BG=\u0411\u0443\u0433\u0430\u0440\u0441\u043a\u0430
-BH=\u0411\u0430\u0445\u0440\u0435\u0438\u043d
-BI=\u0411\u0443\u0440\u0443\u043d\u0434\u0438
-BJ=\u0411\u0435\u043d\u0438\u043d
-BM=\u0411\u0435\u0440\u043c\u0443\u0434\u0430
-BN=\u0411\u0440\u0443\u043d\u0435\u0458
-BO=\u0411\u043e\u043b\u0438\u0432\u0438\u0458\u0430
-BR=\u0411\u0440\u0430\u0455\u0438\u043b
-BS=\u0411\u0430\u0445\u0430\u043c\u0438
-BT=\u0411\u0443\u0442\u0430\u043d
-BV=\u0411\u0443\u0432\u0435
-BW=\u0411\u043e\u0446\u0432\u0430\u043d\u0430
-BY=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0438\u0458\u0430
-BZ=\u0411\u0435\u043b\u0438\u0441\u0435
-CA=\u041a\u0430\u043d\u0430\u0434\u0430
-CC=\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-CD=\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0441\u043a\u0430 \u0440\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e
-CF=\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u043e \u0410\u0444\u0440\u0438\u0447\u043a\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430
-CG=\u041a\u043e\u043d\u0433\u043e
-CH=\u0428\u0432\u0430\u0458\u0446\u0430\u0440\u0441\u043a\u0430
-CI=\u041e\u0431\u0430\u043b\u0430 \u0421\u043b\u043e\u043d\u043e\u0432\u0430\u0447\u0435
-CL=\u0427\u0438\u043b\u0435
-CM=\u041a\u0430\u043c\u0435\u0440\u0443\u043d
-CN=\u041a\u0438\u043d\u0430
-CO=\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u0458\u0430
-CR=\u041a\u043e\u0441\u0442\u0430\u0440\u0438\u043a\u0430
-CS=\u0421\u0440\u0431\u0438\u0458\u0430 \u0438 \u0426\u0440\u043d\u0430 \u0413\u043e\u0440\u0430
-CU=\u041a\u0443\u0431\u0430
-CV=\u041a\u0430\u043f\u0435 \u0412\u0435\u0440\u0434\u0435
-CX=\u0411\u043e\u0436\u0438\u045b\u043d\u043e \u041e\u0441\u0442\u0440\u0432\u043e
-CY=\u041a\u0438\u043f\u0430\u0440
-CZ=\u0427\u0435\u0448\u043a\u0430
-DE=\u041d\u0435\u043c\u0430\u0447\u043a\u0430
-DJ=\u040f\u0438\u0431\u0443\u0442\u0438
-DK=\u0414\u0430\u043d\u0441\u043a\u0430
-DM=\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430
-DO=\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430
-DZ=\u0410\u043b\u0436\u0438\u0440
-EC=\u0415\u043a\u0432\u0430\u0434\u043e\u0440
-EE=\u0415\u0441\u0442\u043e\u043d\u0438\u0458\u0430
-EG=\u0415\u0433\u0438\u043f\u0430\u0442
-EH=\u0417\u0430\u043f\u0430\u0434\u043d\u0430 \u0421\u0430\u0445\u0430\u0440\u0430
-ER=\u0415\u0440\u0438\u0442\u0440\u0435\u0458\u0430
-ES=\u0428\u043f\u0430\u043d\u0438\u0458\u0430
-ET=\u0415\u0442\u0438\u043e\u043f\u0438\u0458\u0430
-FI=\u0424\u0438\u043d\u0441\u043a\u0430
-FJ=\u0424\u0438\u045f\u0438
-FK=\u0424\u043e\u043b\u043a\u043b\u0430\u043d\u0434\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-FM=\u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u0458\u0430
-FO=\u0424\u0430\u0440\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-FR=\u0424\u0440\u0430\u043d\u0446\u0443\u0441\u043a\u0430
-GA=\u0413\u0430\u0431\u043e\u043d
-GB=\u0412\u0435\u043b\u0438\u043a\u0430 \u0411\u0440\u0438\u0442\u0430\u043d\u0438\u0458\u0430
-GD=\u0413\u0440\u0435\u043d\u0430\u0434\u0430
-GE=\u0413\u0440\u0443\u0437\u0438\u0458\u0430
-GF=\u0424\u0440\u0430\u043d\u0446\u0443\u0441\u043a\u0430 \u0413\u0432\u0430\u0458\u0430\u043d\u0430
-GH=\u0413\u0430\u043d\u0430
-GI=\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440
-GL=\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434
-GM=\u0413\u0430\u043c\u0431\u0438\u0458\u0430
-GN=\u0413\u0432\u0438\u043d\u0435\u0458\u0430
-GP=\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0435
-GQ=\u0415\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0458\u0430\u043b\u043d\u0430 \u0413\u0432\u0438\u043d\u0435\u0458\u0430
-GR=\u0413\u0440\u0447\u043a\u0430
-GS=\u0408\u0443\u0436\u043d\u0430 \u040f\u043e\u0440\u045f\u0438\u0458\u0430 \u0438 \u0408\u0443\u0436\u043d\u0430 \u0421\u0435\u043d\u0434\u0432\u0438\u0447 \u041e\u0441\u0442\u0440\u0432\u0430
-GT=\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430
-GU=\u0413\u0443\u0430\u043c
-GW=\u0413\u0432\u0438\u043d\u0435\u0458\u0430-\u0411\u0438\u0441\u0430\u043e
-GY=\u0413\u0432\u0430\u0458\u0430\u043d\u0430
-HK=\u0425\u043e\u043d\u0433 \u041a\u043e\u043d\u0433 (\u0421. \u0410. \u0420. \u041a\u0438\u043d\u0430)
-HM=\u0425\u0435\u0440\u0434 \u0438 \u041c\u0435\u043a\u0434\u043e\u043d\u0430\u043b\u0434 \u041e\u0441\u0442\u0440\u0432\u0430
-HN=\u0425\u043e\u043d\u0434\u0443\u0440\u0430\u0441
-HR=\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430
-HT=\u0425\u0430\u0438\u0442\u0438
-HU=\u041c\u0430\u0452\u0430\u0440\u0441\u043a\u0430
-ID=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0458\u0430
-IE=\u0418\u0440\u0441\u043a\u0430
-IL=\u0418\u0437\u0440\u0430\u0435\u043b
-IN=\u0418\u043d\u0434\u0438\u0458\u0430
-IQ=\u0418\u0440\u0430\u043a
-IR=\u0418\u0440\u0430\u043d
-IS=\u0418\u0441\u043b\u0430\u043d\u0434
-IT=\u0418\u0442\u0430\u043b\u0438\u0458\u0430
-JM=\u0408\u0430\u043c\u0430\u0458\u043a\u0430
-JO=\u0408\u043e\u0440\u0434\u0430\u043d
-JP=\u0408\u0430\u043f\u0430\u043d
-KE=\u041a\u0435\u043d\u0438\u0458\u0430
-KG=\u041a\u0438\u0440\u0433\u0438\u0437\u0441\u0442\u0430\u043d
-KH=\u041a\u0430\u043c\u0431\u043e\u045f\u0430
-KI=\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438
-KM=\u041a\u043e\u043c\u043e\u0440\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-KN=\u0421\u0435\u043d\u0442 \u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441
-KP=\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041a\u043e\u0440\u0435\u0458\u0430
-KR=\u0408\u0443\u0436\u043d\u0430 \u041a\u043e\u0440\u0435\u0458\u0430
-KW=\u041a\u0443\u0432\u0430\u0458\u0442
-KY=\u041a\u0430\u0458\u043c\u0430\u043d\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-KZ=\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d
-LA=\u041b\u0430\u043e\u0441
-LB=\u041b\u0438\u0431\u0430\u043d
-LC=\u0421\u0435\u043d\u0442 \u041b\u0443\u0446\u0438\u0458\u0430
-LI=\u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0430\u0458\u043d
-LK=\u0428\u0440\u0438 \u041b\u0430\u043d\u043a\u0430
-LR=\u041b\u0438\u0431\u0435\u0440\u0438\u0458\u0430
-LS=\u041b\u0435\u0441\u043e\u0442\u043e
-LT=\u041b\u0438\u0442\u0432\u0430\u043d\u0438\u0458\u0430
-LU=\u041b\u0443\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433
-LV=\u041b\u0435\u0442\u043e\u043d\u0438\u0458\u0430
-LY=\u041b\u0438\u0431\u0438\u0458\u0430
-MA=\u041c\u0430\u0440\u043e\u043a\u043e
-MC=\u041c\u043e\u043d\u0430\u043a\u043e
-MD=\u041c\u043e\u043b\u0434\u0430\u0432\u0438\u0458\u0430
-MG=\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440
-MH=\u041c\u0430\u0440\u0448\u0430\u043b\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-MK=\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430
-ML=\u041c\u0430\u043b\u0438
-MM=\u041c\u0438\u0458\u0430\u043d\u043c\u0430\u0440
-MN=\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u0458\u0430
-MO=\u041c\u0430\u043a\u0430\u043e (\u0421. \u0410. \u0420. \u041a\u0438\u043d\u0430)
-MP=\u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u0440\u0438\u0458\u0430\u043d\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-MQ=\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a
-MR=\u041c\u0430\u0443\u0440\u0438\u0442\u0430\u043d\u0438\u0458\u0430
-MS=\u041c\u043e\u043d\u0441\u0435\u0440\u0430\u0442
-MT=\u041c\u0430\u043b\u0442\u0430
-MU=\u041c\u0430\u0443\u0440\u0438\u0446\u0438\u0458\u0443\u0441
-MV=\u041c\u0430\u043b\u0434\u0438\u0432\u0438
-MW=\u041c\u0430\u043b\u0430\u0432\u0438
-MX=\u041c\u0435\u043a\u0441\u0438\u043a\u043e
-MY=\u041c\u0430\u043b\u0435\u0437\u0438\u0458\u0430
-MZ=\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a
-NA=\u041d\u0430\u043c\u0438\u0431\u0438\u0458\u0430
-NC=\u041d\u043e\u0432\u0430 \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u0458\u0430
-NE=\u041d\u0438\u0433\u0435\u0440
-NF=\u041d\u043e\u0440\u0444\u043e\u043b\u043a \u041e\u0441\u0442\u0440\u0432\u043e
-NG=\u041d\u0438\u0433\u0435\u0440\u0438\u0458\u0430
-NI=\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0432\u0430
-NL=\u0425\u043e\u043b\u0430\u043d\u0434\u0438\u0458\u0430
-NO=\u041d\u043e\u0440\u0432\u0435\u0448\u043a\u0430
-NP=\u041d\u0435\u043f\u0430\u043b
-NR=\u041d\u0430\u0443\u0440\u0443
-NU=\u041d\u0438\u0443\u0435
-NZ=\u041d\u043e\u0432\u0438 \u0417\u0435\u043b\u0430\u043d\u0434
-OM=\u041e\u043c\u0430\u043d
-PA=\u041f\u0430\u043d\u0430\u043c\u0430
-PE=\u041f\u0435\u0440\u0443
-PF=\u0424\u0440\u0430\u043d\u0446\u0443\u0441\u043a\u0430 \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u0458\u0430
-PG=\u041f\u0430\u043f\u0443\u0430 \u041d\u043e\u0432\u0430 \u0413\u0432\u0438\u043d\u0435\u0458\u0430
-PH=\u0424\u0438\u043b\u0438\u043f\u0438\u043d\u0438
-PK=\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d
-PL=\u041f\u043e\u0459\u0441\u043a\u0430
-PM=\u0421\u0435\u043d \u041f\u0458\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d
-PN=\u041f\u0438\u0442\u043a\u0435\u0440\u043d
-PR=\u041f\u043e\u0440\u0442\u043e \u0420\u0438\u043a\u043e
-PS=\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0441\u043a\u0430 \u0442\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0458\u0430
-PT=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b
-PW=\u041f\u0430\u043b\u0430\u0443
-PY=\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0458
-QA=\u041a\u0430\u0442\u0430\u0440
-RE=\u0420\u0435\u0438\u043d\u0438\u043e\u043d
-RO=\u0420\u0443\u043c\u0443\u043d\u0438\u0458\u0430
-RU=\u0420\u0443\u0441\u0438\u0458\u0430
-RW=\u0420\u0443\u0430\u043d\u0434\u0430
-SA=\u0421\u0430\u0443\u0434\u0438\u0458\u0441\u043a\u0430 \u0410\u0440\u0430\u0431\u0438\u0458\u0430
-SB=\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-SC=\u0421\u0435\u0458\u0448\u0435\u043b\u0438
-SD=\u0421\u0443\u0434\u0430\u043d
-SE=\u0428\u0432\u0435\u0434\u0441\u043a\u0430
-SG=\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440
-SH=\u0421\u0432\u0435\u0442\u0430 \u0408\u0435\u043b\u0435\u043d\u0430
-SI=\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u0458\u0430
-SJ=\u0421\u0432\u0430\u043b\u0431\u0430\u0440\u0434 \u0438 \u0408\u0430\u043d\u043c\u0430\u0458\u0435\u043d \u041e\u0441\u0442\u0440\u0432\u0430
-SK=\u0421\u043b\u043e\u0432\u0430\u0447\u043a\u0430
-SL=\u0421\u0438\u0458\u0435\u0440\u0430 \u041b\u0435\u043e\u043d\u0435
-SM=\u0421\u0430\u043d \u041c\u0430\u0440\u0438\u043d\u043e
-SN=\u0421\u0435\u043d\u0435\u0433\u0430\u043b
-SO=\u0421\u043e\u043c\u0430\u043b\u0438\u0458\u0430
-SR=\u0421\u0443\u0440\u0438\u043d\u0430\u043c
-ST=\u0421\u0430\u043e \u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0446\u0438\u043f\u0438
-SV=\u0421\u0430\u043b\u0432\u0430\u0434\u043e\u0440
-SY=\u0421\u0438\u0440\u0438\u0458\u0430
-SZ=\u0421\u0432\u0430\u0437\u0438\u043b\u0435\u043d\u0434
-TC=\u0422\u0443\u0440\u043a\u0441 \u0438 \u041a\u0430\u0458\u043a\u043e\u0441 \u041e\u0441\u0442\u0440\u0432\u0430
-TD=\u0427\u0430\u0434
-TF=\u0424\u0440\u0430\u043d\u0446\u0443\u0441\u043a\u0435 \u0408\u0443\u0436\u043d\u0435 \u0422\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0458\u0435
-TG=\u0422\u043e\u0433\u043e
-TH=\u0422\u0430\u0458\u043b\u0430\u043d\u0434
-TJ=\u0422\u0430\u045f\u0438\u043a\u0438\u0441\u0442\u0430\u043d
-TK=\u0422\u043e\u043a\u0435\u043b\u0430\u0443
-TL=\u0422\u0438\u043c\u043e\u0440-\u041b\u0435\u0441\u0442\u0435
-TM=\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d
-TN=\u0422\u0443\u043d\u0438\u0441
-TO=\u0422\u043e\u043d\u0433\u0430
-TR=\u0422\u0443\u0440\u0441\u043a\u0430
-TT=\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e
-TV=\u0422\u0443\u0432\u0430\u043b\u0443
-TW=\u0422\u0430\u0458\u0432\u0430\u043d
-TZ=\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u0458\u0430
-UA=\u0423\u043a\u0440\u0430\u0458\u0438\u043d\u0430
-UG=\u0423\u0433\u0430\u043d\u0434\u0430
-UM=\u041c\u0430\u045a\u0430 \u0443\u0434\u0430\u0459\u0435\u043d\u0430 \u043e\u0441\u0442\u0440\u0432\u0430 \u0421\u0410\u0414
-US=\u0421\u0458\u0435\u0434\u0438\u045a\u0435\u043d\u0435 \u0410\u043c\u0435\u0440\u0438\u0447\u043a\u0435 \u0414\u0440\u0436\u0430\u0432\u0435
-UY=\u0423\u0440\u0443\u0433\u0432\u0430\u0458
-UZ=\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d
-VA=\u0412\u0430\u0442\u0438\u043a\u0430\u043d
-VC=\u0421\u0435\u043d\u0442 \u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u0438
-VE=\u0412\u0435\u043d\u0435\u0446\u0443\u0435\u043b\u0430
-VG=\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430 \u0414\u0435\u0432\u0438\u0447\u0430\u043d\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-VI=\u0421.\u0410.\u0414. \u0414\u0435\u0432\u0438\u0447\u0430\u043d\u0441\u043a\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-VN=\u0412\u0438\u0458\u0435\u0442\u043d\u0430\u043c
-VU=\u0412\u0430\u043d\u0443\u0430\u0442\u0443
-WF=\u0412\u0430\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430 \u041e\u0441\u0442\u0440\u0432\u0430
-WS=\u0421\u0430\u043c\u043e\u0430
-YE=\u0408\u0435\u043c\u0435\u043d
-YT=\u041c\u0430\u0458\u043e\u0442\u0435
-ZA=\u0408\u0443\u0436\u043d\u043e\u0430\u0444\u0440\u0438\u0447\u043a\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430
-ZM=\u0417\u0430\u043c\u0431\u0438\u0458\u0430
-ZW=\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sr_Latn.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sr_Latn.properties
deleted file mode 100755
index 7cc1c24..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sr_Latn.properties
+++ /dev/null
@@ -1,471 +0,0 @@
-#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2011 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining
-# a copy of the Unicode data files and any associated documentation (the
-# "Data Files") or Unicode software and any associated documentation
-# (the "Software") to deal in the Data Files or Software without
-# restriction, including without limitation the rights to use, copy,
-# modify, merge, publish, distribute, and/or sell copies of the Data
-# Files or Software, and to permit persons to whom the Data Files or
-# Software are furnished to do so, provided that (a) the above copyright
-# notice(s) and this permission notice appear with all copies of the
-# Data Files or Software, (b) both the above copyright notice(s) and
-# this permission notice appear in associated documentation, and (c)
-# there is clear notice in each modified Data File or in the Software as
-# well as in the documentation associated with the Data File(s) or
-# Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
-# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-# NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT
-# HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR
-# ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
-# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR
-# SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder
-# shall not be used in advertising or otherwise to promote the sale, use
-# or other dealings in these Data Files or Software without prior
-# written authorization of the copyright holder.
-
-#
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-#
-aa=Afarski
-ab=Abkazijski
-ae=Avestanski
-af=Afrikanerski
-am=Amharski
-an=Aragone\u017eanski
-ar=Arapski
-as=Asemijski
-av=Avarski
-ay=Ajmara
-az=Azerbejd\u017eanski
-ba=Ba\u0161kir
-be=Beloruski
-bg=Bugarski
-bh=Biharski
-bn=Bengalski
-bo=Tibetanski
-br=Bretonski
-bs=Bosanski
-ca=Katalonski
-ce=\u010ce\u010denski
-ch=\u010camoro
-co=Korzikanski
-cr=Kri
-cs=\u010ce\u0161ki
-cu=Staroslovenski
-cv=\u010cuva\u0161ki
-cy=Vel\u0161ki
-da=Danski
-de=Nema\u010dki
-dv=Divehijski
-dz=D\u017eonga
-ee=Eve
-el=Gr\u010dki
-en=Engleski
-eo=Esperanto
-es=\u0160panski
-et=Estonski
-eu=Baskijski
-fa=Persijski
-fi=Finski
-fj=Fid\u017eijski
-fo=Farski
-fr=Francuski
-fy=Frizijski
-ga=Irski
-gd=\u0160kotski Galski
-gl=Galski
-gn=Gvarani
-gu=Gud\u017earati
-gv=Manks
-he=Hebrejski
-hi=Hindi
-hr=Hrvatski
-ht=Hai\u0107anski
-hu=Ma\u0111arski
-hy=Jermenski
-ia=Interlingva
-id=Indonezijski
-ie=Interlingve
-ii=Si\u010duan ji
-ik=Inupiak
-in=Indonezijski
-is=Islandski
-it=Italijanski
-iw=Hebrejski
-ja=Japanski
-ji=Jidi\u0161
-jv=Javanski
-ka=Gruzijski
-ki=Kikuju
-kj=Kuanjama
-kk=Koza\u010dki
-kl=Kalalisutski
-km=Kmerski
-kn=Kanada
-ko=Korejski
-ks=Ka\u0161miri
-ku=Kurdski
-kw=Korni\u0161ki
-ky=Kirgiski
-la=Latinski
-lb=Luksembur\u0161ki
-li=Limburgi\u0161
-lo=Lao\u0161ki
-lt=Litvanski
-lu=Luba-katanga
-lv=Letonski
-mg=Malagazijski
-mh=Mar\u0161alski
-mi=Maorski
-mk=Makedonski
-ml=Malajalam
-mn=Mongolski
-mo=Moldavski
-mr=Marati
-ms=Malajski
-mt=Melte\u0161ki
-my=Burmanski
-nb=Norve\u0161ki bokm\u00e5l
-nd=Severni ndebele
-ne=Nepalski
-nl=Holandski
-nn=Norve\u0161ki njorsk
-no=Norve\u0161ki
-nr=Ju\u017eni ndebele
-nv=Navaho
-ny=Njanja
-oc=Provansalski
-oj=Ojibva
-or=Orijski
-os=Osetski
-pa=Pand\u017eabski
-pl=Poljski
-ps=Pa\u0161tunski
-pt=Portugalski
-qu=Kven\u010da
-rm=Reto-Romanski
-ro=Rumunski
-ru=Ruski
-rw=Kinjarvanda
-sa=Sanskrit
-sc=Sardinijski
-sd=Sindi
-se=Severni sami
-si=Singaleski
-sk=Slova\u010dki
-sl=Slovena\u010dki
-sm=Samoanski
-sn=\u0160ona
-so=Somalski
-sq=Albanski
-sr=Srpski
-ss=Svati
-st=Sesoto
-su=Sudanski
-sv=\u0160vedski
-sw=Svahili
-ta=Tamilski
-tg=Ta\u0111ik
-th=Tajlandski
-ti=Tigrinja
-tk=Turkmenski
-tl=Tagalski
-tn=Tsvana
-tr=Turski
-tt=Tatarski
-tw=Tvi
-ty=Tahi\u0107anski
-ug=Ujgurski
-uk=Ukrajinski
-uz=Uzbe\u010dki
-vi=Vijetnamski
-wa=Valun
-wo=Volof
-xh=Khosa
-yi=Jidi\u0161
-yo=Jorubanski
-za=Zuang
-zh=Kineski
-AD=Andora
-AE=Ujedinjeni Arapski Emirati
-AF=Avganistan
-AG=Antigva i Barbuda
-AI=Angvila
-AL=Albanija
-AM=Armenija
-AN=Holandski Antili
-AO=Angola
-AQ=Antarktika
-AR=Argentina
-AS=Ameri\u010dka Samoa
-AT=Austrija
-AU=Australija
-AW=Aruba
-AX=Alandska ostrva
-AZ=Azerbejd\u017ean
-BA=Bosna i Hercegovina
-BB=Barbados
-BD=Banglade\u0161
-BE=Belgija
-BF=Burkina Faso
-BG=Bugarska
-BH=Bahrein
-BI=Burundi
-BJ=Benin
-BL=Sv. Bartolomej
-BM=Bermuda
-BN=Brunej
-BO=Bolivija
-BR=Brazil
-BS=Bahami
-BT=Butan
-BV=Buve Ostrva
-BW=Bocvana
-BY=Belorusija
-BZ=Belise
-CA=Kanada
-CC=Kokos (Keling) Ostrva
-CD=Demokratska Republika Kongo
-CF=Centralno Afri\u010dka Republika
-CG=Kongo
-CH=\u0160vajcarska
-CI=Obala Slonova\u010de
-CK=Kukova Ostrva
-CL=\u010cile
-CM=Kamerun
-CN=Kina
-CO=Kolumbija
-CR=Kostarika
-CU=Kuba
-CV=Kape Verde
-CX=Bo\u017ei\u0107na Ostrva
-CY=Kipar
-CZ=\u010ce\u0161ka
-DE=Nema\u010dka
-DJ=D\u017eibuti
-DK=Danska
-DM=Dominika
-DO=Dominikanska Republika
-DZ=Al\u017eir
-EC=Ekvador
-EE=Estonija
-EG=Egipat
-EH=Zapadna Sahara
-ER=Eritreja
-ES=\u0160panija
-ET=Etiopija
-FI=Finska
-FJ=Fid\u017ei
-FK=Folklandska Ostrva
-FM=Mikronezija
-FO=Farska Ostrva
-FR=Francuska
-GA=Gabon
-GB=Velika Britanija
-GD=Grenada
-GE=Gruzija
-GF=Francuska Gvajana
-GG=Gurnsi
-GH=Gana
-GI=Gibraltar
-GL=Grenland
-GM=Gambija
-GN=Gvineja
-GP=Gvadelupe
-GQ=Ekvatorijalna Gvineja
-GR=Gr\u010dka
-GS=Ju\u017ena D\u017eord\u017eija i Ju\u017ena Sendvi\u010d Ostrva
-GT=Gvatemala
-GU=Guam
-GW=Gvineja-Bisao
-GY=Gvajana
-HK=Hong Kong (S. A. R. Kina)
-HM=Herd i Mekdonald Ostrva
-HN=Honduras
-HR=Hrvatska
-HT=Haiti
-HU=Ma\u0111arska
-ID=Indonezija
-IE=Irska
-IL=Izrael
-IM=Ostrvo Man
-IN=Indija
-IO=Britansko Indijska Okeanska Teritorija
-IQ=Irak
-IR=Iran
-IS=Island
-IT=Italija
-JE=D\u017eersi
-JM=Jamajka
-JO=Jordan
-JP=Japan
-KE=Kenija
-KG=Kirgizstan
-KH=Kambod\u017ea
-KI=Kiribati
-KM=Komorska Ostrva
-KN=Sent Kits i Nevis
-KP=Severna Koreja
-KR=Ju\u017ena Koreja
-KW=Kuvajt
-KY=Kajmanska Ostrva
-KZ=Kazahstan
-LA=Laos
-LB=Liban
-LC=Sent Lucija
-LI=Lihten\u0161tajn
-LK=\u0160ri Lanka
-LR=Liberija
-LS=Lesoto
-LT=Litvanija
-LU=Luksemburg
-LV=Letonija
-LY=Libija
-MA=Maroko
-MC=Monako
-MD=Moldavija
-ME=Crna Gora
-MF=Sv. Martin
-MG=Madagaskar
-MH=Mar\u0161alska Ostrva
-MK=Makedonija
-ML=Mali
-MM=Mijanmar
-MN=Mongolija
-MO=Makao (S. A. R. Kina)
-MP=Severna Marijanska Ostrva
-MQ=Martinik
-MR=Mauritanija
-MS=Monserat
-MT=Malta
-MU=Mauricius
-MV=Maldivi
-MW=Malavi
-MX=Meksiko
-MY=Malezija
-MZ=Mozambik
-NA=Namibija
-NC=Nova Kaledonija
-NE=Niger
-NF=Norfolk Ostrvo
-NG=Nigerija
-NI=Nikaragva
-NL=Holandija
-NO=Norve\u0161ka
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Novi Zeland
-OM=Oman
-PA=Panama
-PE=Peru
-PF=Francuska Polinezija
-PG=Papua Nova Gvineja
-PH=Filipini
-PK=Pakistan
-PL=Poljska
-PM=Sen Pjer i Mikelon
-PN=Pitcairn
-PR=Porto Riko
-PS=Palestinska Teritorija
-PT=Portugal
-PW=Palau
-PY=Paragvaj
-QA=Katar
-RE=Rejunion
-RO=Rumunija
-RS=Srbija
-RU=Rusija
-RW=Ruanda
-SA=Saudijska Arabija
-SB=Solomonska Ostrva
-SC=Sej\u0161eli
-SD=Sudan
-SE=\u0160vedska
-SG=Singapur
-SH=Sveta Jelena
-SI=Slovenija
-SJ=Svalbard i Janmajen Ostrva
-SK=Slova\u010dka
-SL=Sijera Leone
-SM=San Marino
-SN=Senegal
-SO=Somalija
-SR=Surinam
-ST=Sao Tome i Principe
-SV=Salvador
-SY=Sirija
-SZ=Svazilend
-TC=Turks i Kajkos Ostrva
-TD=\u010cad
-TF=Francuske Ju\u017ene Teritorije
-TG=Togo
-TH=Tajland
-TJ=Tad\u017eikistan
-TK=Tokelau
-TL=Isto\u010dni Timor
-TM=Turkmenistan
-TN=Tunis
-TO=Tonga
-TR=Turska
-TT=Trinidad i Tobago
-TV=Tuvalu
-TW=Tajvan
-TZ=Tanzanija
-UA=Ukrajina
-UG=Uganda
-UM=Manja Udaljena Ostrva SAD
-US=Sjedinjene Ameri\u010dke Dr\u017eave
-UY=Urugvaj
-UZ=Uzbekistan
-VA=Vatikan
-VC=Sent Vinsent i Grenadini
-VE=Venecuela
-VG=Britanska Devi\u010danska Ostrva
-VI=S.A.D. Devi\u010danska Ostrva
-VN=Vijetnam
-VU=Vanuatu
-WF=Valis i Futuna Ostrva
-WS=Samoa
-YE=Jemen
-YT=Majote
-ZA=Ju\u017enoafri\u010dka Republika
-ZM=Zambija
-ZW=Zimbabve
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_sv.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_sv.properties
deleted file mode 100755
index 526bb96..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_sv.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=afar
-ab=abchasiska
-ae=Avestiska
-af=afrikaans
-ak=Akan
-am=amhariska
-an=Aragoniska
-ar=arabiska
-as=assamesiska
-av=Avariska
-ay=aymara
-az=azerbadjanska
-ba=bashkir
-be=vitryska
-bg=bulgariska
-bh=bihari
-bi=bislama
-bm=Bambara
-bn=bengaliska
-bo=tibetanska
-br=bretagnska
-bs=Bosniska
-ca=katalan
-ce=Tjetjenska
-ch=Chamorro
-co=korsikanksa
-cr=Cree
-cs=tjeckiska
-cu=Kyrkoslaviska
-cv=Tjuvasjiska
-cy=walesiska
-da=danska
-de=tyska
-dv=Divehi
-dz=bhutanska
-ee=Ewe
-el=grekiska
-en=engelska
-eo=esperanto
-es=spanska
-et=estniska
-eu=baskiska
-fa=persiska
-ff=Fulani
-fi=finska
-fj=fiji
-fo=f\u00e4r\u00f6iska
-fr=franska
-fy=frisiska
-ga=irl\u00e4ndska
-gd=skotsk gaeliska
-gl=galiciska
-gn=guarani
-gu=gujarati
-gv=Manx
-ha=hausa
-he=hebreiska
-hi=hindi
-ho=Hirimotu
-hr=kroatiska
-ht=Haitiska
-hu=ungerska
-hy=armeniska
-hz=Herero
-ia=interlingua
-id=indonesiska
-ie=interlingue
-ig=Igbo
-ii=Sichuan Yi
-ik=inupiak
-in=indonesiska
-io=Ido
-is=isl\u00e4ndska
-it=italienska
-iu=inuktitut
-iw=hebreiska
-ja=japanska
-ji=jiddish
-jv=Javanesiska
-ka=georgiska
-kg=Kikongo
-ki=Kikuyu
-kj=Kwanyama
-kk=kazakstanska
-kl=gr\u00f6nl\u00e4ndska
-km=kambodjanska
-kn=kannada
-ko=koreanska
-kr=Kanuri
-ks=kashmiriska
-ku=kurdiska
-kv=Komi
-kw=Korniska
-ky=kirgisiska
-la=latin
-lb=Luxemburgiska
-lg=Luganda
-li=Limburgiska
-ln=lingala
-lo=laotiska
-lt=litauiska
-lu=Luba-Katanga
-lv=lettiska
-mg=malagas
-mh=Marshallesiska
-mi=maori
-mk=makedoniska
-ml=malayalam
-mn=mongoliska
-mo=moldaviska
-mr=marathi
-ms=malajiska
-mt=maltesiska
-my=burmesiska
-na=nauru
-nb=Norska (bokm\u00e5l)
-nd=Ndebele (nord)
-ne=nepaliska
-ng=Ndonga
-nl=nederl\u00e4ndska
-nn=Nynorska
-no=norska
-nr=Ndebele (syd)
-nv=Navaho
-ny=Nyanja
-oc=occitan
-oj=Odjibwa
-om=oromo (afan)
-or=oriya
-os=Ossetiska
-pa=punjabiska
-pi=Pali
-pl=polska
-ps=pashto (pushto)
-pt=portugisiska
-qu=quechua
-rm=r\u00e4tromanska 
-rn=kirundi
-ro=rum\u00e4nska
-ru=ryska
-rw=kinyarwanda
-sa=sanskrit
-sc=Sardiska
-sd=sindhi
-se=Nordsamiska
-sg=sangho
-si=singalese
-sk=slovakiska
-sl=slovenska
-sm=samoa
-sn=shona
-so=somaliska
-sq=albanska
-sr=serbiska
-ss=siswati
-st=sesotho
-su=sundanesiska
-sv=svenska
-sw=swahili
-ta=tamil
-te=telugu
-tg=tadjekiska
-th=thail\u00e4ndska
-ti=tigrinya
-tk=turkmeniska
-tl=tagalog
-tn=setswana
-to=tonga
-tr=turkiska
-ts=tsonga
-tt=tatariska
-tw=twi
-ty=Tahitiska
-ug=uighur
-uk=ukrainska
-ur=urdu
-uz=uzbekiska
-ve=Venda
-vi=vietnamesiska
-vo=volapuk
-wa=Vallonska
-wo=wolof
-xh=xhosa
-yi=jiddish
-yo=yoruba
-za=zhuang
-zh=kinesiska
-zu=zulu
-
-# key is ISO 639.2 language code
-aar=Afar
-abk=Abchasiska
-ace=Acehnesiska
-ach=Acoli
-ada=Adangme
-ady=Adygeiska
-afa=Afroasiatiskt spr\u00E5k
-afh=Afrihili
-afr=Afrikaans
-ain=Ainu
-aka=Akan
-akk=Akkadiska
-alb=Albanska
-ale=Aleutiska
-alg=Algonkinska
-alt=Sydaltaiska
-amh=Amhariska
-ang=Fornengelska (ca.450-1100)
-anp=Angika
-apa=Apache
-ara=Arabiska
-arc=Officiell arameiska (700-300 f.Kr.)
-arg=Aragonsk spanska
-arm=Armeniska
-arn=Mapudungun
-arp=Arapaho
-art=Artificiellt
-arw=Arawakiska
-asm=Assamesiska
-ast=Asturiska
-ath=Athabaskiska
-aus=Australiska
-ava=Avariskt spr\u00E5k
-ave=Avestiska
-awa=Awadhi
-aym=Aymara
-aze=Azerbajdzjanska
-bad=Banda
-bai=Bamileke
-bak=Basjkiriska
-bal=Baluchi
-bam=Bambara
-ban=Balinesiska
-baq=Baskiska
-bas=Basa
-bat=Baltiskt spr\u00E5k
-bej=Beyja
-bel=Vitryska
-bem=Bemba
-ben=Bengali
-ber=Berberspr\u00E5k
-bho=Bhojpuri
-bih=Bihari
-bik=Bikol
-bin=(Edo) Bini
-bis=Bislama
-bla=Svartfotindianernas spr\u00E5k (Siksika)
-bnt=Bantuspr\u00E5k
-bos=Bosniska
-bra=Braj
-bre=Bretonska
-btk=Batak
-bua=Burjatiska
-bug=Buginesiska
-bul=Bulgariska
-bur=Burmesiska
-byn=Blin
-cad=Caddo
-cai=Centralamerikanskt indianspr\u00E5k
-car=Galibi Carib
-cat=Katalanska
-cau=Kaukasiskt spr\u00E5k
-ceb=Cebuano
-cel=Keltiskt spr\u00E5k
-cha=Chamorro
-chb=Chibcha
-che=Tjetjenska
-chg=Chagatai
-chi=Kinesiska
-chk=Truk
-chm=Mari (Tjeremissiska)
-chn=Chinook
-cho=Choctaw
-chp=Chopi
-chr=Cherokesiska
-chu=Kyrkoslaviska
-chv=Tjuvasjiska
-chy=Cheyenne
-cmc=Chamic
-cop=Koptiska
-cor=Korniska
-cos=Korsikanska
-cpe=Kreol-/Pidginspr\u00E5k, engelskbaserade
-cpf=Kreol-/Pidginspr\u00E5k, franskbaserade
-cpp=Kreol-/Pidginspr\u00E5k, portugisiskbaserade
-cre=Cree
-crh=Krimtatariska
-crp=Kreol-/Pidginspr\u00E5k
-csb=Kashubiska
-cus=Kusjitiskt spr\u00E5k
-cze=Tjeckiska
-dak=Dakota
-dan=Danska
-dar=Darginska
-day=Land Dayak
-del=Delaware
-den=Slave (Athapaskiska)
-dgr=Dogrib
-din=Dinka
-div=Divehi
-doi=Dogri
-dra=Dravidiskt spr\u00E5k
-dsb=L\u00E5gsorbiska
-dua=Duala
-dum=Medelnederl\u00E4ndska (ca.1050-1350)
-dut=Nederl\u00E4ndska
-dyu=Dyula
-dzo=Bhutanesiska (Dzongkha)
-efi=Efik
-egy=Fornegyptiska
-eka=Ekajuk
-elx=Elamitiska
-eng=Engelska
-enm=Medelengelska (1100-1500)
-epo=Esperanto
-est=Estniska
-ewe=Ewe
-ewo=Ewondo
-fan=Fang
-fao=F\u00E4r\u00F6iska
-fat=Fanti
-fij=Fidjianska
-fil=Filipino
-fin=Finska
-fiu=Finsk-ugriskt spr\u00E5k
-fon=Fon
-fre=Franska
-frm=Medelfranska (ca.1400-1600)
-fro=Fornfranska (842-ca.1400)
-frr=Nordfrisiska
-frs=\u00D6stfrisiska
-fry=V\u00E4stfrisiska
-ful=Fulani
-fur=Friuliska
-gaa=Ga
-gay=Gayo
-gba=Gbaya
-gem=Germanska
-geo=Georgiska
-ger=Tyska
-gez=Geez
-gil=Gilbertesiska
-gla=Gaeliska
-gle=Iriska
-glg=Galiciska
-glv=Manx
-gmh=Medelh\u00F6gtyska (ca.1050-1500)
-goh=Fornh\u00F6gtyska (ca.750-1050)
-gon=Gondi
-gor=Gorontalo
-got=Gotiska
-grb=Grebo
-grc=Grekiska, klassisk (-1453)
-gre=Nygrekiska (1453-)
-grn=Guarani
-gsw=Schweizertyska
-guj=Gujarati
-gwi=Gwichin
-hai=Haida
-hat=Haitiska
-hau=Haussa
-haw=Hawaiian
-heb=Hebreiska
-her=Herero
-hil=Hiligaynon
-him=Pahari (Himachali)
-hin=Hindi
-hit=Hettitiskt spr\u00E5k
-hmn=Hmongspr\u00E5k
-hmo=Hirimotu
-hrv=Kroatiska
-hsb=H\u00F6gsorbiska
-hun=Ungerska
-hup=Hupa
-iba=Iban
-ibo=Ibo (Igbo)
-ice=Isl\u00E4ndska
-ido=Ido
-iii=Sichuan Yi
-ijo=Ijo
-iku=Inuktitut
-ile=Interlingue
-ilo=Iloko
-ina=Interlingua (International Auxiliary Language Association)
-inc=Indo-ariskt spr\u00E5k
-ind=Indonesiska
-ine=Indoeuropeiskt spr\u00E5k
-inh=Ingusj
-ipk=Inupiaq
-ira=Iranska
-iro=Irokesiska spr\u00E5k
-ita=Italienska
-jav=Javanesiska
-jbo=Lojban
-jpn=Japanska
-jpr=Judepersiska
-jrb=Judearabiska
-kaa=Karakalpakiska
-kab=Kabyliska
-kac=Kachin
-kal=Kalaallisut
-kam=Kamba
-kan=Kannada
-kar=Karen
-kas=Kashmiri
-kau=Kanuri
-kaw=Fornjavanska (Kawi)
-kaz=Kazakiska
-kbd=Kabardinska (\u00D6sttjerkessiska)
-kha=Khasi
-khi=Khoisanspr\u00E5k
-khm=Central-Khmer
-kho=Sakiska (Khotanesiska)
-kik=Kikuyu
-kin=Rwanda
-kir=Kirgisiska
-kmb=Mbundu (Kimbundu)
-kok=Konkani
-kom=Komi
-kon=Kikongo
-kor=Koreanska
-kos=Kusaie
-kpe=Kpelle
-krc=Karachay-Balkar
-krl=Karelska
-kro=Kru-spr\u00E5k
-kru=Kurukh
-kua=Ovambo
-kum=Kumyk
-kur=Kurdiska
-kut=Kutenai
-lad=Ladino
-lah=Lahnda
-lam=Lamba
-lao=Laotiska
-lat=Latin
-lav=Lettiska
-lez=Lezginska
-lim=Limburgisch
-lin=Lingala
-lit=Litauiska
-lol=Lolo (Mongo)
-loz=Lozi
-ltz=Luxemburgiska
-lua=Luba-Lulua
-lub=Luba-Katanga
-lug=Luganda
-lui=Luiseno
-lun=Lunda
-luo=Luo (Kenya och Tanzania)
-lus=Lushai
-mac=Makedonska
-mad=Madurese
-mag=Magahi
-mah=Marshallesiska
-mai=Maithili
-mak=Makasar
-mal=Malayalam
-man=Mande
-mao=Maori
-map=Austronesiskt spr\u00E5k
-mar=Marathi
-mas=Massajiska
-may=Malajiska
-mdf=Moksja
-mdr=Mandar
-men=Mende
-mga=Medeliriska (900-1200)
-mic=Mi'kmaq
-min=Minangkabau
-mis=Okodat
-mkh=Mon-khmerspr\u00E5k
-mlg=Malagassiska
-mlt=Maltesiska
-mnc=Manchu
-mni=Manipuri
-mno=Manobo
-moh=Mohawk
-mon=Mongoliska
-mos=Mossi
-mul=Flera
-mun=Munda
-mus=Muskogee
-mwl=Mirandesiska
-mwr=Marwari
-myn=Maya-spr\u00E5k
-myv=Erzya
-nah=Nahuatl
-nai=Nordamerikanskt indianspr\u00E5k
-nap=Neapolitansk italienska
-nau=Nauru
-nav=Navajo
-nbl=Ndebele (syd)
-nde=Ndebele (nord)
-ndo=Ndonga
-nds=L\u00E5gtyska
-nep=Nepali
-new=Newari
-nia=Nias
-nic=Niger-/Kongospr\u00E5k
-niu=Niuiska
-nno=Norska (Nynorska)
-nob=Bokm\u00E5l, norska
-nog=Nogaiska
-non=Fornisl\u00E4ndska
-nor=Norska
-nqo=N'Ko
-nso=Pedi
-nub=Nubiska
-nwc=Klassisk newari
-nya=Chichewa
-nym=Nyamwezi
-nyn=Nyankole
-nyo=Nyoro
-nzi=Nzima
-oci=Occitanska (efter 1500)
-oji=Odjibwa (Chippewa)
-ori=Oriya
-orm=Oromo
-osa=Osage
-oss=Ossetiska
-ota=Ottomanska (1500-1928)
-oto=Otomi
-paa=Papuanskt spr\u00E5k
-pag=Pangasinan
-pal=Pahlavi (Medelpersiska)
-pam=Pampanga
-pan=Panjabi
-pap=Papiamento
-pau=Palauan
-peo=Fornpersiska (ca.600-400 fK)
-per=Persiska
-phi=Filippinska
-phn=Feniciska
-pli=Pali
-pol=Polska
-pon=Pohnpeiska
-por=Portugisiska
-pra=Prakrit
-pro=Fornprovensalska (-1500)
-pus=Pashto
-que=Quechua
-raj=Rajasthani
-rap=Rapanui
-rar=Rarotongan
-roa=Romanska
-roh=R\u00E4toromanska
-rom=Romani
-rum=Rum\u00E4nska
-run=Rundi
-rup=Arumanska
-rus=Ryska
-sad=Sandawe
-sag=Sango
-sah=Jakutiska
-sai=Sydamerikanskt indianspr\u00E5k
-sal=Saliska
-sam=Samaritanska
-san=Sanskrit
-sas=Sasak
-sat=Santali
-scn=Sicilianska
-sco=Skotsk gaeliska
-sel=Selkup
-sem=Semitiskt spr\u00E5k
-sga=Forniriska (-900)
-sgn=Teckenspr\u00E5k
-shn=Shan
-sid=Sidami
-sin=Singalesiska
-sio=Sioux-spr\u00E5k
-sit=Sino-tibetanskt spr\u00E5k
-sla=Slaviskt spr\u00E5k
-slo=Slovakiska
-slv=Slovenska
-sma=Sydsamiska
-sme=Nordsamiska
-smi=Samiska
-smj=Lulesamiska
-smn=Enaresamiska
-smo=Samoanska
-sms=Skoltsamiska
-sna=Shona
-snd=Sindhi
-snk=Soninke
-sog=Sogdiska
-som=Somaliska
-son=Songhai
-sot=Sotho, syd-
-spa=Spanska
-srd=Sardiska
-srn=Sranan tongo
-srp=Serbiska
-srr=Serer
-ssa=Nilo-sahariskt spr\u00E5k
-ssw=Swazi
-suk=Sukuma
-sun=Sundanesiska
-sus=Susu
-sux=Sumeriska
-swa=Swahili
-swe=Svenska
-syc=Klassisk syriska
-syr=Syriska
-tah=Tahitiska
-tai=Thaispr\u00E5k
-tam=Tamil
-tat=Tatariska
-tel=Telugo
-tem=Temne
-ter=Tereno
-tet=Tetum
-tgk=Tadzjikiska
-tgl=Tagalog
-tha=Thail\u00E4ndska
-tib=Tibetanska
-tig=Tigr\u00E9
-tir=Tigrinja
-tiv=Tivi
-tkl=Tokelau\u00F6arna
-tlh=Klingon
-tli=Tlingit
-tmh=Tamashek
-tog=Tonga (Nyasa)
-ton=Tonga (Tonga\u00F6arna)
-tpi=Tok Pisin
-tsi=Tsimshian
-tsn=Tswana
-tso=Tsonga
-tuk=Turkmeniska
-tum=Tumbuka
-tup=Tupi
-tur=Turkiska
-tut=Altaiskt spr\u00E5k
-tvl=Tuvalu
-twi=Twi
-tyv=Tuvinska
-udm=Udmurtiska (Votjakiska)
-uga=Ugaritiska
-uig=Uiguriska
-ukr=Ukrainska
-umb=Umbundu
-und=Obest\u00E4md
-urd=Urdu
-uzb=Uzbekiska
-vai=Vai
-ven=Venda
-vie=Vietnamesiska
-vol=Volap\u00FCk
-vot=Votiska
-wak=Wakusjiska
-wal=Wolaitta
-war=Waray
-was=Washo
-wel=Kymriska
-wen=Sorbiska
-wln=Vallonska
-wol=Wolof
-xal=Kalmuckiska
-xho=Xhosa
-yao=Yao
-yap=Yap
-yid=Jiddisch
-yor=Yoruba
-ypk=Yupik
-zap=Zapotek
-zbl=Blissymboler
-zen=Zenaga
-zha=Zhuang
-znd=Zande
-zul=Zulu
-zun=Zuni
-zxx=Icke-spr\u00E5kligt medium
-zza=Zaza
-
-# script names
-# key is ISO 15924 script code
-
-Arab=Arabiska
-Armi=Riksarameiska
-Armn=Armeniska
-Avst=Avestiska
-Bali=Balinesiska
-Bamu=Bamum
-Bass=Bassa vah
-Batk=Batak
-Beng=Bengali
-Blis=Blissymboler
-Bopo=Bopomofo
-Brah=Brahmi
-Brai=Braille-skrift
-Bugi=Buginesiska
-Buhd=Buhid
-Cakm=Chakma
-Cans=Unified Canadian Aboriginal Syllabics
-Cari=Kariska
-Cham=Cham
-Cher=Cherokesiska
-Cirt=Cirth
-Copt=Koptiska
-Cprt=Cypriotiska
-Cyrl=Kyrilliska
-Cyrs=Fornkyrkoslaviska
-Deva=Devanagari
-Dsrt=Deseret
-Dupl=Duployan-stenografi
-Egyd=Egyptisk demotisk
-Egyh=Egyptisk hieratisk
-Egyp=Egyptiska hieroglyfer
-Elba=Elbasiska
-Ethi=Etiopiska
-Geok=Khutsuri
-Geor=Georgiska
-Glag=Glagolitiska
-Goth=Gotiska
-Gran=Grantha
-Grek=Grekiska
-Gujr=Gujarati
-Guru=Gurmukhi
-Hang=Hangul
-Hani=Han
-Hano=Hanunoo
-Hans=F\u00F6renklad han
-Hant=Traditionell han
-Hebr=Hebreiska
-Hira=Hiragana
-Hmng=Pahawh hmong
-Hrkt=Katakana eller hiragana
-Hung=Ungerska runor
-Inds=Indusskrift
-Ital=Etruskiska
-Java=Javanesiska
-Jpan=Japanska
-Kali=Kayah Li
-Kana=Katakana
-Khar=Kharoshthi
-Khmr=Kambodjanska (Khmer)
-Knda=Kannada
-Kore=Koreanska
-Kpel=Kpelle
-Kthi=Kaithi
-Lana=Tai tham
-Laoo=Laotiska
-Latf=Frakturlatin
-Latg=Gaelisk latin
-Latn=Latin
-Lepc=Lepcha
-Limb=Limbu
-Lina=Linear A
-Linb=Linear B
-Lisu=Lisu
-Loma=Loma
-Lyci=Lykiska
-Lydi=Lydiska
-Mand=Mandeiska
-Mani=Manikeiska
-Maya=Mayaskrift
-Mend=Mende
-Merc=Meroitisk skrift
-Mero=Meroitisk
-Mlym=Malayalam
-Mong=Mongoliska
-Moon=M\u00E5nspr\u00E5k
-Mtei=Meitei mayek
-Mymr=Myanmar
-Narb=Nordlig fornarabiska
-Nbat=Nabataeiska
-Nkgb=Nakhi geba
-Nkoo=N'Ko
-Ogam=Ogham
-Olck=Ol chiki
-Orkh=Orkhon
-Orya=Oriya
-Osma=Osmanya
-Palm=Palmyreniska
-Perm=Fornpermiska
-Phag=Phags-pa
-Phli=Pahlavi (Medelpersiska)
-Phlp=Psalter pahlavi
-Phlv=Bok-pahlavi
-Phnx=Feniciska
-Plrd=Miao
-Prti=Partiska
-Rjng=Rejang
-Roro=Rongorongo
-Runr=Runor
-Samr=Samaritanska
-Sara=Sarati
-Sarb=Sydlig fornarabiska
-Saur=Saurashtra
-Sgnw=Teckenskrift
-Shaw=Shavian
-Sind=Sindhi
-Sinh=Singalesiska
-Sund=Sundanesiska
-Sylo=Syloti nagri
-Syrc=Syriska
-Syre=Estrangelo-syriska
-Syrj=V\u00E4stsyriska
-Syrn=\u00D6stsyriska
-Tagb=Tagbanwa
-Tale=Tai le
-Talu=Ny tai l\u00FC
-Taml=Tamil
-Tavt=Tai viet
-Telu=Telugo
-Teng=Tengwar
-Tfng=Tifinagh
-Tglg=Tagalog
-Thaa=Thaana
-Thai=Thail\u00E4ndska
-Tibt=Tibetanska
-Ugar=Ugaritiska
-Vaii=Vai
-Visp=Visible speech
-Wara=Varang kshiti
-Xpeo=Fornpersiska
-Xsux=Sumerisk-akkadisk kilskrift
-Yiii=Yi
-Zinh=\u00C4rvd skrift
-Zmth=Matematisk notation
-Zsym=Symboler
-Zxxx=Oskrivna
-Zyyy=Inte fastst\u00E4lld skrift
-Zzzz=Okodad skrift
-
-# country names
-# key is ISO 3166 country code
-
-AD=Andorra
-AE=F\u00f6renade Arabemiraten
-AF=Afghanistan
-AG=Antigua och Barbuda
-AI=Anguilla
-AL=Albanien
-AM=Armenien
-AN=Nederl\u00e4ndska Antillerna 
-AO=Angola
-AQ=Antarktis
-AR=Argentina
-AS=Amerikanska Samoa
-AT=\u00d6sterrike
-AU=Australien
-AW=Aruba
-AX=\u00c5land
-AZ=Azerbadjan
-BA=Bosnien och Herzegovina
-BB=Barbados
-BD=Bangladesh
-BE=Belgien
-BF=Burkina Faso
-BG=Bulgarien
-BH=Bahrain
-BI=Burundi
-BJ=Benin
-BL=Saint Barth\u00E9lemy
-BM=Bermuda
-BN=Brunei
-BO=Bolivia
-BQ=Bonaire, Saint Eustatius och Saba
-BR=Brasilien
-BS=Bahamas
-BT=Bhutan
-BV=Bouvet\u00f6n
-BW=Botswana
-BY=Vitryssland
-BZ=Belize
-CA=Kanada
-CC=Cocos\u00f6arna
-CD=Demokratiska republiken Kongo
-CF=Centralafrikanska republiken
-CG=Kongo
-CH=Schweiz
-CI=Elfenbenskusten
-CK=Cook\u00f6arna
-CL=Chile
-CM=Kamerun
-CN=Kina
-CO=Colombia
-CR=Costa Rica
-CS=Serbien och Montenegro
-CU=Kuba
-CV=Kap Verde
-CW=Cura\u00E7ao
-CX=Jul\u00f6n
-CY=Cypern
-CZ=Tjeckiska republiken
-DE=Tyskland
-DJ=Djibouti
-DK=Danmark
-DM=Dominica
-DO=Dominikanska republiken
-DZ=Algeriet
-EC=Ecuador
-EE=Estland
-EG=Egypten
-EH=V\u00e4stra Sahara
-ER=Eritrea
-ES=Spanien
-ET=Etiopien
-FI=Finland
-FJ=Fiji
-FK=Falklands\u00f6arna
-FM=Mikronesien
-FO=F\u00e4r\u00f6arna
-FR=Frankrike
-GA=Gabon
-GB=Storbritannien
-GD=Grenada
-GE=Georgien
-GF=Franska Guyana
-GG=Guernsey
-GH=Ghana
-GI=Gibraltar
-GL=Gr\u00f6nland
-GM=Gambia
-GN=Guinea
-GP=Guadeloupe
-GQ=Ekvatorialguinea
-GR=Grekland
-GS=Sydgeorgien och Sydsandwich\u00f6arna
-GT=Guatemala
-GU=Guam
-GW=Guinea-Bissau
-GY=Guyana
-HK=Hongkong
-HM=Heard\u00f6ch McDonald\u00f6arna
-HN=Honduras
-HR=Kroatien
-HT=Haiti
-HU=Ungern
-ID=Indonesien
-IE=Irland
-IL=Israel
-IM=Isle of Man
-IN=Indien
-IO=Brittiska territoriet i Indiska Oceanen
-IQ=Irak
-IR=Iran
-IS=Island
-IT=Italien
-JE=Jersey
-JM=Jamaica
-JO=Jordanien
-JP=Japan
-KE=Kenya
-KG=Kirgisistan
-KH=Kambodja
-KI=Kiribati
-KM=Komorerna
-KN=Saint Kitts och Nevis
-KP=Nordkorea
-KR=Sydkorea
-KW=Kuwait
-KY=Cayman\u00f6arna
-KZ=Kazakstan
-LA=Laos
-LB=Libanon
-LC=Saint Lucia
-LI=Liechtenstein
-LK=Sri Lanka
-LR=Liberia
-LS=Lesotho
-LT=Litauen
-LU=Luxemburg
-LV=Lettland
-LY=Libyen
-MA=Marocko
-MC=Monaco
-MD=Moldavien
-ME=Montenegro
-MF=Saint-Martin
-MG=Madagaskar
-MH=Marshall\u00f6arna
-MK=Makedonien
-ML=Mali
-MM=Myanmar
-MN=Mongoliet
-MO=Macao
-MP=Nordmarianerna
-MQ=Martinique
-MR=Mauretanien
-MS=Montserrat
-MT=Malta
-MU=Mauritius
-MV=Maldiverna
-MW=Malawi
-MX=Mexiko
-MY=Malaysia
-MZ=Mo\u00e7ambique
-NA=Namibia
-NC=Nya Kaledonien
-NE=Niger
-NF=Norfolk\u00f6n
-NG=Nigeria
-NI=Nicaragua
-NL=Nederl\u00e4nderna
-NO=Norge
-NP=Nepal
-NR=Nauru
-NU=Niue
-NZ=Nya Zeeland
-OM=Oman
-PA=Panama
-PE=Peru
-PF=Franska Polynesien
-PG=Papua Nya Guinea
-PH=Filippinerna
-PK=Pakistan
-PL=Polen
-PM=Saint Pierre och Miquelon
-PN=Pitcairn
-PR=Puerto Rico
-PS=Palestina
-PT=Portugal
-PW=Palau
-PY=Paraguay
-QA=Qatar
-RE=R\u00e9union
-RO=Rum\u00e4nien
-RS=Serbien
-RU=Ryssland
-RW=Rwanda
-SA=Saudiarabien
-SB=Salomon\u00f6arna
-SC=Seychellerna
-SD=Sudan
-SE=Sverige
-SG=Singapore
-SH=Saint Helena
-SI=Slovenien
-SJ=Svalbard och Jan Mayen
-SK=Slovakien
-SL=Sierra Leone
-SM=San Marino
-SN=Senegal
-SO=Somalia
-SR=Surinam
-ST=S\u00e3o Tom\u00e9 och Pr\u00edncipe
-SV=El Salvador
-SX=Sint Maarten (nederl\u00E4ndska delen)
-SY=Syrien
-SZ=Swaziland
-TC=Turks- och Caicos\u00f6arna
-TD=Tchad
-TF=Franska s\u00f6dra territorierna
-TG=Togo
-TH=Thailand
-TJ=Tadzjikistan
-TK=Tokelau
-TL=Timor-Leste
-TM=Turkmenistan
-TN=Tunisien
-TO=Tonga
-TR=Turkiet
-TT=Trinidad och Tobago
-TV=Tuvalu
-TW=Taiwan
-TZ=Tanzania
-UA=Ukraina
-UG=Uganda
-UM=F\u00f6renta staternas mindre \u00f6ar i Oceanien och V\u00e4stindien
-US=Amerikas F\u00f6renta Stater
-UY=Uruguay
-UZ=Uzbekistan
-VA=Vatikanen
-VC=Saint Vincent och Grenadinerna
-VE=Venezuela
-VG=Brittiska Virgin Islands
-VI=Amerikanska Virgin Islands
-VN=Vietnam
-VU=Vanuatu
-WF=Wallis och Futuna
-WS=Samoa
-YE=Jemen
-YT=Mayotte
-ZA=Sydafrika 
-ZM=Zambia
-ZW=Zimbabwe
-
-# territory names
-# key is UN M.49 country and area code
-
-001=V\u00E4rlden
-002=Afrika
-003=Nordamerika
-005=Sydamerika
-009=Oceanien
-011=V\u00E4stafrika
-013=Centralamerika
-014=\u00D6stafrika
-015=Nordafrika
-017=Mellanafrika
-018=S\u00F6dra Afrika
-019=Nord-/Sydamerika
-021=Norra Amerika
-029=Karibiska \u00F6v\u00E4rlden
-030=\u00D6stra Asien
-034=S\u00F6dra Asien
-035=Syd\u00F6stra Asien
-039=S\u00F6dra Europa
-053=Australien och Nya Zeeland
-054=Melanesien
-057=Mikronesiska regionen
-061=Polynesien
-142=Asien
-143=Centralasien
-145=V\u00E4stra Asien
-150=Europa
-151=\u00D6stra Europa
-154=Norra Europa
-155=V\u00E4stra Europa
-419=Latinamerika och Karibien
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_th.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_th.properties
deleted file mode 100755
index cf385b9..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_th.properties
+++ /dev/null
@@ -1,382 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names                                                 
-# key is ISO 639 language code
-
-ab=\u0e41\u0e2d\u0e1a\u0e01\u0e32\u0e40\u0e0b\u0e35\u0e22
-aa=\u0e2d\u0e32\u0e1f\u0e32
-af=\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e31\u0e19
-sq=\u0e41\u0e2d\u0e25\u0e40\u0e1a\u0e40\u0e19\u0e35\u0e22
-am=\u0e2d\u0e31\u0e21\u0e2e\u0e32\u0e23\u0e34\u0e04
-ar=\u0e2d\u0e32\u0e23\u0e30\u0e1a\u0e34\u0e04
-hy=\u0e2d\u0e32\u0e23\u0e4c\u0e21\u0e35\u0e40\u0e19\u0e35\u0e22
-as=\u0e2d\u0e31\u0e2a\u0e2a\u0e31\u0e21\u0e21\u0e34\u0e2a
-ay=\u0e44\u0e2d\u0e21\u0e32\u0e23\u0e32
-az=\u0e2d\u0e32\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e44\u0e1a\u0e08\u0e32\u0e19\u0e35
-ba=\u0e1a\u0e32\u0e2a\u0e0a\u0e4c\u0e01\u0e35\u0e23\u0e4c
-eu=\u0e41\u0e1a\u0e2a\u0e01\u0e4c
-bn=\u0e40\u0e1a\u0e19\u0e01\u0e32\u0e23\u0e35
-dz=\u0e20\u0e39\u0e10\u0e32\u0e19\u0e35
-bh=\u0e1a\u0e34\u0e2e\u0e32\u0e23\u0e35
-bi=\u0e1a\u0e34\u0e2a\u0e25\u0e32\u0e21\u0e32
-br=\u0e1a\u0e23\u0e35\u0e17\u0e31\u0e19
-bg=\u0e1a\u0e31\u0e25\u0e41\u0e01\u0e40\u0e23\u0e35\u0e22
-my=\u0e1e\u0e21\u0e48\u0e32
-be=\u0e1a\u0e32\u0e22\u0e42\u0e25\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22
-km=\u0e40\u0e02\u0e21\u0e23
-ca=\u0e41\u0e04\u0e15\u0e32\u0e41\u0e25\u0e19
-zh=\u0e08\u0e35\u0e19
-co=\u0e04\u0e2d\u0e23\u0e4c\u0e0b\u0e34\u0e01\u0e32
-hr=\u0e42\u0e04\u0e23\u0e40\u0e2d\u0e40\u0e17\u0e35\u0e22
-cs=\u0e40\u0e0a\u0e47\u0e04
-da=\u0e40\u0e14\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e01
-nl=\u0e2e\u0e2d\u0e25\u0e31\u0e19\u0e14\u0e32
-en=\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29
-eo=\u0e40\u0e2d\u0e2a\u0e40\u0e1b\u0e2d\u0e23\u0e31\u0e19\u0e42\u0e15
-et=\u0e40\u0e2d\u0e2a\u0e42\u0e15\u0e40\u0e19\u0e35\u0e22
-fo=\u0e1f\u0e32\u0e42\u0e23\u0e2a
-fj=\u0e1f\u0e34\u0e08\u0e34
-fi=\u0e1f\u0e34\u0e19
-fr=\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a
-fy=\u0e1f\u0e23\u0e35\u0e2a\u0e41\u0e25\u0e19\u0e14\u0e4c
-gl=\u0e01\u0e30\u0e25\u0e35\u0e40\u0e0a\u0e35\u0e22
-ka=\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22\u0e19
-de=\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19
-el=\u0e01\u0e23\u0e35\u0e01
-kl=\u0e01\u0e23\u0e35\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e14\u0e34\u0e04
-gn=\u0e01\u0e31\u0e27\u0e23\u0e32\u0e19\u0e35
-gu=\u0e01\u0e39\u0e08\u0e32\u0e23\u0e32\u0e15\u0e34
-ha=\u0e42\u0e2e\u0e0b\u0e32
-he=\u0e22\u0e34\u0e27
-iw=\u0e22\u0e34\u0e27
-hi=\u0e2e\u0e35\u0e19\u0e14\u0e34
-hu=\u0e2e\u0e31\u0e07\u0e01\u0e32\u0e23\u0e35
-is=\u0e44\u0e2d\u0e0b\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e14\u0e34\u0e04
-id=\u0e2d\u0e34\u0e19\u0e42\u0e14\u0e19\u0e35\u0e40\u0e0a\u0e35\u0e22
-in=\u0e2d\u0e34\u0e19\u0e42\u0e14\u0e19\u0e35\u0e40\u0e0a\u0e35\u0e22
-ia=\u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e07\u0e01\u0e27\u0e32
-ie=\u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e34\u0e07\u0e04\u0e4c
-iu=\u0e44\u0e2d\u0e19\u0e38\u0e01\u0e15\u0e34\u0e15\u0e31\u0e17
-ik=\u0e44\u0e2d\u0e19\u0e39\u0e40\u0e1b\u0e35\u0e22\u0e01
-ga=\u0e44\u0e2d\u0e23\u0e34\u0e0a
-it=\u0e2d\u0e34\u0e15\u0e32\u0e25\u0e35
-ja=\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19
-jw=\u0e0a\u0e27\u0e32
-kn=\u0e01\u0e32\u0e19\u0e32\u0e14\u0e32
-ks=\u0e04\u0e31\u0e0a\u0e21\u0e35\u0e23\u0e35
-kk=\u0e04\u0e32\u0e0b\u0e31\u0e04
-rw=\u0e04\u0e34\u0e19\u0e22\u0e32\u0e27\u0e31\u0e19\u0e14\u0e32
-ky=\u0e40\u0e04\u0e2d\u0e23\u0e4c\u0e01\u0e34\u0e0b
-rn=\u0e04\u0e34\u0e23\u0e31\u0e19\u0e14\u0e35
-ko=\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35
-ku=\u0e40\u0e04\u0e34\u0e14
-lo=\u0e25\u0e32\u0e27
-la=\u0e25\u0e30\u0e15\u0e34\u0e19
-lv=\u0e41\u0e25\u0e15\u0e40\u0e27\u0e35\u0e22 (\u0e40\u0e25\u0e17\u0e17\u0e34\u0e2a\u0e0a\u0e4c)
-ln=\u0e25\u0e34\u0e07\u0e01\u0e32\u0e25\u0e32
-lt=\u0e25\u0e34\u0e18\u0e31\u0e27\u0e40\u0e19\u0e35\u0e22
-mk=\u0e41\u0e21\u0e0b\u0e35\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22
-mg=\u0e21\u0e32\u0e25\u0e32\u0e01\u0e32\u0e0b\u0e35
-ms=\u0e21\u0e25\u0e32\u0e22\u0e39
-ml=\u0e41\u0e21\u0e25\u0e30\u0e22\u0e32\u0e25\u0e31\u0e21
-mt=\u0e21\u0e2d\u0e25\u0e15\u0e32
-mi=\u0e40\u0e21\u0e32\u0e23\u0e35
-mr=\u0e21\u0e32\u0e23\u0e32\u0e17\u0e35
-mo=\u0e42\u0e21\u0e14\u0e32\u0e40\u0e27\u0e35\u0e22
-mn=\u0e21\u0e2d\u0e07\u0e42\u0e01\u0e25
-na=\u0e19\u0e2d\u0e23\u0e39
-ne=\u0e40\u0e19\u0e1b\u0e32\u0e25
-no=\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c
-oc=\u0e2d\u0e2d\u0e01\u0e0b\u0e34\u0e17\u0e31\u0e19
-or=\u0e42\u0e2d\u0e23\u0e34\u0e22\u0e32
-om=\u0e42\u0e2d\u0e42\u0e23\u0e42\u0e21 (\u0e2d\u0e32\u0e1f\u0e32\u0e19)
-ps=\u0e1e\u0e32\u0e2a\u0e0a\u0e4c\u0e42\u0e15 (\u0e1e\u0e38\u0e2a\u0e0a\u0e4c\u0e42\u0e15)
-fa=\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e35\u0e22
-pl=\u0e42\u0e1b\u0e41\u0e25\u0e19\u0e14\u0e4c
-pt=\u0e42\u0e1b\u0e23\u0e15\u0e38\u0e40\u0e01\u0e2a
-pa=\u0e1b\u0e31\u0e0d\u0e08\u0e32\u0e1b
-qu=\u0e04\u0e34\u0e27\u0e0a\u0e31\u0e27
-rm=\u0e40\u0e23\u0e42\u0e15-\u0e42\u0e23\u0e41\u0e21\u0e19\u0e0b\u0e4c
-ro=\u0e42\u0e23\u0e21\u0e31\u0e19
-ru=\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22
-sm=\u0e0b\u0e32\u0e21\u0e31\u0e27
-sg=\u0e2a\u0e31\u0e19\u0e42\u0e04
-sa=\u0e2a\u0e31\u0e19\u0e2a\u0e01\u0e24\u0e15
-gd=\u0e2a\u0e01\u0e47\u0e2d\u0e15\u0e2a\u0e4c\u0e40\u0e01\u0e25\u0e34\u0e04
-sr=\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e40\u0e1a\u0e35\u0e22
-st=\u0e40\u0e0b\u0e42\u0e2a\u0e42\u0e17
-tn=\u0e40\u0e0b\u0e15\u0e2a\u0e27\u0e32\u0e19\u0e32
-sn=\u0e42\u0e0b\u0e19\u0e32
-sd=\u0e0b\u0e34\u0e19\u0e14\u0e34
-si=\u0e2a\u0e34\u0e07\u0e2b\u0e25
-ss=\u0e0b\u0e35\u0e2a\u0e27\u0e32\u0e15\u0e34
-sk=\u0e2a\u0e42\u0e25\u0e27\u0e31\u0e04
-sl=\u0e2a\u0e42\u0e25\u0e40\u0e27\u0e40\u0e19\u0e35\u0e22
-so=\u0e42\u0e0b\u0e21\u0e32\u0e25\u0e35
-es=\u0e2a\u0e40\u0e1b\u0e19
-su=\u0e0b\u0e31\u0e19\u0e14\u0e32\u0e19\u0e35\u0e2a
-sw=\u0e0b\u0e27\u0e32\u0e2e\u0e34\u0e23\u0e35
-sv=\u0e2a\u0e27\u0e35\u0e40\u0e14\u0e19
-tl=\u0e15\u0e32\u0e01\u0e32\u0e25\u0e47\u0e2d\u0e01
-tg=\u0e17\u0e32\u0e08\u0e34\u0e04
-ta=\u0e17\u0e21\u0e34\u0e2c
-tt=\u0e15\u0e32\u0e14
-te=\u0e17\u0e34\u0e25\u0e39\u0e01\u0e39
-th=\u0e44\u0e17\u0e22
-bo=\u0e17\u0e34\u0e40\u0e1a\u0e15
-ti=\u0e17\u0e34\u0e01\u0e23\u0e34\u0e19\u0e22\u0e32
-to=\u0e17\u0e2d\u0e07\u0e01\u0e49\u0e32
-ts=\u0e0b\u0e2d\u0e07\u0e01\u0e32
-tr=\u0e15\u0e38\u0e23\u0e01\u0e35
-tk=\u0e40\u0e15\u0e34\u0e23\u0e4c\u0e01\u0e40\u0e21\u0e19
-tw=\u0e17\u0e27\u0e35
-ug=\u0e2d\u0e38\u0e22\u0e01\u0e31\u0e27
-uk=\u0e22\u0e39\u0e40\u0e04\u0e23\u0e19
-ur=\u0e2d\u0e34\u0e23\u0e14\u0e39
-uz=\u0e2d\u0e38\u0e2a\u0e40\u0e1a\u0e04
-vi=\u0e40\u0e27\u0e35\u0e22\u0e14\u0e19\u0e32\u0e21
-vo=\u0e42\u0e27\u0e25\u0e32\u0e1e\u0e38\u0e01
-cy=\u0e40\u0e27\u0e25\u0e2a\u0e4c
-wo=\u0e27\u0e39\u0e25\u0e2d\u0e1f
-xh=\u0e42\u0e0b\u0e2a\u0e32
-ji=\u0e22\u0e35\u0e14\u0e34\u0e0a
-yi=\u0e22\u0e35\u0e14\u0e34\u0e0a
-yo=\u0e42\u0e22\u0e23\u0e39\u0e1a\u0e32
-za=\u0e08\u0e27\u0e07
-zu=\u0e0b\u0e39\u0e25\u0e39
-
-# country names
-# key is ISO 3166 country code
-
-AF=\u0e2d\u0e31\u0e1f\u0e01\u0e32\u0e19\u0e34\u0e2a\u0e16\u0e32\u0e19
-AL=\u0e41\u0e2d\u0e25\u0e40\u0e1a\u0e40\u0e19\u0e35\u0e22
-DZ=\u0e41\u0e2d\u0e25\u0e08\u0e35\u0e40\u0e23\u0e35\u0e22
-AD=\u0e2d\u0e31\u0e19\u0e14\u0e2d\u0e23\u0e4c\u0e23\u0e32
-AO=\u0e2d\u0e31\u0e19\u0e42\u0e01\u0e25\u0e32
-AI=\u0e2d\u0e31\u0e19\u0e01\u0e34\u0e25\u0e48\u0e32
-AR=\u0e2d\u0e32\u0e23\u0e4c\u0e40\u0e08\u0e19\u0e15\u0e34\u0e19\u0e48\u0e32
-AM=\u0e2d\u0e32\u0e23\u0e4c\u0e21\u0e35\u0e40\u0e19\u0e35\u0e22
-AW=\u0e2d\u0e32\u0e23\u0e39\u0e1a\u0e32
-AU=\u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e40\u0e25\u0e35\u0e22
-AT=\u0e2d\u0e2d\u0e2a\u0e40\u0e15\u0e23\u0e35\u0e22
-AZ=\u0e2d\u0e32\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e44\u0e1a\u0e08\u0e31\u0e19
-BS=\u0e1a\u0e32\u0e2e\u0e32\u0e21\u0e32\u0e2a
-BH=\u0e1a\u0e32\u0e2b\u0e4c\u0e40\u0e23\u0e19
-BD=\u0e1a\u0e31\u0e07\u0e04\u0e25\u0e32\u0e40\u0e17\u0e28
-BB=\u0e1a\u0e32\u0e23\u0e4c\u0e1a\u0e32\u0e14\u0e2d\u0e2a
-BY=\u0e40\u0e1a\u0e25\u0e25\u0e32\u0e23\u0e31\u0e2a
-BE=\u0e40\u0e1a\u0e25\u0e40\u0e22\u0e35\u0e48\u0e22\u0e21
-BZ=\u0e40\u0e1a\u0e25\u0e34\u0e0b
-BJ=\u0e40\u0e1a\u0e19\u0e34\u0e19
-BM=\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e21\u0e34\u0e27\u0e14\u0e49\u0e32
-BT=\u0e20\u0e39\u0e10\u0e32\u0e19
-BO=\u0e42\u0e1a\u0e25\u0e34\u0e40\u0e27\u0e35\u0e22
-BA=\u0e1a\u0e2d\u0e2a\u0e40\u0e19\u0e35\u0e22 \u0e41\u0e25\u0e30 \u0e40\u0e2e\u0e34\u0e23\u0e4c\u0e0b\u0e42\u0e01\u0e27\u0e34\u0e40\u0e19\u0e35\u0e22
-BW=\u0e1a\u0e2d\u0e15\u0e2a\u0e27\u0e32\u0e19\u0e32
-BR=\u0e1a\u0e23\u0e32\u0e0b\u0e34\u0e25
-BN=\u0e1a\u0e23\u0e39\u0e44\u0e19
-BG=\u0e1a\u0e31\u0e25\u0e41\u0e01\u0e40\u0e23\u0e35\u0e22
-BF=\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e01\u0e34\u0e19\u0e32\u0e1f\u0e32\u0e42\u0e0b
-BI=\u0e1a\u0e39\u0e23\u0e31\u0e19\u0e14\u0e34
-KH=\u0e01\u0e31\u0e21\u0e1e\u0e39\u0e0a\u0e32
-CM=\u0e04\u0e32\u0e40\u0e21\u0e23\u0e39\u0e19
-CA=\u0e41\u0e04\u0e19\u0e32\u0e14\u0e32
-CV=\u0e40\u0e04\u0e1e\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e14
-CF=\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e32\u0e01\u0e25\u0e32\u0e07
-TD=\u0e0a\u0e32\u0e14
-CL=\u0e0a\u0e34\u0e25\u0e35
-CN=\u0e08\u0e35\u0e19
-CO=\u0e42\u0e04\u0e25\u0e31\u0e21\u0e40\u0e1a\u0e35\u0e22
-KM=\u0e42\u0e04\u0e42\u0e21\u0e23\u0e2d\u0e2a
-CG=\u0e04\u0e2d\u0e07\u0e42\u0e01
-CR=\u0e04\u0e2d\u0e2a\u0e15\u0e32\u0e23\u0e34\u0e01\u0e49\u0e32
-CI=\u0e1d\u0e31\u0e48\u0e07\u0e17\u0e30\u0e40\u0e25\u0e44\u0e2d\u0e27\u0e2d\u0e23\u0e34
-HR=\u0e42\u0e04\u0e23\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22
-CU=\u0e04\u0e34\u0e27\u0e1a\u0e32
-CY=\u0e44\u0e0b\u0e1b\u0e23\u0e31\u0e2a
-CZ=\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e40\u0e0a\u0e47\u0e04
-DK=\u0e40\u0e14\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e01
-DJ=\u0e14\u0e34\u0e42\u0e1a\u0e15\u0e34
-DM=\u0e42\u0e14\u0e21\u0e34\u0e19\u0e34\u0e01\u0e49\u0e32
-DO=\u0e2a\u0e32\u0e18\u0e32\u0e23\u0e13\u0e23\u0e31\u0e10\u0e42\u0e14\u0e21\u0e34\u0e19\u0e34\u0e01\u0e31\u0e19
-TP=\u0e15\u0e34\u0e21\u0e2d\u0e23\u0e4c\u0e15\u0e30\u0e27\u0e31\u0e19\u0e2d\u0e2d\u0e01
-EC=\u0e40\u0e2d\u0e01\u0e27\u0e32\u0e14\u0e2d\u0e23\u0e4c
-EG=\u0e2d\u0e35\u0e22\u0e34\u0e1b\u0e15\u0e4c
-SV=\u0e40\u0e2d\u0e25\u0e0b\u0e32\u0e27\u0e32\u0e14\u0e2d\u0e23\u0e4c
-GQ=\u0e40\u0e2d\u0e04\u0e27\u0e32\u0e42\u0e17\u0e40\u0e23\u0e35\u0e22\u0e25\u0e01\u0e34\u0e19\u0e35
-ER=\u0e2d\u0e34\u0e23\u0e34\u0e17\u0e23\u0e35
-EE=\u0e40\u0e2d\u0e2a\u0e42\u0e15\u0e40\u0e19\u0e35\u0e22
-ET=\u0e40\u0e2d\u0e18\u0e34\u0e42\u0e2d\u0e40\u0e1b\u0e35\u0e22
-FJ=\u0e1f\u0e34\u0e08\u0e34
-FI=\u0e1f\u0e34\u0e19\u0e41\u0e25\u0e19\u0e14\u0e4c
-FR=\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a
-GF=\u0e40\u0e1f\u0e23\u0e47\u0e19\u0e0a\u0e01\u0e34\u0e27\u0e19\u0e48\u0e32
-PF=\u0e40\u0e1f\u0e23\u0e47\u0e19\u0e0a\u0e42\u0e1e\u0e25\u0e34\u0e19\u0e35\u0e40\u0e0b\u0e35\u0e22
-TF=\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15\u0e17\u0e32\u0e07\u0e43\u0e15\u0e49\u0e02\u0e2d\u0e07\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a
-GA=\u0e01\u0e32\u0e1a\u0e2d\u0e19
-GM=\u0e41\u0e01\u0e21\u0e40\u0e1a\u0e35\u0e22
-GE=\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22
-DE=\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e19\u0e35
-GH=\u0e01\u0e32\u0e19\u0e48\u0e32
-GR=\u0e01\u0e23\u0e35\u0e0b
-GP=\u0e01\u0e31\u0e27\u0e40\u0e14\u0e2d\u0e25\u0e39\u0e1b
-GT=\u0e01\u0e31\u0e27\u0e40\u0e15\u0e21\u0e32\u0e25\u0e32
-GN=\u0e01\u0e34\u0e27\u0e19\u0e35
-GW=\u0e01\u0e34\u0e27\u0e19\u0e35-\u0e1a\u0e34\u0e2a\u0e42\u0e0b
-GY=\u0e01\u0e39\u0e22\u0e32\u0e19\u0e48\u0e32
-HT=\u0e44\u0e2e\u0e15\u0e35
-HN=\u0e2e\u0e2d\u0e19\u0e14\u0e39\u0e23\u0e31\u0e2a
-HK=\u0e2e\u0e48\u0e2d\u0e07\u0e01\u0e07
-HU=\u0e2e\u0e31\u0e07\u0e01\u0e32\u0e23\u0e35
-IS=\u0e44\u0e2d\u0e0b\u0e41\u0e25\u0e19\u0e14\u0e4c
-IN=\u0e2d\u0e34\u0e19\u0e40\u0e14\u0e35\u0e22
-ID=\u0e2d\u0e34\u0e19\u0e42\u0e14\u0e19\u0e35\u0e40\u0e0b\u0e35\u0e22
-IR=\u0e2d\u0e34\u0e2b\u0e23\u0e48\u0e32\u0e19
-IQ=\u0e2d\u0e34\u0e23\u0e31\u0e01
-IE=\u0e44\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c
-IL=\u0e2d\u0e34\u0e2a\u0e23\u0e32\u0e40\u0e2d\u0e25
-IT=\u0e2d\u0e34\u0e15\u0e32\u0e25\u0e35
-JM=\u0e08\u0e32\u0e44\u0e21\u0e01\u0e49\u0e32
-JP=\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19
-JO=\u0e08\u0e2d\u0e23\u0e4c\u0e41\u0e14\u0e19
-KZ=\u0e04\u0e32\u0e0b\u0e31\u0e04\u0e2a\u0e16\u0e32\u0e19
-KE=\u0e40\u0e04\u0e19\u0e22\u0e48\u0e32
-KI=\u0e04\u0e34\u0e23\u0e35\u0e1a\u0e32\u0e15\u0e34
-KP=\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e40\u0e2b\u0e19\u0e37\u0e2d
-KR=\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49
-KW=\u0e04\u0e39\u0e40\u0e27\u0e15
-KG=\u0e40\u0e04\u0e2d\u0e23\u0e4c\u0e01\u0e34\u0e2a\u0e16\u0e32\u0e19
-LA=\u0e25\u0e32\u0e27
-LV=\u0e25\u0e32\u0e15\u0e40\u0e27\u0e35\u0e22
-LB=\u0e40\u0e25\u0e1a\u0e32\u0e19\u0e2d\u0e19
-LS=\u0e40\u0e25\u0e42\u0e0b\u0e42\u0e17
-LR=\u0e25\u0e34\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e40\u0e25\u0e35\u0e22
-LY=\u0e25\u0e34\u0e40\u0e1a\u0e35\u0e22
-LI=\u0e44\u0e25\u0e40\u0e17\u0e19\u0e2a\u0e44\u0e15\u0e19\u0e4c
-LT=\u0e25\u0e34\u0e40\u0e17\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e35\u0e22
-LU=\u0e25\u0e31\u0e01\u0e0b\u0e4c\u0e40\u0e0b\u0e21\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e01
-MK=\u0e41\u0e21\u0e0b\u0e35\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22
-MG=\u0e21\u0e32\u0e14\u0e32\u0e01\u0e32\u0e2a\u0e01\u0e49\u0e32
-MY=\u0e21\u0e32\u0e40\u0e25\u0e40\u0e0b\u0e35\u0e22
-ML=\u0e21\u0e32\u0e25\u0e35
-MT=\u0e21\u0e31\u0e25\u0e15\u0e49\u0e32
-MQ=\u0e21\u0e32\u0e23\u0e4c\u0e15\u0e34\u0e19\u0e34\u0e01
-MR=\u0e21\u0e2d\u0e23\u0e34\u0e17\u0e32\u0e40\u0e19\u0e35\u0e22
-MU=\u0e21\u0e2d\u0e23\u0e34\u0e40\u0e15\u0e35\u0e22\u0e2a
-YT=\u0e21\u0e32\u0e22\u0e2d\u0e15
-MX=\u0e41\u0e21\u0e47\u0e01\u0e0b\u0e34\u0e42\u0e01
-FM=\u0e44\u0e21\u0e42\u0e04\u0e23\u0e19\u0e34\u0e40\u0e0b\u0e35\u0e22
-MD=\u0e42\u0e21\u0e25\u0e42\u0e14\u0e27\u0e32
-MC=\u0e42\u0e21\u0e19\u0e32\u0e42\u0e04
-MN=\u0e21\u0e2d\u0e07\u0e42\u0e01\u0e40\u0e25\u0e35\u0e22
-MS=\u0e21\u0e2d\u0e19\u0e15\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e32\u0e15
-MA=\u0e42\u0e21\u0e23\u0e2d\u0e04\u0e42\u0e04
-MZ=\u0e42\u0e21\u0e41\u0e0b\u0e21\u0e1a\u0e34\u0e04
-MM=\u0e2a\u0e2b\u0e20\u0e32\u0e1e\u0e1e\u0e21\u0e48\u0e32
-NA=\u0e19\u0e32\u0e21\u0e34\u0e40\u0e1a\u0e35\u0e22
-NP=\u0e40\u0e19\u0e1b\u0e32\u0e25
-NL=\u0e40\u0e19\u0e40\u0e18\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c
-AN=\u0e40\u0e19\u0e40\u0e18\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c\u0e41\u0e2d\u0e19\u0e17\u0e34\u0e25\u0e25\u0e4c
-NC=\u0e19\u0e34\u0e27\u0e04\u0e32\u0e25\u0e34\u0e42\u0e14\u0e40\u0e19\u0e35\u0e22
-NZ=\u0e19\u0e34\u0e27\u0e0b\u0e35\u0e41\u0e25\u0e19\u0e14\u0e4c
-NI=\u0e19\u0e34\u0e04\u0e32\u0e23\u0e32\u0e01\u0e31\u0e27
-NE=\u0e44\u0e19\u0e40\u0e08\u0e2d\u0e23\u0e4c
-NG=\u0e44\u0e19\u0e08\u0e35\u0e40\u0e23\u0e35\u0e22
-NU=\u0e19\u0e35\u0e22\u0e39
-NO=\u0e19\u0e2d\u0e23\u0e4c\u0e40\u0e27\u0e22\u0e4c
-OM=\u0e42\u0e2d\u0e21\u0e32\u0e19
-PK=\u0e1b\u0e32\u0e01\u0e35\u0e2a\u0e16\u0e32\u0e19
-PA=\u0e1b\u0e32\u0e19\u0e32\u0e21\u0e32
-PG=\u0e1b\u0e32\u0e1b\u0e31\u0e27\u0e19\u0e34\u0e27\u0e01\u0e35\u0e19\u0e35
-PY=\u0e1b\u0e32\u0e23\u0e32\u0e01\u0e27\u0e31\u0e22
-PE=\u0e40\u0e1b\u0e23\u0e39
-PH=\u0e1f\u0e34\u0e25\u0e34\u0e1b\u0e1b\u0e34\u0e19\u0e2a\u0e4c
-PL=\u0e42\u0e1b\u0e41\u0e25\u0e19\u0e14\u0e4c
-PT=\u0e42\u0e1b\u0e15\u0e38\u0e01\u0e31\u0e25
-PR=\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e42\u0e15\u0e23\u0e34\u0e42\u0e01
-QA=\u0e01\u0e32\u0e15\u0e32\u0e23\u0e4c
-RO=\u0e23\u0e39\u0e40\u0e21\u0e40\u0e19\u0e35\u0e22
-RU=\u0e23\u0e31\u0e2a\u0e40\u0e0b\u0e35\u0e22
-RW=\u0e23\u0e32\u0e27\u0e31\u0e25\u0e14\u0e32
-SA=\u0e0b\u0e32\u0e2d\u0e38\u0e14\u0e34\u0e2d\u0e32\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22
-SN=\u0e0b\u0e34\u0e19\u0e35\u0e01\u0e31\u0e25
-SP=\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e40\u0e1a\u0e35\u0e22
-SC=\u0e40\u0e0b\u0e22\u0e4c\u0e41\u0e0a\u0e25\u0e25\u0e4c
-SL=\u0e40\u0e0b\u0e35\u0e22\u0e23\u0e4c\u0e23\u0e48\u0e32\u0e25\u0e35\u0e2d\u0e2d\u0e19
-SG=\u0e2a\u0e34\u0e07\u0e04\u0e42\u0e1b\u0e23\u0e4c
-SK=\u0e2a\u0e42\u0e25\u0e27\u0e32\u0e40\u0e01\u0e35\u0e22
-SI=\u0e2a\u0e42\u0e25\u0e27\u0e34\u0e40\u0e19\u0e35\u0e22
-SO=\u0e42\u0e0b\u0e21\u0e32\u0e40\u0e25\u0e35\u0e22
-ZA=\u0e41\u0e2d\u0e1f\u0e23\u0e34\u0e01\u0e32\u0e43\u0e15\u0e49
-ES=\u0e2a\u0e40\u0e1b\u0e19
-LK=\u0e28\u0e23\u0e35\u0e25\u0e31\u0e07\u0e01\u0e32
-SD=\u0e0b\u0e39\u0e14\u0e32\u0e19
-SR=\u0e0b\u0e39\u0e23\u0e34\u0e19\u0e32\u0e21\u0e34
-SZ=\u0e2a\u0e27\u0e32\u0e0b\u0e34\u0e41\u0e25\u0e19\u0e14\u0e4c
-SE=\u0e2a\u0e27\u0e35\u0e40\u0e14\u0e19
-CH=\u0e2a\u0e27\u0e34\u0e2a\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c
-SY=\u0e0b\u0e35\u0e40\u0e23\u0e35\u0e22
-TW=\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19
-TJ=\u0e17\u0e32\u0e08\u0e34\u0e01\u0e34\u0e2a\u0e16\u0e32\u0e19
-TZ=\u0e17\u0e32\u0e19\u0e0b\u0e32\u0e40\u0e19\u0e35\u0e22
-TH=\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22
-TG=\u0e42\u0e15\u0e42\u0e01
-TK=\u0e42\u0e17\u0e01\u0e34\u0e42\u0e25
-TO=\u0e17\u0e2d\u0e07\u0e01\u0e49\u0e32
-TT=\u0e17\u0e23\u0e34\u0e19\u0e34\u0e41\u0e14\u0e14 \u0e41\u0e25\u0e30\u0e42\u0e17\u0e1a\u0e32\u0e42\u0e01
-TN=\u0e15\u0e39\u0e19\u0e34\u0e40\u0e0b\u0e35\u0e22
-TR=\u0e15\u0e38\u0e23\u0e01\u0e35
-TM=\u0e40\u0e15\u0e34\u0e23\u0e4c\u0e01\u0e40\u0e21\u0e19\u0e34\u0e2a\u0e16\u0e32\u0e19
-UG=\u0e2d\u0e39\u0e01\u0e32\u0e19\u0e14\u0e32
-UA=\u0e22\u0e39\u0e40\u0e04\u0e23\u0e19
-AE=\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e32\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e2d\u0e21\u0e34\u0e40\u0e23\u0e15\u0e2a\u0e4c
-GB=\u0e2a\u0e2b\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23
-US=\u0e2a\u0e2b\u0e23\u0e31\u0e10\u0e2d\u0e40\u0e21\u0e23\u0e34\u0e01\u0e32
-UY=\u0e2d\u0e38\u0e23\u0e39\u0e01\u0e27\u0e31\u0e22
-UZ=\u0e2d\u0e38\u0e0b\u0e40\u0e1a\u0e01\u0e34\u0e2a\u0e16\u0e32\u0e19
-VU=\u0e27\u0e32\u0e19\u0e31\u0e27\u0e15\u0e39
-VA=\u0e27\u0e32\u0e15\u0e34\u0e01\u0e31\u0e19
-VE=\u0e40\u0e27\u0e40\u0e19\u0e0b\u0e39\u0e40\u0e2d\u0e25\u0e48\u0e32
-VN=\u0e40\u0e27\u0e35\u0e22\u0e14\u0e19\u0e32\u0e21
-VG=\u0e1a\u0e23\u0e34\u0e17\u0e34\u0e0a\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e34\u0e19\u0e44\u0e2d\u0e2a\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c
-VI=\u0e22\u0e39\u0e40\u0e2d\u0e2a\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e34\u0e19\u0e44\u0e2d\u0e2a\u0e4c\u0e41\u0e25\u0e19\u0e14\u0e4c
-EH=\u0e0b\u0e32\u0e2e\u0e32\u0e23\u0e48\u0e32\u0e15\u0e30\u0e27\u0e31\u0e19\u0e15\u0e01
-YE=\u0e40\u0e22\u0e40\u0e21\u0e19
-ZR=\u0e41\u0e0b\u0e23\u0e4c
-ZM=\u0e41\u0e0b\u0e21\u0e40\u0e1a\u0e35\u0e22
-ZW=\u0e0b\u0e34\u0e21\u0e1a\u0e32\u0e1a\u0e40\u0e27
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_tr.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_tr.properties
deleted file mode 100755
index 8590442..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_tr.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-tr=T\u00fcrk\u00e7e
-
-# country names
-# key is ISO 3166 country code
-
-TR=T\u00fcrkiye
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_uk.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_uk.properties
deleted file mode 100755
index 9943e97..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_uk.properties
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-uk=\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430
-
-# country names
-# key is ISO 3166 country code
-
-UA=\u0423\u043a\u0440\u0430\u0457\u043d\u0430
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_vi.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_vi.properties
deleted file mode 100755
index d32d40b..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_vi.properties
+++ /dev/null
@@ -1,295 +0,0 @@
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-#
-#******************************************************************************
-# (C) Copyright IBM Corp. 1996-2003 - All Rights Reserved                     *
-#                                                                             *
-# The original version of this source code and documentation is copyrighted   *
-# and owned by IBM, These materials are provided under terms of a License     *
-# Agreement between IBM and Sun. This technology is protected by multiple     *
-# US and International patents. This notice and attribution to IBM may not    *
-# to removed.                                                                 *
-#******************************************************************************
-#
-# This locale data is based on the ICU's Vietnamese locale data (rev. 1.38)
-# found at:
-#
-# http://oss.software.ibm.com/cvs/icu/icu/source/data/locales/vi.txt?rev=1.38
-
-
-# language names
-# key is ISO 639 language code
-
-ar=Ti\u1EBFng A-r\u1EADp
-az=Ti\u1EBFng Ai-d\u00E9c-bai-gian
-be=Ti\u1EBFng B\u00EA-la-r\u00FAt
-bg=Ti\u1EBFng Bun-ga-ri
-bo=Ti\u1EBFng T\u00E2y T\u1EA1ng
-ca=Ti\u1EBFng Ca-ta-l\u0103ng
-cs=Ti\u1EBFng S\u00E9c
-da=Ti\u1EBFng \u0110an M\u1EA1ch
-de=Ti\u1EBFng \u0110\u1EE9c
-el=Ti\u1EBFng Hy L\u1EA1p
-en=Ti\u1EBFng Anh
-eo=Ti\u1EBFng Qu\u1ED1c T\u1EBF Ng\u1EEF
-es=Ti\u1EBFng T\u00E2y Ban Nha
-et=Ti\u1EBFng E-xt\u00F4-ni-a
-fa=Ti\u1EBFng Ba T\u01B0
-fi=Ti\u1EBFng Ph\u1EA7n Lan
-fr=Ti\u1EBFng Ph\u00E1p
-ga=Ti\u1EBFng Ai-len
-he=Ti\u1EBFng H\u00EA-br\u01A1
-hi=Ti\u1EBFng Hin-\u0111i
-hr=Ti\u1EBFng Cr\u00F4-a-ti-a
-hu=Ti\u1EBFng Hung-ga-ri
-hy=Ti\u1EBFng \u00C1c-m\u00EA-ni
-ia=Ti\u1EBFng Khoa H\u1ECDc Qu\u1ED1c T\u1EBF
-id=Ti\u1EBFng In-\u0111\u00F4-n\u00EA-xia
-is=Ti\u1EBFng Ai-x\u01A1-len
-it=Ti\u1EBFng \u00DD
-ja=Ti\u1EBFng Nh\u1EADt
-jv=Ti\u1EBFng Gia-va
-km=Ti\u1EBFng Campuchia
-kn=Ti\u1EBFng Kan-na-\u0111a
-ko=Ti\u1EBFng H\u00E0n Qu\u1ED1c
-la=Ti\u1EBFng La-tinh
-lo=Ti\u1EBFng L\u00E0o
-lt=Ti\u1EBFng L\u00EDt-va
-lv=Ti\u1EBFng L\u00E1t-vi-a
-mk=Ti\u1EBFng Ma-x\u00EA-\u0111\u00F4-ni-a
-mn=Ti\u1EBFng M\u00F4ng C\u1ED5
-ms=Ti\u1EBFng Ma-lay-xi-a
-ne=Ti\u1EBFng N\u00EA-pan
-nl=Ti\u1EBFng H\u00E0 Lan
-no=Ti\u1EBFng Na Uy
-pl=Ti\u1EBFng Ba Lan
-pt=Ti\u1EBFng B\u1ED3 \u0110\u00E0o Nha
-ro=Ti\u1EBFng Ru-ma-ni
-ru=Ti\u1EBFng Nga
-sa=Ti\u1EBFng Ph\u1EA1n
-sk=Ti\u1EBFng Xl\u00F4-v\u00E1c
-sl=Ti\u1EBFng Xl\u00F4-ven
-so=Ti\u1EBFng X\u00F4-ma-li
-sq=Ti\u1EBFng An-ba-ni
-sr=Ti\u1EBFng S\u00E9c-bi
-sv=Ti\u1EBFng Th\u1EE5y \u0110i\u1EC3n
-th=Ti\u1EBFng Th\u00E1i
-tr=Ti\u1EBFng Th\u1ED5 Nh\u0129 K\u1EF3
-uk=Ti\u1EBFng U-crai-na
-uz=Ti\u1EBFng U-d\u01A1-b\u1EBFch
-vi=Ti\u1EBFng Vi\u1EC7t
-yi=Ti\u1EBFng Y-\u0111it
-zh=Ti\u1EBFng Trung Qu\u1ED1c
-
-# country names
-# key is ISO 3166 country code
-
-AE=C\u00e1c Ti\u1ec3u V\u01b0\u01a1ng qu\u1ed1c A-r\u1eadp Th\u1ed1ng nh\u1ea5t
-AF=\u00c1p-ga-ni-xtan
-AG=An-ti-gu-a v\u00e0 Ba-bu-\u0111a
-AL=An-ba-ni
-AM=\u00c1c-m\u00ea-ni-a
-AO=\u0102ng-g\u00f4-la
-AR=\u00c1c-hen-ti-na
-AT=\u00c1o
-AU=\u00dac
-AZ=Ai-d\u00e9c-bai-gian
-BA=B\u00f4-xni-a H\u00e9c-x\u00ea-g\u00f4-vi-na
-BB=B\u00e1c-ba-\u0111\u1ed1t
-BD=B\u0103ng-la-\u0111\u00e9t
-BE=B\u1ec9
-BF=Bu\u1ed1c-ki-na Pha-x\u00f4
-BG=Bun-ga-ri
-BH=Ba-ren
-BI=Bu-run-\u0111i
-BJ=B\u00ea-nanh
-BN=Bru-n\u00e2y
-BO=B\u00f4-li-vi-a
-BR=Bra-xin
-BS=Ba-ha-ma
-BW=B\u1ed1t-xoa-na
-BY=B\u00ea-la-r\u00fat
-BZ=B\u00ea-li-x\u00ea
-CA=Ca-na-\u0111a
-CF=C\u1ed9ng h\u00f2a Trung Phi
-CG=C\u00f4ng-g\u00f4
-CH=Th\u1ee5y S\u0129
-CI=B\u1edd Bi\u1ec3n Ng\u00e0
-CL=Chi-l\u00ea
-CM=Ca-m\u01a1-run
-CN=Trung Qu\u1ed1c
-CO=C\u00f4-l\u00f4m-bi-a
-CR=C\u1ed1t-xta Ri-ca
-CU=Cu Ba
-CV=C\u00e1p-ve
-CY=S\u00edp
-CZ=C\u1ed9ng h\u00f2a S\u00e9c
-DE=\u0110\u1ee9c
-DJ=Gi-bu-ti
-DK=\u0110an M\u1ea1ch
-DZ=An-gi\u00ea-ri
-EC=\u00ca-cu-a-\u0111o
-EE=E-xt\u00f4-ni-a
-EG=Ai C\u1eadp
-EH=T\u00e2y Sahara
-ER=\u00ca-ri-t\u01a1-r\u00ea-a
-ES=T\u00e2y Ban Nha
-ET=\u00ca-ti-\u00f4-pi-a
-FI=Ph\u1ea7n Lan
-FJ=Phi-gi
-FM=Mi-cr\u00f4-n\u00ea-xi-a
-FR=Ph\u00e1p
-GA=Ga-b\u00f4ng
-GB=V\u01b0\u01a1ng qu\u1ed1c Anh
-GD=Gr\u00ea-na-\u0111a
-GE=Gru-di-a
-GH=Gha-na
-GM=G\u0103m-bi-a
-GN=Ghi-n\u00ea
-GQ=Ghi-n\u00ea X\u00edch-\u0111\u1ea1o
-GR=Hy L\u1ea1p
-GT=Goa-t\u00ea-ma-la
-GW=Ghi-n\u00ea B\u00edt-xao
-GY=Guy-a-na
-HN=H\u00f4n-\u0111u-r\u00e1t
-HR=Cr\u00f4-a-ti-a
-HT=Ha-i-ti
-HU=Hung-ga-ri
-ID=Nam D\u01b0\u01a1ng
-IE=Ai-len
-IL=I-xra-en
-IN=\u1ea4n \u0110\u1ed9
-IQ=I-r\u1eafc
-IR=I-ran
-IS=Ai-x\u01a1-len
-IT=\u00DD
-JM=Ha-mai-ca
-JO=Gi\u00f3c-\u0111a-ni
-JP=Nh\u1eadt B\u1ea3n
-KE=K\u00ea-ni-a
-KG=C\u01b0-r\u01a1-g\u01b0-xtan
-KH=Campuchia
-KI=Ki-ri-ba-ti
-KM=C\u00f4-m\u00f4
-KN=Xan-k\u00edt v\u00e0 N\u00ea-vi
-KP=B\u1eafc Tri\u1ec1u Ti\u00ean
-KR=H\u00e0n Qu\u1ed1c
-KW=C\u00f4-o\u00e9t
-KZ=Ka-d\u1eafc-xtan
-LA=L\u00e0o
-LB=Li-b\u0103ng
-LC=Xan Lu-xi
-LI=Lich-ten-xt\u00ean
-LK=Xri Lan-ca
-LR=Li-b\u00ea-ri-a
-LS=L\u00ea-x\u00f4-th\u00f4
-LT=Li-tu-a-ni-a
-LU=L\u00fac-x\u0103m-bua
-LV=L\u00e1t-vi-a
-LY=Li-bi
-MA=Ma-r\u1ed1c
-MC=M\u00f4-na-c\u00f4
-MD=M\u00f4n-\u0111\u00f4-va
-MG=Ma-\u0111a-g\u00e1t-xca
-MH=Qu\u1ea7n \u0111\u1ea3o M\u00e1c-san
-MK=Ma-x\u00ea-\u0111\u00f4-ni-a
-ML=Ma-li
-MM=Mi-an-ma
-MN=M\u00f4ng C\u1ed5
-MR=M\u00f4-ri-ta-ni
-MT=Man-ta
-MU=M\u00f4-ri-x\u01a1
-MV=Man-\u0111i-v\u01a1
-MW=Ma-la-uy
-MX=M\u00ea-hi-c\u00f4
-MY=Ma-lay-xi-a
-MZ=M\u00f4-d\u0103m-b\u00edch
-NA=Nam-mi-bi-a
-NE=Ni-gi\u00ea
-NG=Ni-gi\u00ea-ri-a
-NI=Ni-ca-ra-goa
-NL=H\u00e0 Lan
-NO=Na Uy
-NP=N\u00ea-pan
-NZ=Niu Di-l\u00e2n
-OM=\u00d4-man
-PA=Pa-na-ma
-PE=P\u00ea-ru
-PG=Pa-pu-a Niu Ghi-n\u00ea
-PH=Phi-lip-pin
-PK=Pa-ki-xtan
-PL=Ba Lan
-PT=B\u1ed3 \u0110\u00e0o Nha
-PY=Pa-ra-goay
-QA=Ca-ta
-RO=Ru-ma-ni
-RU=Nga
-RW=Ru-an-\u0111a
-SA=A-r\u1eadp X\u00ea-\u00fat
-SB=Qu\u1ea7n \u0111\u1ea3o X\u00f4-l\u00f4-m\u00f4ng
-SC=X\u00e2y-sen
-SD=Xu-\u0111\u0103ng
-SE=Th\u1ee5y \u0110i\u1ec3n
-SG=Xin-ga-po
-SI=Xl\u00f4-ven-ni-a
-SK=Xl\u00f4-va-ki-a
-SL=Xi-\u00ea-ra L\u00ea-\u00f4n
-SM=Xan Ma-ri-n\u00f4
-SN=X\u00ea-n\u00ea-gan
-SO=X\u00f4-ma-li
-SP=S\u00e9c-bia
-SR=Xu-ri-nam
-ST=Xao T\u00f4-m\u00ea v\u00e0 Prin-xi-p\u00ea
-SV=En-san-va-\u0111o
-SY=Xi-ri
-SZ=Xoa-di-len
-TD=S\u00e1t
-TG=T\u00f4-g\u00f4
-TH=Th\u00e1i Lan
-TJ=T\u00e1t-gi-ki-xtan
-TM=Tu\u1ed1c-m\u00ea-ni-xtan
-TN=Tuy-ni-di
-TO=T\u00f4ng-ga
-TR=Th\u1ed5 Nh\u0129 K\u1ef3
-TT=Tri-ni-\u0111\u00e1t v\u00e0 T\u00f4-ba-g\u00f4
-TV=Tu-va-lu
-TW=\u0110\u00e0i Loan
-TZ=Tan-da-ni-a
-UA=U-crai-na
-UG=U-gan-\u0111a
-US=Hoa K\u1ef3
-UY=U-ru-goay
-UZ=U-d\u01a1-b\u00ea-ki-xtan
-VA=Va-ti-c\u0103ng
-VC=Xan Vin-xen v\u00e0 Gr\u00ea-na-din
-VE=V\u00ea-n\u00ea-zu-\u00ea-la
-VN=Vi\u1ec7t Nam
-VU=Va-nu-a-tu
-WS=Xa-moa
-YE=Y-\u00ea-men
-YU=Nam T\u01B0
-ZA=Nam Phi
-ZM=D\u0103m-bi-a
-ZW=Dim-ba-bu-\u00ea
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_zh.properties
deleted file mode 100755
index 35278b0..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=\u963f\u6cd5\u6587
-ab=\u963f\u5e03\u54c8\u897f\u4e9a\u6587
-ae=\u963f\u7ef4\u65af\u9640\u6587
-af=\u5357\u975e\u8377\u5170\u6587
-ak=\u5e93\u963f\u6587
-am=\u963f\u59c6\u54c8\u62c9\u6587
-an=\u963f\u62c9\u8d21\u6587
-ar=\u963f\u62c9\u4f2f\u6587
-as=\u963f\u8428\u59c6\u6587
-av=\u963f\u74e6\u5c14\u6587
-ay=\u827e\u9a6c\u62c9\u6587
-az=\u963f\u585e\u62dc\u7586\u6587
-ba=\u5df4\u4ec0\u5ba2\u5c14\u6587
-be=\u767d\u4fc4\u7f57\u65af\u6587
-bg=\u4fdd\u52a0\u5229\u4e9a\u6587
-bh=\u6bd4\u54c8\u5c14\u6587
-bi=\u6bd4\u65af\u62c9\u9a6c\u6587
-bm=\u73ed\u5df4\u62c9\u6587
-bn=\u5b5f\u52a0\u62c9\u6587
-bo=\u897f\u85cf\u6587
-br=\u5e03\u91cc\u591a\u5c3c\u6587
-bs=\u6ce2\u65af\u5c3c\u4e9a\u6587
-ca=\u52a0\u6cf0\u7f57\u5c3c\u4e9a\u6587
-ce=\u8f66\u81e3\u6587
-ch=\u67e5\u83ab\u7f57\u6587
-co=\u79d1\u897f\u5609\u6587
-cr=\u514b\u91cc\u6587
-cs=\u6377\u514b\u6587
-cu=\u6559\u4f1a\u65af\u62c9\u592b\u6587
-cv=\u695a\u74e6\u4ec0\u6587
-cy=\u5a01\u5c14\u58eb\u6587
-da=\u4e39\u9ea6\u6587
-de=\u5fb7\u6587
-dv=\u8fea\u7ef4\u5e0c\u6587
-dz=\u4e0d\u4e39\u6587
-ee=\u57c3\u7ef4\u6587
-el=\u5e0c\u814a\u6587
-en=\u82f1\u6587
-eo=\u4e16\u754c\u6587
-es=\u897f\u73ed\u7259\u6587
-et=\u7231\u6c99\u5c3c\u4e9a\u6587
-eu=\u5df4\u65af\u514b\u6587
-fa=\u6ce2\u65af\u6587
-ff=\u5bcc\u62c9\u6587
-fi=\u82ac\u5170\u6587
-fj=\u6590\u6d4e\u6587
-fo=\u6cd5\u7f57\u6587
-fr=\u6cd5\u6587
-fy=\u5f17\u91cc\u65af\u5170\u6587
-ga=\u7231\u5c14\u5170\u6587
-gd=\u82cf\u683c\u5170- \u76d6\u5c14\u6587
-gl=\u52a0\u5229\u897f\u4e9a\u6587
-gn=\u74dc\u62c9\u5c3c\u6587
-gu=\u53e4\u52a0\u62c9\u63d0\u6587
-gv=\u9a6c\u6069\u6587
-ha=\u8c6a\u6492\u6587
-he=\u5e0c\u4f2f\u6765\u6587
-hi=\u5370\u5730\u6587
-ho=\u65b0\u91cc\u6728\u6258\u6587
-hr=\u514b\u7f57\u5730\u4e9a\u6587
-ht=\u6d77\u5730\u6587
-hu=\u5308\u7259\u5229\u6587
-hy=\u4e9a\u7f8e\u5c3c\u4e9a\u6587
-hz=\u8d6b\u96f7\u7f57\u6587
-ia=\u62c9\u4e01\u56fd\u9645\u6587
-id=\u5370\u5ea6\u5c3c\u897f\u4e9a\u6587
-ie=\u62c9\u4e01\u56fd\u9645\u6587
-ig=\u4f0a\u535a\u6587
-ii=\u56db\u5ddd\u5f5d\u6587
-ik=\u4f9d\u5974\u76ae\u7ef4\u514b\u6587
-in=\u5370\u5ea6\u5c3c\u897f\u4e9a\u6587
-io=\u4f0a\u591a\u6587
-is=\u51b0\u5c9b\u6587
-it=\u610f\u5927\u5229\u6587
-iu=\u7231\u65af\u57fa\u6469\u6587
-iw=\u5e0c\u4f2f\u6765\u6587
-ja=\u65e5\u6587
-ji=\u4f9d\u5730\u6587
-jv=\u722a\u54c7\u6587
-ka=\u683c\u9c81\u5409\u4e9a\u6587
-kg=\u521a\u679c\u6587
-ki=\u5409\u5e93\u5c24\u6587
-kj=\u5361\u6e7e\u4e9a\u9a6c\u6587
-kk=\u54c8\u8428\u514b\u6587
-kl=\u683c\u9675\u5170\u6587
-km=\u67ec\u57d4\u5be8\u6587
-kn=\u57c3\u7eb3\u5fb7\u6587
-ko=\u671d\u9c9c\u6587
-kr=\u5361\u52aa\u91cc\u6587
-ks=\u514b\u4ec0\u7c73\u5c14\u6587
-ku=\u5e93\u5c14\u5fb7\u6587
-kv=\u79d1\u7c73\u6587
-kw=\u5eb7\u6c83\u5c14\u6587
-ky=\u5409\u5c14\u5409\u65af\u6587
-la=\u62c9\u4e01\u6587
-lb=\u5362\u68ee\u5821\u6587
-lg=\u5e72\u8fbe\u6587
-li=\u6797\u5821\u6587
-ln=\u6797\u52a0\u62c9\u6587
-lo=\u8001\u631d\u6587
-lt=\u7acb\u9676\u5b9b\u6587
-lu=\u5362\u5df4-\u52a0\u4e39\u52a0
-lv=\u62c9\u6258\u7ef4\u4e9a\u6587(\u5217\u6258)
-mg=\u9a6c\u5c14\u52a0\u4ec0\u6587
-mh=\u9a6c\u7ecd\u5c14\u6587
-mi=\u6bdb\u5229\u6587
-mk=\u9a6c\u5176\u987f\u6587
-ml=\u9a6c\u6765\u4e9a\u62c9\u59c6\u6587
-mn=\u8499\u53e4\u6587
-mo=\u6469\u5c14\u591a\u74e6\u6587
-mr=\u9a6c\u62c9\u5730\u6587
-ms=\u9a6c\u6765\u6587
-mt=\u9a6c\u8033\u4ed6\u6587
-my=\u7f05\u7538\u6587
-na=\u7459\u9c81\u6587
-nb=\u632a\u5a01\u535a\u514b\u9a6c\u5c14\u6587
-nd=\u5317\u6069\u5fb7\u6bd4\u5229\u6587
-ne=\u5c3c\u6cca\u5c14\u6587
-ng=\u6069\u4e1c\u52a0\u6587
-nl=\u8377\u5170\u6587
-nn=\u632a\u5a01\u5c3c\u8bfa\u65af\u514b\u6587
-no=\u632a\u5a01\u6587
-nr=\u5357\u6069\u5fb7\u6bd4\u5229\u6587
-nv=\u7eb3\u74e6\u970d\u6587
-ny=\u5c3c\u626c\u624e\u6587
-oc=\u5965\u897f\u5766\u6587
-oj=\u5965\u5409\u5e03\u74e6\u6587
-om=\u963f\u66fc\u6587
-or=\u6b27\u91cc\u4e9a\u6587
-os=\u5965\u585e\u68af\u6587
-pa=\u65c1\u906e\u666e\u6587
-pi=\u5df4\u5229\u6587
-pl=\u6ce2\u5170\u6587
-ps=\u666e\u4ec0\u56fe\u6587
-pt=\u8461\u8404\u7259\u6587
-qu=\u76d6\u4e18\u4e9a\u6587
-rm=\u91cc\u6258\u7f57\u66fc\u65af\u6587
-rn=\u57fa\u9686\u8fea\u6587
-ro=\u7f57\u9a6c\u5c3c\u4e9a\u6587
-ru=\u4fc4\u6587
-rw=\u5362\u65fa\u8fbe\u6587
-sa=\u68b5\u6587
-sc=\u6492\u4e01\u6587
-sd=\u82cf\u4e39\u6587
-se=\u5317\u6c99\u5bc6\u6587
-sg=\u6851\u6208\u6587
-si=\u50e7\u4f3d\u7f57\u6587
-sk=\u65af\u6d1b\u4f10\u514b\u6587
-sl=\u65af\u6d1b\u6587\u5c3c\u4e9a\u6587
-sm=\u8428\u6469\u4e9a\u6587
-sn=\u585e\u5185\u52a0\u5c14\u6587
-so=\u7d22\u9a6c\u91cc\u6587
-sq=\u963f\u5c14\u5df4\u5c3c\u4e9a\u6587
-sr=\u585e\u5c14\u7ef4\u4e9a\u6587
-ss=\u8f9b\u8f9b\u90a3\u63d0\u6587
-st=\u585e\u7d22\u6258\u6587
-su=\u82cf\u4e39\u6587
-sv=\u745e\u5178\u6587
-sw=\u65af\u74e6\u5e0c\u91cc\u6587
-ta=\u6cf0\u7c73\u5c14\u6587
-te=\u6cf0\u5362\u56fa\u6587
-tg=\u5854\u5409\u514b\u6587
-th=\u6cf0\u6587
-ti=\u63d0\u683c\u91cc\u5c3c\u4e9a\u6587
-tk=\u571f\u5e93\u66fc\u6587
-tl=\u5854\u52a0\u8def\u65cf\u6587
-tn=\u7a81\u5c3c\u65af\u6587
-to=\u6c64\u52a0\u6587
-tr=\u571f\u8033\u5176\u6587
-ts=\u7279\u677e\u52a0\u6587
-tt=\u9791\u977c\u6587
-tw=\u5951\u7ef4\u6587
-ty=\u5854\u5e0c\u63d0\u6587
-ug=\u7ef4\u543e\u5c14\u6587
-uk=\u4e4c\u514b\u5170\u6587
-ur=\u4e4c\u5c14\u90fd\u6587
-uz=\u4e4c\u5179\u522b\u514b\u6587
-ve=\u6587\u8fbe\u6587
-vi=\u8d8a\u5357\u6587
-vo=\u6c83\u62c9\u666e\u514b\u6587
-wa=\u74e6\u9f99\u6587
-wo=\u6c83\u5c14\u592b\u6587
-xh=\u73ed\u56fe\u6587
-yi=\u4f9d\u5730\u6587
-yo=\u7ea6\u9c81\u5df4\u6587
-za=\u85cf\u6587
-zh=\u4e2d\u6587
-zu=\u7956\u9c81\u6587
-
-# key is ISO 639.2 language code
-aar=\u963F\u6CD5\u5C14\u6587
-abk=\u963F\u5E03\u54C8\u897F\u4E9A\u6587
-ace=\u4E9A\u9F50\u6587
-ach=\u963F\u4E54\u5229\u6587
-ada=\u963F\u5F53\u6885\u6587
-ady=\u963F\u8FEA\u4F55\u6587
-afa=\u4E9A\u975E\u8BF8\u8BED\u8A00
-afh=\u963F\u5F17\u91CC\u5E0C\u5229\u6587
-afr=\u5357\u975E\u8377\u5170\u6587
-ain=\u963F\u4F0A\u52AA\u6587
-aka=\u5E93\u963F\u6587
-akk=\u963F\u5361\u5FB7\u6587
-alb=\u963F\u5C14\u5DF4\u5C3C\u4E9A\u6587
-ale=\u963F\u7559\u7533\u6587
-alg=\u5176\u4ED6\u963F\u5C14\u8D21\u8BED\u7CFB
-alt=\u5357\u963F\u5C14\u6CF0\u6587
-amh=\u963F\u59C6\u54C8\u62C9\u6587
-ang=\u53E4\u82F1\u6587
-anp=\u6602\u52A0\u8BED
-apa=\u963F\u5E15\u5207\u6587
-ara=\u963F\u62C9\u4F2F\u6587
-arc=\u963F\u62C9\u7C73\u6587
-arg=\u963F\u62C9\u8D21\u6587
-arm=\u4E9A\u7F8E\u5C3C\u4E9A\u6587
-arn=\u9A6C\u666E\u5207\u6587
-arp=\u963F\u62C9\u5E15\u970D\u6587
-art=\u5176\u4ED6\u4EBA\u5DE5\u8BED\u7CFB
-arw=\u963F\u62C9\u74E6\u514B\u6587
-asm=\u963F\u8428\u59C6\u6587
-ast=\u963F\u65AF\u56FE\u91CC\u4E9A\u601D\u7279\u6587
-ath=\u963F\u8428\u5E15\u65AF\u574E\u8BED\u7CFB
-aus=\u6FB3\u5927\u5229\u4E9A\u8BED\u7CFB
-ava=\u963F\u74E6\u5C14\u6587
-ave=\u963F\u7EF4\u65AF\u9640\u6587
-awa=\u963F\u74E6\u4E54\u6587
-aym=\u827E\u9A6C\u62C9\u6587
-aze=\u963F\u585E\u62DC\u7586\u6587
-bad=\u73ED\u8FBE\u6587
-bai=\u5DF4\u7C73\u7D2F\u514B\u8BED\u7CFB
-bak=\u5DF4\u4EC0\u5BA2\u5C14\u6587
-bal=\u4FFE\u8DEF\u652F\u6587
-bam=\u73ED\u5DF4\u62C9\u6587
-ban=\u5DF4\u5398\u8BED
-baq=\u5DF4\u65AF\u514B\u6587
-bas=\u5DF4\u8428\u6587
-bat=\u5176\u4ED6\u6CE2\u7F57\u7684\u8BED\u7CFB
-bej=\u522B\u672D\u6587
-bel=\u767D\u4FC4\u7F57\u65AF\u6587
-bem=\u522B\u59C6\u5DF4\u6587
-ben=\u5B5F\u52A0\u62C9\u6587
-ber=\u67CF\u67CF\u5C14\u6587
-bho=\u535A\u6770\u666E\u5C14\u6587
-bih=\u6BD4\u54C8\u5C14\u6587
-bik=\u6BD5\u5E93\u5C14\u6587
-bin=\u6BD4\u5C3C\u6587
-bis=\u6BD4\u65AF\u62C9\u9A6C\u6587
-bla=\u53F8\u514B\u53F8\u5361\u6587
-bnt=\u73ED\u56FE\u6587
-bos=\u6CE2\u65AF\u5C3C\u4E9A\u6587
-bra=\u5E03\u62C9\u6770\u6587
-bre=\u5E03\u91CC\u591A\u5C3C\u6587
-btk=\u5DF4\u5854\u514B\u8BED
-bua=\u5E03\u91CC\u4E9A\u7279\u6587
-bug=\u5E03\u5409\u8BED
-bul=\u4FDD\u52A0\u5229\u4E9A\u6587
-bur=\u7F05\u7538\u6587
-byn=\u5E03\u6797\u6587
-cad=\u5361\u591A\u6587
-cai=\u5176\u4ED6\u4E2D\u7F8E\u5370\u7B2C\u5B89\u8BED\u7CFB
-car=\u5DF4\u52D2\u6BD4\u6587
-cat=\u52A0\u6CF0\u7F57\u5C3C\u4E9A\u6587
-cau=\u5176\u4ED6\u9AD8\u52A0\u7D22\u8BED\u7CFB
-ceb=\u5BBF\u52A1\u6587
-cel=\u5176\u4ED6\u51EF\u5C14\u7279\u8BED\u7CFB
-cha=\u67E5\u83AB\u7F57\u6587
-chb=\u5951\u5E03\u5361\u6587
-che=\u8F66\u81E3\u6587
-chg=\u67E5\u52A0\u6587
-chi=\u4E2D\u6587
-chk=\u695A\u543E\u514B\u6587
-chm=\u9A6C\u91CC\u6587
-chn=\u5951\u52AA\u514B\u6587
-cho=\u4E54\u514B\u6258\u6587
-chp=\u4F69\u74E6\u626C\u6587
-chr=\u5F7B\u7F57\u57FA\u6587
-chu=\u6559\u4F1A\u65AF\u62C9\u592B\u6587
-chv=\u695A\u74E6\u4EC0\u6587
-chy=\u590F\u5EF6\u6587
-cmc=\u67E5\u7C73\u514B\u6587
-cop=\u79D1\u666E\u7279\u6587
-cor=\u5EB7\u6C83\u5C14\u6587
-cos=\u79D1\u897F\u5609\u6587
-cpe=\u5176\u4ED6\u4EE5\u82F1\u6587\u4E3A\u57FA\u7840\u7684\u514B\u91CC\u5965\u5C14\u6DF7\u5408\u8BED\u7CFB
-cpf=\u5176\u4ED6\u4EE5\u6CD5\u6587\u4E3A\u57FA\u7840\u7684\u514B\u91CC\u5965\u5C14\u6DF7\u5408\u8BED\u7CFB
-cpp=\u5176\u4ED6\u4EE5\u8461\u8404\u7259\u6587\u4E3A\u57FA\u7840\u7684\u514B\u91CC\u5965\u5C14\u6DF7\u5408\u8BED\u7CFB
-cre=\u514B\u91CC\u6587
-crh=\u514B\u91CC\u7C73\u4E9A\u5854\u5854\u6587
-crp=\u5176\u4ED6\u514B\u91CC\u5965\u5C14\u6DF7\u5408\u8BED\u7CFB
-csb=\u5361\u8212\u6587
-cus=\u5176\u4ED6\u5E93\u65BD\u7279\u8BED\u7CFB
-cze=\u6377\u514B\u6587
-dak=\u8FBE\u79D1\u4ED6\u6587
-dan=\u4E39\u9EA6\u6587
-dar=\u8FBE\u5C14\u683C\u74E6\u6587
-day=\u8FBE\u96C5\u514B\u6587
-del=\u7279\u62C9\u534E\u6587
-den=\u53F8\u96F7\u592B\u6587 (\u963F\u8428\u5E15\u65AF\u574E\u8BF8\u8BED\u8A00)
-dgr=\u591A\u683C\u91CC\u5E03\u6587
-din=\u4E01\u5361\u6587
-div=\u8FEA\u7EF4\u5E0C\u6587
-doi=\u591A\u683C\u62C9\u6587
-dra=\u5176\u4ED6\u5FB7\u62C9\u7EF4\u8BED\u7CFB
-dsb=\u4E0B\u7D22\u5E03\u6587
-dua=\u90FD\u963F\u62C9\u6587
-dum=\u4E2D\u53E4\u8377\u5170\u6587
-dut=\u8377\u5170\u6587
-dyu=\u8FEA\u5C24\u62C9\u6587
-dzo=\u4E0D\u4E39\u6587
-efi=\u57C3\u83F2\u514B\u6587
-egy=\u53E4\u57C3\u53CA\u6587
-eka=\u57C3\u514B\u4E18\u514B\u6587
-elx=\u827E\u62C9\u7C73\u7279\u6587
-eng=\u82F1\u6587
-enm=\u4E2D\u53E4\u82F1\u6587
-epo=\u4E16\u754C\u6587
-est=\u7231\u6C99\u5C3C\u4E9A\u6587
-ewe=\u57C3\u7EF4\u6587
-ewo=\u65FA\u675C\u6587
-fan=\u82B3\u683C\u6587
-fao=\u6CD5\u7F57\u6587
-fat=\u82B3\u8482\u6587
-fij=\u6590\u6D4E\u6587
-fil=\u83F2\u5F8B\u5BBE\u6587
-fin=\u82AC\u5170\u6587
-fiu=\u5176\u4ED6\u82AC\u5170\u4E4C\u6208\u5C14\u8BED\u7CFB
-fon=\u4E30\u6587
-fre=\u6CD5\u6587
-frm=\u4E2D\u53E4\u6CD5\u6587
-fro=\u53E4\u6CD5\u6587
-frr=\u5317\u5F17\u91CC\u897F\u4E9A\u8BED
-frs=\u4E1C\u5F17\u91CC\u897F\u4E9A\u6587
-fry=\u897F\u5F17\u91CC\u65AF\u5170\u8BED
-ful=\u5BCC\u62C9\u6587
-fur=\u5F17\u7559\u5229\u6587
-gaa=\u52A0\u6587
-gay=\u8FE6\u7EA6\u6587
-gba=\u845B\u5DF4\u4E9A\u6587
-gem=\u5176\u4ED6\u65E5\u5C14\u66FC\u8BED\u7CFB
-geo=\u683C\u9C81\u5409\u4E9A\u6587
-ger=\u5FB7\u6587
-gez=\u5409\u5179\u6587
-gil=\u5409\u5C14\u4F2F\u7279\u65AF\u6587
-gla=\u76D6\u5C14\u8BED
-gle=\u7231\u5C14\u5170\u6587
-glg=\u52A0\u5229\u897F\u4E9A\u6587
-glv=\u9A6C\u6069\u6587
-gmh=\u4E2D\u53E4\u9AD8\u5730\u5FB7\u6587
-goh=\u53E4\u9AD8\u5730\u5FB7\u6587
-gon=\u5C97\u5FB7\u6587
-gor=\u79D1\u6D1B\u6D85\u8FBE\u7F57\u6587
-got=\u54E5\u7279\u6587
-grb=\u683C\u5217\u535A\u6587
-grc=\u53E4\u5E0C\u814A\u6587
-gre=\u5E0C\u814A\u8BED, \u73B0\u4EE3 (1453-)
-grn=\u74DC\u62C9\u5C3C\u6587
-gsw=\u745E\u58EB\u5FB7\u6587
-guj=\u53E4\u52A0\u62C9\u63D0\u6587
-gwi=\u5409\u7EF4\u514B\u7434\u6587
-hai=\u6D77\u8FBE\u6587
-hat=\u6D77\u5730\u6587
-hau=\u8C6A\u6492\u6587
-haw=\u590F\u5A01\u5937\u6587
-heb=\u5E0C\u4F2F\u6765\u6587
-her=\u8D6B\u96F7\u7F57\u6587
-hil=\u5E0C\u5229\u76D6\u519C\u6587
-him=\u8D6B\u9A6C\u67E5\u5229\u6587
-hin=\u5370\u5730\u6587
-hit=\u8D6B\u68AF\u6587
-hmn=\u8D6B\u8499\u6587
-hmo=\u65B0\u91CC\u6728\u6258\u6587
-hrv=\u514B\u7F57\u5730\u4E9A\u6587
-hsb=\u4E0A\u7D22\u5E03\u6587
-hun=\u5308\u7259\u5229\u6587
-hup=\u80E1\u5E15\u6587
-iba=\u4F0A\u73ED\u6587
-ibo=\u4F0A\u535A\u6587
-ice=\u51B0\u5C9B\u6587
-ido=\u4F0A\u591A\u6587
-iii=\u56DB\u5DDD\u5F5D\u6587
-ijo=\u4F0A\u4E54\u6587
-iku=\u7231\u65AF\u57FA\u6469\u6587
-ile=\u62C9\u4E01\u56FD\u9645\u6587
-ilo=\u4F0A\u6D1B\u5E72\u8BFA\u6587
-ina=\u62C9\u4E01\u56FD\u9645\u8BED (\u56FD\u9645\u8F85\u52A9\u8BED\u8054\u76DF)
-inc=\u5176\u4ED6\u5370\u5EA6\u8BED\u7CFB
-ind=\u5370\u5EA6\u5C3C\u897F\u4E9A\u6587
-ine=\u5176\u4ED6\u5370\u6B27\u8BED\u7CFB
-inh=\u5370\u53E4\u4EC0\u6587
-ipk=\u4F9D\u5974\u76AE\u7EF4\u514B\u6587
-ira=\u4F0A\u6717\u6587
-iro=\u4F0A\u6D1B\u9B41\u8BED\u7CFB
-ita=\u610F\u5927\u5229\u6587
-jav=\u722A\u54C7\u6587
-jbo=\u903B\u8F91\u6587
-jpn=\u65E5\u6587
-jpr=\u72B9\u592A\u6CE2\u65AF\u6587
-jrb=\u72B9\u592A\u963F\u62C9\u4F2F\u6587
-kaa=\u5361\u62C9\u5361\u5C14\u5E15\u514B\u6587
-kab=\u5361\u6BD4\u5C14\u6587
-kac=\u5361\u7434\u6587
-kal=\u683C\u9675\u5170\u6587
-kam=\u5361\u59C6\u5DF4\u6587
-kan=\u5361\u7EB3\u5854\u514B\u8BED
-kar=\u5580\u4F26\u6587
-kas=\u514B\u4EC0\u7C73\u5C14\u6587
-kau=\u5361\u52AA\u91CC\u6587
-kaw=\u5361\u5A01\u6587
-kaz=\u54C8\u8428\u514B\u6587
-kbd=\u5361\u5DF4\u5C14\u8FBE\u6587
-kha=\u5361\u897F\u6587
-khi=\u5176\u4ED6\u79D1\u4F0A\u6851\u8BED\u7CFB
-khm=\u4E2D\u9AD8\u68C9\u8BED
-kho=\u548C\u7530\u6587
-kik=\u5409\u5E93\u5C24\u6587
-kin=\u5362\u65FA\u8FBE\u6587
-kir=\u5409\u5C14\u5409\u65AF\u6587
-kmb=\u91D1\u90A6\u675C\u6587
-kok=\u521A\u5361\u5C3C\u6587
-kom=\u79D1\u7C73\u6587
-kon=\u521A\u679C\u6587
-kor=\u671D\u9C9C\u6587
-kos=\u79D1\u65AF\u62C9\u4F0A\u6587
-kpe=\u514B\u4F69\u52D2\u8BED
-krc=\u5361\u62C9\u6070\u4F0A\u5DF4\u5C14\u5361\u5C14\u6587
-krl=\u5361\u7D2F\u5229\u963F\u6587
-kro=\u514B\u9C81\u6587
-kru=\u5E93\u9C81\u514B\u6587
-kua=\u5BBD\u4E9A\u739B\u8BED
-kum=\u5E93\u6885\u514B\u6587
-kur=\u5E93\u5C14\u5FB7\u6587
-kut=\u5E93\u7279\u5185\u6587
-lad=\u62C9\u8FEA\u8BFA\u6587
-lah=\u62C9\u4EA8\u8FBE\u6587
-lam=\u5170\u5DF4\u6587
-lao=\u8001\u631D\u6587
-lat=\u62C9\u4E01\u6587
-lav=\u62C9\u6258\u7EF4\u4E9A\u6587 (\u5217\u6258)
-lez=\u83B1\u5179\u4F9D\u6602\u6587
-lim=\u6797\u5821\u6587
-lin=\u6797\u52A0\u62C9\u6587
-lit=\u7ACB\u9676\u5B9B\u6587
-lol=\u8292\u6208\u6587
-loz=\u6D1B\u5179\u6587
-ltz=\u5362\u68EE\u5821\u6587
-lua=\u9C81\u5DF4\u9C81\u74E6\u6587
-lub=\u5362\u5DF4-\u52A0\u4E39\u52A0\u6587
-lug=\u5E72\u8FBE\u6587
-lui=\u8DEF\u6613\u585E\u8BFA\u6587
-lun=\u9686\u8FBE\u6587
-luo=\u5362\u5965\u6587
-lus=\u5362\u6652\u6587
-mac=\u9A6C\u5176\u987F\u6587
-mad=\u6469\u6D1B\u54E5\u8FEA\u62C9\u59C6
-mag=\u9A6C\u52A0\u4F0A\u6587
-mah=\u9A6C\u7ECD\u5C14\u6587
-mai=\u8FC8\u8482\u5229\u6587
-mak=\u671B\u52A0\u9521\u6587
-mal=\u9A6C\u6765\u4E9A\u62C9\u59C6\u6587
-man=\u66FC\u4E01\u54E5\u6587
-mao=\u6BDB\u5229\u6587
-map=\u6FB3\u65AF\u7279\u7F57\u5C3C\u897F\u4E9A\u8BED\u7CFB
-mar=\u9A6C\u62C9\u5730\u6587
-mas=\u8428\u4F0A\u8BED
-may=\u9A6C\u6765\u6587
-mdf=\u83AB\u514B\u6C99\u6587
-mdr=\u66FC\u8FBE\u5C14
-men=\u95E8\u8FEA\u6587
-mga=\u4E2D\u53E4\u7231\u5C14\u5170\u6587
-mic=\u7C73\u514B\u9A6C\u514B\u6587
-min=\u7C73\u5357\u5361\u4FDD\u6587
-mis=\u5404\u79CD\u4E0D\u540C\u8BED\u7CFB
-mkh=\u5176\u4ED6\u5B5F\u9AD8\u68C9\u8BED\u7CFB
-mlg=\u9A6C\u5C14\u52A0\u4EC0\u6587
-mlt=\u9A6C\u8033\u4ED6\u6587
-mnc=\u6EE1\u6587
-mni=\u66FC\u5C3C\u666E\u91CC\u6587
-mno=\u9A6C\u8BFA\u535A\u8BED\u7CFB
-moh=\u6469\u970D\u514B\u6587
-mon=\u8499\u53E4\u6587
-mos=\u83AB\u897F\u6587
-mul=\u591A\u79CD\u8BED\u7CFB
-mun=\u8499\u8FBE\u8BED\u7CFB
-mus=\u514B\u91CC\u514B\u6587
-mwl=\u7C73\u5170\u5FB7\u65AF\u6587
-mwr=\u9A6C\u5C14\u74E6\u5229\u6587
-myn=\u739B\u96C5\u8BED\u7CFB
-myv=\u4FC4\u65E5\u4E9A\u6587
-nah=\u7EB3\u74E6\u7279\u5C14\u6587
-nai=\u5176\u4ED6\u5317\u7F8E\u5370\u7B2C\u5B89\u8BED\u7CFB
-nap=\u62FF\u6CE2\u91CC\u6587
-nau=\u7459\u9C81\u6587
-nav=\u7EB3\u74E6\u970D\u6587
-nbl=\u6069\u5FB7\u8D1D\u52D2\u8BED, \u5357\u90E8
-nde=\u6069\u5FB7\u8D1D\u52D2\u8BED, \u5317\u90E8
-ndo=\u6069\u4E1C\u52A0\u6587
-nds=\u4F4E\u5730\u5FB7\u6587; \u4F4E\u5730\u6492\u514B\u900A\u6587
-nep=\u5C3C\u6CCA\u5C14\u6587
-new=\u5C3C\u74E6\u5C14\u6587
-nia=\u5C3C\u4E9A\u65AF\u6587
-nic=\u5C3C\u52A0\u62C9\u74DC\u79D1\u591A\u5DF4
-niu=\u7EBD\u57C3\u6587
-nno=\u632A\u5A01\u5C3C\u8BFA\u65AF\u514B\u6587
-nob=\u632A\u5A01\u535A\u514B\u9A6C\u5C14\u8BED
-nog=\u8BFA\u76D6\u6587
-non=\u53E4\u8BFA\u5C14\u65AF\u6587
-nor=\u632A\u5A01\u6587
-nqo=N\u2019Ko (\u897F\u975E\u4E66\u9762\u8BED\u8A00)
-nso=\u5317\u7D22\u6258\u6587
-nub=\u52AA\u6BD4\u4E9A\u8BED\u7CFB
-nwc=\u5C3C\u74E6\u5C14\u6587
-nya=\u9F50\u5207\u74E6\u8BED
-nym=\u5C3C\u4E9A\u59C6\u97E6\u9F50\u6587
-nyn=\u5C3C\u6602\u79D1\u52D2\u6587
-nyo=\u5C3C\u7EA6\u7F57\u6587
-nzi=\u6069\u6D4E\u9A6C\u6587
-oci=\u5965\u897F\u5766\u6587 (1500 \u540E)
-oji=\u5965\u5409\u5E03\u74E6\u6587
-ori=\u6B27\u91CC\u4E9A\u6587
-orm=\u963F\u66FC\u6587
-osa=\u5965\u8428\u683C\u8BED
-oss=\u5965\u585E\u68AF\u6587
-ota=\u5965\u6258\u66FC\u571F\u8033\u5176\u6587
-oto=\u5965\u6258\u7C73\u8BED\u7CFB
-paa=\u5176\u4ED6\u5DF4\u5E03\u4E9A\u6587
-pag=\u90A6\u963F\u897F\u6960\u8BED
-pal=\u5E15\u62C9\u7EF4\u6587
-pam=\u90A6\u677F\u7259\u6587
-pan=\u65C1\u906E\u666E\u6587
-pap=\u5E15\u76AE\u4E9A\u95E8\u6258\u6587
-pau=\u5E15\u52B3\u6587
-peo=\u53E4\u8001\u6CE2\u65AF\u8BED
-per=\u6CE2\u65AF\u6587
-phi=\u5176\u4ED6\u83F2\u5F8B\u5BBE\u8BED\u7CFB
-phn=\u8153\u5C3C\u57FA\u6587
-pli=\u5DF4\u5229\u6587
-pol=\u6CE2\u5170\u6587
-pon=\u6CE2\u7EB3\u4F69\u6587
-por=\u8461\u8404\u7259\u6587
-pra=\u666E\u62C9\u514B\u91CC\u7279\u8BF8\u8BED\u8A00
-pro=\u666E\u7F57\u6587\u65AF\u6587
-pus=\u666E\u4EC0\u56FE\u6587
-que=\u76D6\u4E18\u4E9A\u6587
-raj=\u62C9\u8D3E\u65AF\u5766\u6587
-rap=\u62C9\u5E15\u52AA\u4F0A\u6587
-rar=\u62C9\u7F57\u6C64\u52A0\u6587
-roa=\u5176\u4ED6\u62C9\u4E01\u8BED\u7CFB
-roh=\u7F57\u66FC\u4EC0\u8BED
-rom=\u5409\u666E\u8D5B\u6587
-rum=\u7F57\u9A6C\u5C3C\u4E9A\u6587
-run=\u57FA\u9686\u8FEA\u6587
-rup=\u4E9A\u7F8E\u5C3C\u4E9A\u6587
-rus=\u4FC4\u6587
-sad=\u6563\u8FBE\u7EF4\u6587
-sag=\u6851\u6208\u6587
-sah=\u96C5\u5E93\u7279\u6587
-sai=\u5176\u4ED6\u5357\u7F8E\u5370\u7B2C\u5B89\u6587
-sal=\u8428\u5229\u4EC0\u6587
-sam=\u8428\u739B\u5229\u4E9A\u6587
-san=\u68B5\u6587
-sas=\u8428\u8428\u514B\u6587
-sat=\u6851\u5854\u5229\u6587
-scn=\u897F\u897F\u91CC\u6587
-sco=\u82CF\u683C\u5170\u6587
-sel=\u585E\u5C14\u5E93\u666E\u6587
-sem=\u5176\u4ED6\u95EA\u65CF\u8BED\u7CFB
-sga=\u53E4\u7231\u5C14\u5170\u6587
-sgn=\u624B\u8BED
-shn=\u63B8\u6587
-sid=\u6089\u8FBE\u6469\u6587
-sin=\u8F9B\u54C8\u62C9\u8BED
-sio=\u82CF\u8BED\u8BF8\u8BED\u8A00
-sit=\u6C49\u85CF\u8BF8\u8BED\u8A00
-sla=\u5176\u4ED6\u65AF\u62C9\u592B\u8BED\u7CFB
-slo=\u65AF\u6D1B\u4F10\u514B\u6587
-slv=\u65AF\u6D1B\u6587\u5C3C\u4E9A\u6587
-sma=\u5357\u8428\u7C73\u6587
-sme=\u5317\u6C99\u5BC6\u6587
-smi=\u5176\u4ED6\u8428\u7C73\u6587
-smj=\u5F8B\u52D2\u6B27\u8428\u83AB\u65AF\u8BED
-smn=\u4F0A\u7EB3\u91CC\u8428\u7C73\u8BED
-smo=\u8428\u6469\u4E9A\u6587
-sms=\u65AF\u79D1\u7279\u8428\u7C73\u6587
-sna=\u4FEE\u7EB3\u6587
-snd=\u4FE1\u5FB7\u6587
-snk=\u7D22\u5C3C\u57FA\u6587
-sog=\u53E4\u7C9F\u7279\u8BED
-som=\u7D22\u9A6C\u91CC\u6587
-son=\u6851\u6D77\u6587
-sot=\u7D22\u6258\u8BED, \u5357\u90E8
-spa=\u897F\u73ED\u7259\u6587
-srd=\u6492\u4E01\u6587
-srn=Sranan Tongo (\u6E90\u4E8E\u514B\u91CC\u5965\u5C14\u8BED)
-srp=\u585E\u5C14\u7EF4\u4E9A\u6587
-srr=\u8C22\u5217\u5C14\u6587
-ssa=\u975E\u6D32\u6492\u54C8\u62C9\u6C99\u6F20\u8FB9\u7F18\u5730\u5E26\u8BED\u8A00
-ssw=\u65AF\u74E6\u7279\u6587
-suk=\u82CF\u5E93\u9A6C\u6587
-sun=\u5DFD\u4ED6\u6587
-sus=\u82CF\u82CF\u6587
-sux=\u82CF\u9A6C\u6587
-swa=\u65AF\u74E6\u5E0C\u91CC\u6587
-swe=\u745E\u5178\u6587
-syc=\u53E4\u5178\u53D9\u5229\u4E9A\u8BED
-syr=\u53D9\u5229\u4E9A\u8BED
-tah=\u5854\u5E0C\u63D0\u6587
-tai=\u50A3\u8BED\u8BF8\u8BED\u8A00 (\u5176\u4ED6)
-tam=\u6CF0\u7C73\u5C14\u6587
-tat=\u9791\u977C\u6587
-tel=\u6CF0\u5362\u56FA\u6587
-tem=\u6ED5\u5185\u8BED
-ter=\u7279\u5217\u7EB3\u6587
-tet=\u7279\u5854\u59C6\u6587
-tgk=\u5854\u5409\u514B\u6587
-tgl=\u5854\u52A0\u8DEF\u65CF\u6587
-tha=\u6CF0\u6587
-tib=\u897F\u85CF\u6587
-tig=\u63D0\u683C\u96F7\u6587
-tir=\u63D0\u683C\u91CC\u5C3C\u4E9A\u6587
-tiv=\u8482\u592B\u6587
-tkl=\u6258\u514B\u52B3\u6587
-tlh=\u514B\u6797\u8D21\u6587
-tli=\u7279\u6797\u5409\u7279\u6587
-tmh=\u5854\u9A6C\u5947\u514B\u6587
-tog=\u6C64\u52A0\u6587 (\u5C3C\u4E9A\u8428\u5730\u533A)
-ton=\u6C64\u52A0\u8BED (\u6C64\u52A0\u5C9B)
-tpi=\u6258\u514B\u76AE\u8F9B\u6587
-tsi=\u8482\u59C6\u897F\u4E9A\u6587
-tsn=\u7A81\u5C3C\u65AF\u6587
-tso=\u7279\u677E\u52A0\u6587
-tuk=\u571F\u5E93\u66FC\u6587
-tum=\u901A\u5E03\u5361\u6587
-tup=\u56FE\u76AE\u8BED\u7CFB
-tur=\u571F\u8033\u5176\u6587
-tut=\u963F\u5C14\u6CF0\u8BF8\u8BED\u8A00 (\u5176\u4ED6)
-tvl=\u56FE\u74E6\u5362\u6587
-twi=\u5951\u7EF4\u6587
-tyv=\u56FE\u74E6\u6587
-udm=\u4E4C\u5FB7\u7A46\u5C14\u7279\u6587
-uga=\u4E4C\u52A0\u91CC\u7279\u6587
-uig=\u7EF4\u543E\u5C14\u6587
-ukr=\u4E4C\u514B\u5170\u6587
-umb=\u7FC1\u672C\u675C\u6587
-und=\u672A\u5B9A\u8BED\u79CD
-urd=\u4E4C\u5C14\u90FD\u6587
-uzb=\u4E4C\u5179\u522B\u514B\u6587
-vai=\u74E6\u4F0A\u6587
-ven=\u6587\u8FBE\u6587
-vie=\u8D8A\u5357\u6587
-vol=\u6C83\u62C9\u666E\u514B\u6587
-vot=\u6C83\u63D0\u514B\u6587
-wak=\u74E6\u5361\u4EC0\u8BF8\u8BED\u8A00
-wal=\u74E6\u62C9\u83AB\u6587
-war=\u74E6\u8D56\u6587
-was=\u74E6\u7ECD\u6587
-wel=\u5A01\u5C14\u58EB\u6587
-wen=\u7D22\u5E03\u8BF8\u8BED\u8A00
-wln=\u74E6\u9F99\u6587
-wol=\u6C83\u5C14\u592B\u6587
-xal=\u5361\u5C14\u6885\u514B\u6587
-xho=\u73ED\u56FE\u6587
-yao=\u7476\u65CF\u6587
-yap=\u96C5\u6D66\u6587
-yid=\u4F9D\u5730\u6587
-yor=\u7EA6\u9C81\u5DF4\u6587
-ypk=\u5C24\u76AE\u514B\u8BF8\u8BED\u8A00
-zap=\u8428\u6CE2\u8482\u514B\u6587
-zbl=\u5E03\u5217\u65AF\u7B26\u53F7
-zen=\u6CFD\u7EB3\u52A0\u6587
-zha=\u58EE\u6587
-znd=\u8D5E\u5FB7\u6587
-zul=\u7956\u9C81\u6587
-zun=\u7956\u5C3C\u8BED
-zxx=\u65E0\u8BED\u8A00\u5185\u5BB9
-zza=\u624E\u624E\u8BED
-
-# script names
-# key is ISO 15924 script code
-
-Arab=\u963F\u62C9\u4F2F\u6587
-Armi=\u7687\u5BB6\u4E9A\u62C9\u59C6\u8BED
-Armn=\u4E9A\u7F8E\u5C3C\u4E9A\u6587
-Avst=\u963F\u7EF4\u65AF\u9640\u8BED
-Bali=\u5DF4\u91CC\u6587
-Bamu=\u5DF4\u59C6\u7A46\u8BED
-Bass=\u5DF4\u8428\u74E6\u8D6B\u8BED
-Batk=\u5DF4\u5854\u514B\u6587
-Beng=\u5B5F\u52A0\u62C9\u6587
-Blis=\u5E03\u5217\u65AF\u7B26\u53F7
-Bopo=\u6C49\u8BED\u62FC\u97F3
-Brah=\u5A46\u7F57\u7C73\u6587\u5B57
-Brai=\u5E03\u83B1\u53F6\u76F2\u6587
-Bugi=\u5E03\u5409\u6587
-Buhd=\u5E03\u5E0C\u5FB7\u8BED
-Cakm=\u67E5\u514B\u9A6C\u8BED
-Cans=\u52A0\u62FF\u5927\u571F\u8457\u7EDF\u4E00\u7B26\u53F7\u8BED
-Cari=\u5361\u91CC\u4E9A\u8BED
-Cham=\u5360\u8BED
-Cher=\u5F7B\u7F57\u57FA\u6587
-Cirt=\u8272\u65AF\u6587
-Copt=\u514B\u666E\u7279\u8BED
-Cprt=\u585E\u6D66\u8DEF\u65AF\u8BED
-Cyrl=\u897F\u91CC\u5C14\u8BED
-Cyrs=\u897F\u91CC\u5C14\u6587\u5B57 (\u53E4\u6559\u4F1A\u65AF\u62C9\u592B\u8BED\u7684\u53D8\u4F53)
-Deva=\u68B5\u6587
-Dsrt=\u5FB7\u585E\u83B1\u7279\u6587
-Dupl=Duployan \u901F\u8BB0
-Egyd=\u540E\u671F\u57C3\u53CA\u8BED
-Egyh=\u53E4\u57C3\u53CA\u50E7\u4FA3\u4E66\u5199\u4F53
-Egyp=\u53E4\u57C3\u53CA\u8C61\u5F62\u6587
-Elba=\u7231\u5C14\u5DF4\u6851
-Ethi=\u57C3\u585E\u4FC4\u6BD4\u4E9A\u8BED
-Geok=\u52AA\u65AF\u514B\u80E1\u91CC\u6587
-Geor=\u683C\u9C81\u5409\u4E9A\u6587
-Glag=\u683C\u62C9\u54E5\u91CC\u8BED
-Goth=\u54E5\u7279\u6587
-Gran=\u5404\u5170\u7279\u54C8\u6587\u5B57
-Grek=\u5E0C\u814A\u6587
-Gujr=\u53E4\u52A0\u62C9\u63D0\u6587
-Guru=\u679C\u9C81\u7A46\u5947\u8BED
-Hang=\u97E9\u6587
-Hani=\u6C49\u8BED
-Hano=\u6C49\u5974\u7F57\u8BED
-Hans=\u7B80\u4F53\u4E2D\u6587
-Hant=\u7E41\u4F53\u4E2D\u6587
-Hebr=\u5E0C\u4F2F\u6765\u6587
-Hira=\u5E73\u5047\u540D
-Hmng=\u6768\u677E\u5F55\u82D7\u6587
-Hrkt=\u7247\u5047\u540D\u6216\u5E73\u5047\u540D
-Hung=\u53E4\u5308\u7259\u5229\u8BED
-Inds=\u5370\u5EA6\u6CB3\u6587\u5B57
-Ital=\u53E4\u610F\u5927\u5229\u8BED
-Java=\u722A\u54C7\u6587
-Jpan=\u65E5\u6587
-Kali=\u514B\u8036\u674E\u6587\u5B57
-Kana=\u7247\u5047\u540D
-Khar=\u5361\u7F57\u987B\u63D0\u6587
-Khmr=\u67EC\u57D4\u5BE8\u6587
-Knda=\u57C3\u7EB3\u5FB7\u6587
-Kore=\u97E9\u6587
-Kpel=\u514B\u4F69\u5217\u6587
-Kthi=\u5361\u7F57\u987B\u63D0\u8BED
-Lana=\u5170\u62FF\u8BED
-Laoo=\u8001\u631D\u8BED
-Latf=\u62C9\u4E01\u6587 (\u54E5\u7279\u5F0F\u5B57\u4F53\u53D8\u4F53)
-Latg=\u62C9\u4E01\u6587 (\u76D6\u5C14\u8BED\u53D8\u4F53)
-Latn=\u62C9\u4E01\u6587
-Lepc=\u96F7\u5E03\u67E5\u8BED
-Limb=\u6797\u5E03\u8BED
-Lina=\u7EBF\u5F62\u6587\u5B57 A
-Linb=\u7EBF\u5F62\u6587\u5B57 B
-Lisu=\u5088\u50F3\u8BED
-Loma=\u6D1B\u9A6C\u8BED
-Lyci=\u5229\u897F\u4E9A\u8BED
-Lydi=\u5415\u5E95\u4E9A\u8BED
-Mand=\u66FC\u8FBE\u6587
-Mani=\u6469\u5C3C\u6559\u6587
-Maya=\u739B\u96C5\u5723\u7B26\u6587
-Mend=\u95E8\u8FEA\u6587
-Merc=\u9EA6\u82E5\u63D0\u514B\u6587\u8349\u4F53
-Mero=\u9EA6\u82E5\u63D0\u514B\u6587
-Mlym=\u9A6C\u6765\u4E9A\u62C9\u59C6\u6587
-Mong=\u8499\u53E4\u6587
-Moon=\u6708\u4EAE\u4F53
-Mtei=\u66FC\u5C3C\u666E\u5C14\u8BED
-Mymr=\u7F05\u7538
-Narb=\u53E4\u5317\u963F\u62C9\u4F2F\u8BED
-Nbat=\u7EB3\u5DF4\u6CF0\u8BED
-Nkgb=\u7EB3\u897F\u54E5\u5DF4\u8BED
-Nkoo=N\u2019Ko (\u897F\u975E\u4E66\u9762\u8BED\u8A00)
-Ogam=\u6B27\u7518\u8BED
-Olck=\u6851\u5854\u5229\u6587
-Orkh=\u9102\u5C14\u6D51\u6587
-Orya=\u5965\u8428\u683C\u6587
-Osma=\u5965\u65AF\u66FC\u4E9A\u8BED
-Palm=\u5E15\u5C14\u8FC8\u62C9\u8BED
-Perm=\u53E4\u5F7C\u5C14\u59C6\u8BF8\u8BED
-Phag=\u516B\u601D\u5DF4\u6587
-Phli=\u7891\u94ED\u4F53\u5DF4\u5217\u7EF4\u8BED
-Phlp=\u8BD7\u4F53\u5DF4\u5217\u7EF4\u8BED
-Phlv=\u4E66\u4F53\u5DF4\u5217\u7EF4\u8BED
-Phnx=\u8153\u5C3C\u57FA\u6587
-Plrd=\u82D7\u6587
-Prti=\u7891\u94ED\u4F53\u5E15\u63D0\u4E9A\u8BED
-Rjng=\u62C9\u8BA9\u8BED
-Roro=\u6717\u683C\u6717\u683C\u6587
-Runr=\u53E4\u4EE3\u5317\u6B27\u6587
-Samr=\u6492\u739B\u5229\u4E9A\u8BED
-Sara=\u6C99\u62C9\u5824\u6587
-Sarb=\u53E4\u5357\u963F\u62C9\u4F2F\u8BED
-Saur=\u7D22\u62C9\u4EC0\u7279\u62C9\u8BED
-Sgnw=\u4E66\u5199\u7B26\u53F7
-Shaw=\u8427\u4F2F\u7EB3\u5F0F\u8BED
-Sind=\u4FE1\u5FB7\u6587
-Sinh=\u8F9B\u54C8\u62C9\u8BED
-Sund=\u5DFD\u4ED6\u6587
-Sylo=Syloti Nagri \u4E66\u5199\u4F53
-Syrc=\u53D9\u5229\u4E9A\u6587
-Syre=\u798F\u97F3\u4F53\u53D9\u5229\u4E9A\u6587
-Syrj=\u897F\u53D9\u5229\u4E9A\u8BED
-Syrn=\u4E1C\u53D9\u5229\u4E9A\u8BED
-Tagb=\u5854\u683C\u73ED\u74E6\u8BED
-Tale=\u6CF0\u4E50\u8BED
-Talu=\u65B0\u50A3\u6587
-Taml=\u6CF0\u7C73\u5C14\u6587
-Tavt=\u8D8A\u5357\u50A3\u8BED
-Telu=\u6CF0\u5362\u56FA\u6587
-Teng=\u817E\u683C\u74E6\u6587\u5B57
-Tfng=\u63D0\u975E\u7EB3\u6587
-Tglg=\u5854\u52A0\u8DEF\u65CF\u6587
-Thaa=\u5854\u5B89\u5A1C\u8BED
-Thai=\u6CF0\u6587
-Tibt=\u897F\u85CF\u6587
-Ugar=\u4E4C\u52A0\u91CC\u7279\u6587
-Vaii=\u74E6\u4F9D\u8BED
-Visp=\u53EF\u89C1\u8BED\u8A00
-Wara=Warang Citi
-Xpeo=\u53E4\u6CE2\u65AF\u8BED
-Xsux=\u82CF\u7F8E\u5C14-\u963F\u5361\u5FB7\u6954\u5F62\u6587\u5B57
-Yiii=\u5F5D\u8BED
-Zinh=\u9057\u4F20\u5B66\u672F\u8BED
-Zmth=\u6570\u5B66\u8BB0\u53F7
-Zsym=\u7B26\u53F7
-Zxxx=\u64A4\u9500\u5199\u5165
-Zyyy=\u901A\u7528
-Zzzz=\u811A\u672C\u672A\u77E5\u6216\u8005\u65E0\u6548
-
-# country names
-# key is ISO 3166 country code
-
-AD=\u5b89\u9053\u5c14
-AE=\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd
-AF=\u963f\u5bcc\u6c57
-AG=\u5b89\u63d0\u74dc\u548c\u5df4\u5e03\u8fbe
-AI=\u5b89\u572d\u62c9
-AL=\u963f\u5c14\u5df4\u5c3c\u4e9a
-AM=\u4e9a\u7f8e\u5c3c\u4e9a
-AN=\u8377\u5c5e\u5b89\u7684\u5217\u65af\u7fa4\u5c9b
-AO=\u5b89\u54e5\u62c9
-AQ=\u5357\u6781\u6d32
-AR=\u963f\u6839\u5ef7
-AS=\u4e1c\u8428\u6469\u4e9a
-AT=\u5965\u5730\u5229
-AU=\u6fb3\u5927\u5229\u4e9a
-AW=\u963f\u9c81\u5df4
-AX=\u5965\u5170\u7fa4\u5c9b
-AZ=\u963f\u585e\u62dc\u7586
-BA=\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u5c71\u5171\u548c\u56fd
-BB=\u5df4\u5df4\u591a\u65af
-BD=\u5b5f\u52a0\u62c9
-BE=\u6bd4\u5229\u65f6
-BF=\u5e03\u57fa\u7eb3\u6cd5\u7d22
-BG=\u4fdd\u52a0\u5229\u4e9a
-BH=\u5df4\u6797
-BI=\u5e03\u9686\u8fea
-BJ=\u8d1d\u5b81
-BL=\u5723\u5DF4\u6CF0\u52D2\u7C73\u5C9B
-BM=\u767e\u6155\u5927
-BN=\u6587\u83b1
-BO=\u73bb\u5229\u7ef4\u4e9a
-BQ=\u535A\u5948\u5C14\u5C9B, \u5723\u5C24\u65AF\u7279\u6B47\u65AF\u5C9B\u548C\u8428\u5DF4\u5C9B
-BR=\u5df4\u897f
-BS=\u5df4\u54c8\u9a6c
-BT=\u4e0d\u4e39
-BV=\u5e03\u97e6\u5c9b
-BW=\u535a\u8328\u74e6\u7eb3
-BY=\u767d\u4fc4\u7f57\u65af
-BZ=\u4f2f\u91cc\u5179
-CA=\u52a0\u62ff\u5927
-CC=\u79d1\u5e93\u65af\u7fa4\u5c9b
-CD=\u521a\u679c\u6c11\u4e3b\u5171\u548c\u56fd
-CF=\u4e2d\u975e\u5171\u548c\u56fd
-CG=\u521a\u679c
-CH=\u745e\u58eb
-CI=\u8c61\u7259\u6d77\u5cb8
-CK=\u5e93\u514b\u7fa4\u5c9b
-CL=\u667a\u5229
-CM=\u5580\u9ea6\u9686
-CN=\u4e2d\u56fd
-CO=\u54e5\u4f26\u6bd4\u4e9a
-CR=\u54e5\u65af\u8fbe\u9ece\u52a0
-CS=\u585e\u5c14\u7ef4\u4e9a\u53ca\u9ed1\u5c71
-CU=\u53e4\u5df4
-CV=\u4f5b\u5f97\u89d2
-CW=\u5E93\u62C9\u7D22\u5C9B
-CX=\u5723\u8bde\u5c9b
-CY=\u585e\u6d66\u8def\u65af
-CZ=\u6377\u514b\u5171\u548c\u56fd
-DE=\u5fb7\u56fd
-DJ=\u5409\u5e03\u63d0
-DK=\u4e39\u9ea6
-DM=\u591a\u7c73\u5c3c\u52a0\u8054\u90a6
-DO=\u591a\u7c73\u5c3c\u52a0\u5171\u548c\u56fd
-DZ=\u963f\u5c14\u53ca\u5229\u4e9a
-EC=\u5384\u74dc\u591a\u5c14
-EE=\u7231\u6c99\u5c3c\u4e9a
-EG=\u57c3\u53ca
-EH=\u897f\u6492\u54c8\u62c9
-ER=\u5384\u91cc\u7279\u5c3c\u4e9a
-ES=\u897f\u73ed\u7259
-ET=\u57c3\u585e\u4fc4\u6bd4\u4e9a
-FI=\u82ac\u5170
-FJ=\u6590\u6d4e
-FK=\u5bcc\u514b\u5170\u7fa4\u5c9b
-FM=\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a
-FO=\u6cd5\u7f57\u7fa4\u5c9b
-FR=\u6cd5\u56fd
-GA=\u52a0\u84ec
-GB=\u82f1\u56fd
-GD=\u683c\u6797\u7eb3\u8fbe
-GE=\u683c\u9c81\u5409\u4e9a
-GF=\u6cd5\u5c5e\u572d\u4e9a\u90a3
-GG=\u683C\u6069\u897F\u5C9B
-GH=\u52a0\u7eb3
-GI=\u76f4\u5e03\u7f57\u9640
-GL=\u683c\u9675\u5170
-GM=\u5188\u6bd4\u4e9a
-GN=\u51e0\u5185\u4e9a
-GP=\u74dc\u5fb7\u7f57\u666e\u5c9b
-GQ=\u8d64\u9053\u51e0\u5185\u4e9a
-GR=\u5e0c\u814a
-GS=\u5357\u4e54\u6cbb\u4e9a\u5c9b\u548c\u5357\u6851\u5fb7\u97e6\u5947\u5c9b
-GT=\u5371\u5730\u9a6c\u62c9
-GU=\u5173\u5c9b
-GW=\u51e0\u5185\u4e9a\u6bd4\u7ecd\u5171\u548c\u56fd
-GY=\u572d\u4e9a\u90a3
-HK=\u9999\u6e2f
-HM=\u8d6b\u5fb7\u548c\u9ea6\u514b\u5510\u7eb3\u7fa4\u5c9b
-HN=\u6d2a\u90fd\u62c9\u65af
-HR=\u514b\u7f57\u5730\u4e9a
-HT=\u6d77\u5730
-HU=\u5308\u7259\u5229
-ID=\u5370\u5ea6\u5c3c\u897f\u4e9a
-IE=\u7231\u5c14\u5170
-IL=\u4ee5\u8272\u5217
-IM=\u66FC\u5C9B
-IN=\u5370\u5ea6
-IO=\u82f1\u5c5e\u5370\u5ea6\u6d0b\u9886\u5730
-IQ=\u4f0a\u62c9\u514b
-IR=\u4f0a\u6717
-IS=\u51b0\u5c9b
-IT=\u610f\u5927\u5229
-JE=\u6CFD\u897F\u5C9B
-JM=\u7259\u4e70\u52a0
-JO=\u7ea6\u65e6
-JP=\u65e5\u672c
-KE=\u80af\u5c3c\u4e9a
-KG=\u5409\u5c14\u5409\u514b\u65af\u5766
-KH=\u67ec\u57d4\u5be8
-KI=\u57fa\u91cc\u5df4\u65af
-KM=\u79d1\u6469\u7f57
-KN=\u5723\u57fa\u8328\u548c\u5c3c\u7ef4\u65af
-KP=\u671d\u9c9c
-KR=\u97e9\u56fd
-KW=\u79d1\u5a01\u7279
-KY=\u5f00\u66fc\u7fa4\u5c9b
-KZ=\u54c8\u8428\u514b\u65af\u5766
-LA=\u8001\u631d
-LB=\u9ece\u5df4\u5ae9
-LC=\u5723\u5362\u897f\u4e9a
-LI=\u5217\u652f\u6566\u58eb\u767b
-LK=\u65af\u91cc\u5170\u5361
-LR=\u5229\u6bd4\u91cc\u4e9a
-LS=\u83b1\u7d22\u6258
-LT=\u7acb\u9676\u5b9b
-LU=\u5362\u68ee\u5821
-LV=\u62c9\u8131\u7ef4\u4e9a
-LY=\u5229\u6bd4\u4e9a
-MA=\u6469\u6d1b\u54e5
-MC=\u6469\u7eb3\u54e5
-MD=\u6469\u5c14\u591a\u74e6
-ME=\u9ed1\u5c71
-MF=\u5723\u9A6C\u4E01
-MG=\u9a6c\u8fbe\u52a0\u65af\u52a0
-MH=\u9a6c\u7ecd\u5c14\u7fa4\u5c9b
-MK=\u9a6c\u5176\u987f\u738b\u56fd
-ML=\u9a6c\u91cc
-MM=\u7f05\u7538
-MN=\u8499\u53e4
-MO=\u6fb3\u95e8\u7279\u533a
-MP=\u7f8e\u5c5e\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b
-MQ=\u9a6c\u63d0\u5c3c\u514b\u5c9b
-MR=\u6bdb\u91cc\u5854\u5c3c\u4e9a
-MS=\u8499\u7279\u585e\u62c9\u7fa4\u5c9b
-MT=\u9a6c\u8033\u4ed6
-MU=\u6bdb\u91cc\u6c42\u65af
-MV=\u9a6c\u5c14\u4ee3\u592b
-MW=\u9a6c\u62c9\u7ef4
-MX=\u58a8\u897f\u54e5
-MY=\u9a6c\u6765\u897f\u4e9a
-MZ=\u83ab\u6851\u6bd4\u514b
-NA=\u7eb3\u7c73\u6bd4\u4e9a
-NC=\u65b0\u514b\u91cc\u591a\u5c3c\u4e9a\u7fa4\u5c9b
-NE=\u5c3c\u65e5\u5c14
-NF=\u8bfa\u798f\u514b\u5c9b
-NG=\u5c3c\u65e5\u5229\u4e9a
-NI=\u5c3c\u52a0\u62c9\u74dc
-NL=\u8377\u5170
-NO=\u632a\u5a01
-NP=\u5c3c\u6cca\u5c14
-NR=\u7459\u9c81
-NU=\u7ebd\u57c3\u5c9b
-NZ=\u65b0\u897f\u5170
-OM=\u963f\u66fc
-PA=\u5df4\u62ff\u9a6c
-PE=\u79d8\u9c81
-PF=\u6cd5\u5c5e\u73bb\u5229\u5c3c\u897f\u4e9a
-PG=\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a
-PH=\u83f2\u5f8b\u5bbe
-PK=\u5df4\u57fa\u65af\u5766
-PL=\u6ce2\u5170
-PM=\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686\u7fa4\u5c9b
-PN=\u76ae\u7279\u514b\u6069\u5c9b
-PR=\u6ce2\u591a\u9ece\u54e5
-PS=\u5df4\u52d2\u65af\u5766
-PT=\u8461\u8404\u7259
-PW=\u5e15\u52b3
-PY=\u5df4\u62c9\u572d
-QA=\u5361\u5854\u5c14
-RE=\u7559\u5c3c\u6c6a\u5c9b
-RO=\u7f57\u9a6c\u5c3c\u4e9a
-RS=\u585e\u5c14\u7ef4\u4e9a
-RU=\u4fc4\u7f57\u65af
-RW=\u5362\u65fa\u8fbe
-SA=\u6c99\u7279\u963f\u62c9\u4f2f
-SB=\u6240\u7f57\u95e8\u7fa4\u5c9b
-SC=\u585e\u820c\u5c14\u7fa4\u5c9b
-SD=\u82cf\u4e39
-SE=\u745e\u5178
-SG=\u65b0\u52a0\u5761
-SH=\u5723\u8d6b\u52d2\u62ff\u5c9b
-SI=\u65af\u6d1b\u6587\u5c3c\u4e9a
-SJ=\u65af\u74e6\u5c14\u5df4\u7279\u548c\u626c\u9a6c\u5ef6\u5c9b
-SK=\u65af\u6d1b\u4f10\u514b
-SL=\u585e\u62c9\u91cc\u6602
-SM=\u5723\u9a6c\u529b\u8bfa
-SN=\u585e\u5185\u52a0\u5c14
-SO=\u7d22\u9a6c\u91cc
-SR=\u82cf\u91cc\u5357
-ST=\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4
-SV=\u8428\u5c14\u74e6\u591a
-SX=\u8377\u5C5E\u5723\u9A6C\u4E01\u5C9B
-SY=\u53d9\u5229\u4e9a
-SZ=\u65af\u5a01\u58eb\u5170
-TC=\u7279\u514b\u65af\u7fa4\u5c9b\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b
-TD=\u4e4d\u5f97
-TF=\u6cd5\u5c5e\u5357\u7279\u7acb\u5c3c\u8fbe
-TG=\u591a\u54e5
-TH=\u6cf0\u56fd
-TJ=\u5854\u5409\u514b\u65af\u5766
-TK=\u8054\u5408\u7fa4\u5c9b
-TL=\u4e1c\u5e1d\u6c76
-TM=\u571f\u5e93\u66fc\u65af\u5766
-TN=\u7a81\u5c3c\u65af
-TO=\u6c64\u52a0
-TR=\u571f\u8033\u5176
-TT=\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5
-TV=\u56fe\u74e6\u5362
-TW=\u53f0\u6e7e\u5730\u533a
-TZ=\u5766\u6851\u5c3c\u4e9a
-UA=\u4e4c\u514b\u5170
-UG=\u4e4c\u5e72\u8fbe
-UM=\u7f8e\u5c5e\u5c0f\u5965\u7279\u5170\u7fa4\u5c9b
-US=\u7f8e\u56fd
-UY=\u4e4c\u62c9\u572d
-UZ=\u4e4c\u5179\u522b\u514b\u65af\u5766
-VA=\u68b5\u8482\u5188
-VC=\u5723\u6587\u68ee\u7279\u548c\u683c\u6797\u7eb3\u4e01\u65af
-VE=\u59d4\u5185\u745e\u62c9
-VG=\u82f1\u5c5e\u7ef4\u4eac\u7fa4\u5c9b
-VI=\u7f8e\u5c5e\u7ef4\u4eac\u7fa4\u5c9b
-VN=\u8d8a\u5357
-VU=\u74e6\u52aa\u963f\u56fe
-WF=\u74e6\u5229\u65af\u7fa4\u5c9b\u548c\u5bcc\u56fe\u7eb3\u7fa4\u5c9b
-WS=\u4e1c\u8428\u6469\u4e9a
-YE=\u4e5f\u95e8
-YT=\u9a6c\u7ea6\u7279\u5c9b
-ZA=\u5357\u975e
-ZM=\u8d5e\u6bd4\u4e9a
-ZW=\u6d25\u5df4\u5e03\u97e6
-
-# territory names
-# key is UN M.49 country and area code
-
-001=\u4E16\u754C
-002=\u975E\u6D32
-003=\u5317\u7F8E\u6D32
-005=\u5357\u7F8E\u6D32
-009=\u5927\u6D0B\u6D32
-011=\u897F\u975E
-013=\u4E2D\u7F8E\u6D32
-014=\u4E1C\u975E
-015=\u5317\u975E
-017=\u4E2D\u975E
-018=\u5357\u90E8\u975E\u6D32
-019=\u7F8E\u6D32
-021=\u7F8E\u6D32\u5317\u90E8
-029=\u52A0\u52D2\u6BD4\u6D77
-030=\u4E1C\u4E9A
-034=\u5357\u4E9A
-035=\u4E1C\u5357\u4E9A
-039=\u5357\u6B27
-053=\u6FB3\u5927\u5229\u4E9A\u548C\u65B0\u897F\u5170
-054=\u7F8E\u62C9\u5C3C\u897F\u4E9A
-057=\u5BC6\u514B\u7F57\u5C3C\u897F\u4E9A\u5730\u533A
-061=\u6CE2\u5229\u5C3C\u897F\u4E9A
-142=\u4E9A\u6D32
-143=\u4E2D\u4E9A
-145=\u897F\u4E9A
-150=\u6B27\u6D32
-151=\u4E1C\u6B27
-154=\u5317\u6B27
-155=\u897F\u6B27
-419=\u62C9\u4E01\u7F8E\u6D32\u548C\u52A0\u52D2\u6BD4\u6D77
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_SG.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_SG.properties
deleted file mode 100755
index d3733f4..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_SG.properties
+++ /dev/null
@@ -1,135 +0,0 @@
-#
-# Copyright (c) 2005, 2007, Oracle and/or its affiliates. All rights reserved.
-#
-
-#
-# COPYRIGHT AND PERMISSION NOTICE
-#
-# Copyright (C) 1991-2007 Unicode, Inc. All rights reserved.
-# Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of the Unicode data files and any associated documentation (the "Data
-# Files") or Unicode software and any associated documentation (the
-# "Software") to deal in the Data Files or Software without restriction,
-# including without limitation the rights to use, copy, modify, merge,
-# publish, distribute, and/or sell copies of the Data Files or Software, and
-# to permit persons to whom the Data Files or Software are furnished to do
-# so, provided that (a) the above copyright notice(s) and this permission
-# notice appear with all copies of the Data Files or Software, (b) both the
-# above copyright notice(s) and this permission notice appear in associated
-# documentation, and (c) there is clear notice in each modified Data File or
-# in the Software as well as in the documentation associated with the Data
-# File(s) or Software that the data or software has been modified.
-#
-# THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
-# THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
-# INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
-# CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THE DATA FILES OR SOFTWARE.
-#
-# Except as contained in this notice, the name of a copyright holder shall not
-# be used in advertising or otherwise to promote the sale, use or other
-# dealings in these Data Files or Software without prior written
-# authorization of the copyright holder.
-#
- 
-# Generated automatically from the Common Locale Data Repository. DO NOT EDIT!
-
-ae=\u963f\u7ef4\u65af\u5854\u6587
-ak=\u963f\u80af\u6587
-bo=\u85cf\u6587
-cr=\u514b\u91cc\u65cf\u6587
-cu=\u5b97\u6559\u65af\u62c9\u592b\u6587
-ff=\u592b\u62c9\u6587
-gd=\u82cf\u683c\u5170\u76d6\u5c14\u6587
-gv=\u9a6c\u6069\u5c9b\u6587
-ho=\u5e0c\u91cc\u83ab\u56fe\u6587
-ia=\u56fd\u9645\u6587 A
-ie=\u56fd\u9645\u6587 E
-ig=\u4f0a\u683c\u535a\u6587
-ii=\u56db\u5ddd\u8bdd
-iu=\u4f0a\u52aa\u4f0a\u7279\u6587
-kj=\u5bbd\u4e9a\u739b\u6587
-kn=\u574e\u7eb3\u8fbe\u6587
-ko=\u97e9\u6587
-kw=\u51ef\u5c14\u7279\u6587
-lg=\u5362\u5e72\u8fbe\u6587
-li=\u6dcb\u5e03\u5c14\u5409\u6587
-lu=\u9c81\u5df4\u52a0\u4e39\u52a0\u6587
-lv=\u62c9\u8131\u7ef4\u4e9a\u6587
-nd=\u5317\u6069\u5fb7\u8d1d\u52d2\u6587
-nr=\u5357\u90e8\u6069\u5fb7\u8d1d\u52d2\u6587
-ny=\u5c3c\u626c\u8d3e\u6587\uff1b\u9f50\u5207\u74e6\u6587\uff1b\u5207\u74e6\u6587
-oc=\u5965\u514b\u897f\u5510\u6587(1500\u4ee5\u540e)
-om=\u5965\u6d1b\u83ab\u6587
-rm=\u5217\u6258\uff0d\u7f57\u66fc\u6587
-sc=\u8428\u4e01\u6587
-sd=\u4fe1\u5fb7\u6587
-se=\u5317\u8428\u7c73\u6587
-sn=\u7ecd\u7eb3\u6587
-ss=\u65af\u74e6\u7279\u6587
-su=\u5dfd\u4ed6\u6587
-tl=\u4ed6\u52a0\u7984\u6587
-tn=\u585e\u8328\u74e6\u7eb3\u6587
-ts=\u5b97\u52a0\u6587
-tt=\u5854\u5854\u5c14\u6587
-tw=\u7279\u5a01\u6587
-ty=\u5854\u897f\u63d0\u6587
-wa=\u74e6\u9686\u6587
-wo=\u6c83\u6d1b\u592b\u6587
-xh=\u79d1\u8428\u6587
-za=\u58ee\u8bed
-AS=\u7f8e\u5c5e\u8428\u6469\u4e9a
-AU=\u6fb3\u6d32
-BA=\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u585e\u54e5\u7ef4\u90a3
-BD=\u5b5f\u52a0\u62c9\u56fd
-BV=\u5e03\u7ef4\u7279\u5c9b
-BZ=\u4f2f\u5229\u5179
-CC=\u79d1\u79d1\u65af\uff08\u57fa\u6797\uff09\u7fa4\u5c9b
-CD=\u521a\u679c\uff08\u91d1\uff09
-CG=\u521a\u679c\uff08\u5e03\uff09
-CZ=\u6377\u514b
-DM=\u591a\u7c73\u5c3c\u52a0
-ER=\u5384\u7acb\u7279\u91cc\u4e9a
-FK=\u798f\u514b\u5170\u7fa4\u5c9b
-FM=\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a\u8054\u90a6
-GS=\u5357\u4f50\u6cbb\u4e9a\u548c\u5357\u4e09\u660e\u6cbb\u7fa4\u5c9b
-GW=\u51e0\u5185\u4e9a\u6bd4\u7ecd
-HK=\u4e2d\u56fd\u9999\u6e2f\u7279\u522b\u884c\u653f\u533a
-HM=\u8d6b\u5fb7\u4e0e\u9ea6\u514b\u5510\u7eb3\u7fa4\u5c9b
-ID=\u5370\u5c3c
-KG=\u5409\u5c14\u5409\u65af\u65af\u5766
-KP=\u5317\u671d\u9c9c
-KR=\u5357\u97e9
-LA=\u8001\u631d\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd
-MK=\u9a6c\u5176\u987f
-MO=\u4e2d\u56fd\u6fb3\u95e8\u7279\u522b\u884c\u653f\u533a
-MP=\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b
-MQ=\u9a6c\u63d0\u5c3c\u514b\u7fa4\u5c9b
-MS=\u8499\u585e\u62c9\u7279\u7fa4\u5c9b
-NC=\u65b0\u5361\u91cc\u591a\u5c3c\u4e9a
-NU=\u7ebd\u57c3
-NZ=\u7ebd\u897f\u5170
-PF=\u6cd5\u5c5e\u6ce2\u5229\u5c3c\u897f\u4e9a
-PM=\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686
-PN=\u76ae\u7279\u51ef\u6069
-PR=\u6ce2\u591a\u9ece\u5404
-PS=\u5df4\u52d2\u65af\u5766\u9886\u571f
-RE=\u7559\u5c3c\u6c6a
-SA=\u6c99\u5730\u963f\u62c9\u4f2f
-SH=\u5723\u8d6b\u52d2\u62ff
-SJ=\u65af\u74e6\u5c14\u5df4\u7279\u548c\u626c\u9a6c\u5ef6
-SL=\u585e\u62c9\u5229\u6602
-TC=\u7279\u514b\u65af\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b
-TF=\u6cd5\u5c5e\u5357\u90e8\u9886\u571f
-TK=\u6258\u514b\u52b3
-TW=\u53f0\u6e7e
-UM=\u7f8e\u56fd\u8fb9\u8fdc\u5c0f\u5c9b
-WF=\u74e6\u5229\u65af\u548c\u5bcc\u56fe\u7eb3
-WS=\u8428\u6469\u4e9a
-YT=\u9a6c\u7ea6\u7279
diff --git a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_TW.properties b/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_TW.properties
deleted file mode 100755
index 9d825ab..0000000
--- a/ojluni/src/main/java/sun/util/resources/LocaleNames_zh_TW.properties
+++ /dev/null
@@ -1,1153 +0,0 @@
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# This code is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License version 2 only, as
-# published by the Free Software Foundation.  Oracle designates this
-# particular file as subject to the "Classpath" exception as provided
-# by Oracle in the LICENSE file that accompanied this code.
-#
-# This code is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-# version 2 for more details (a copy is included in the LICENSE file that
-# accompanied this code).
-#
-# You should have received a copy of the GNU General Public License version
-# 2 along with this work; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
-# or visit www.oracle.com if you need additional information or have any
-# questions.
-#
-
-# (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
-# (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
-#
-# The original version of this source code and documentation
-# is copyrighted and owned by Taligent, Inc., a wholly-owned
-# subsidiary of IBM. These materials are provided under terms
-# of a License Agreement between Taligent and Sun. This technology
-# is protected by multiple US and International patents.
-#
-# This notice and attribution to Taligent may not be removed.
-# Taligent is a registered trademark of Taligent, Inc.
-
-
-# language names
-# key is ISO 639 language code
-
-aa=\u963f\u6cd5\u6587
-ab=\u963f\u5e03\u54c8\u897f\u4e9e\u6587
-ae=\u963f\u672a\u65af\u5854\u6587
-af=\u5357\u975e\u8377\u862d\u6587
-ak=\u963f\u5bd2\u6587
-am=\u8863\u7d22\u6bd4\u4e9e\u6587
-an=\u4e9e\u62c9\u5ca1\u6587
-ar=\u963f\u62c9\u4f2f\u6587
-as=\u963f\u85a9\u59c6\u6587
-av=\u963f\u74e6\u96f7\u6587
-ay=\u4e9e\u6469\u62c9\u6587
-az=\u4e9e\u585e\u62dc\u7136\u6587
-ba=\u5df4\u4ec0\u5580\u723e\u6587
-be=\u767d\u4fc4\u7f85\u65af\u6587
-bg=\u4fdd\u52a0\u5229\u4e9e\u6587
-bh=\u6bd4\u54c8\u723e\u6587
-bi=\u6bd4\u65af\u62c9\u99ac\u6587
-bm=\u73ed\u5df4\u62c9\u6587
-bn=\u5b5f\u52a0\u62c9\u6587
-bo=\u897f\u85cf\u6587
-br=\u4e0d\u5217\u5854\u5c3c\u6587
-bs=\u6ce2\u58eb\u5c3c\u4e9e\u6587
-ca=\u5609\u6cf0\u7f85\u5c3c\u4e9e\u6587
-ce=\u8d64\u6b3d\u6587
-ch=\u67e5\u6469\u6d1b\u6587
-co=\u79d1\u897f\u5609\u6587
-cr=\u514b\u91cc\u6587
-cs=\u6377\u514b\u6587
-cu=\u6559\u6703\u65af\u62c9\u592b\u6587
-cv=\u695a\u74e6\u58eb\u6587
-cy=\u5a01\u723e\u65af\u6587
-da=\u4e39\u9ea5\u6587
-de=\u5fb7\u6587
-dv=\u8fea\u7dad\u897f\u6587
-dz=\u4e0d\u4e39\u6587
-ee=\u57c3\u7dad\u6587
-el=\u5e0c\u81d8\u6587
-en=\u82f1\u6587
-eo=\u4e16\u754c\u6587
-es=\u897f\u73ed\u7259\u6587
-et=\u611b\u6c99\u5c3c\u4e9e\u6587
-eu=\u5df4\u65af\u514b\u6587
-fa=\u6ce2\u65af\u6587
-ff=\u5bcc\u62c9\u6587
-fi=\u82ac\u862d\u6587
-fj=\u6590\u6fdf\u6587
-fo=\u6cd5\u7f85\u6587
-fr=\u6cd5\u6587
-fy=\u5f17\u5229\u7136\u6587
-ga=\u611b\u723e\u862d\u6587
-gd=\u8607\u683c\u862d\u84cb\u723e\u65b9\u8a00
-gl=\u52a0\u91cc\u897f\u4e9e\u6587
-gn=\u74dc\u62c9\u5c3c\u6587
-gu=\u53e4\u5409\u62c9\u7279\u6587
-gv=\u66fc\u5cf6\u6587
-ha=\u8c6a\u85a9\u6587
-he=\u5e0c\u4f2f\u4f86\u6587
-hi=\u5317\u5370\u5ea6\u6587
-ho=\u65b0\u91cc\u6728\u6258\u6587
-hr=\u514b\u7f85\u57c3\u897f\u4e9e\u6587
-ht=\u6d77\u5730\u6587
-hu=\u5308\u7259\u5229\u6587
-hy=\u4e9e\u7f8e\u5c3c\u4e9e\u6587
-hz=\u8d6b\u96f7\u7f85\u6587
-ia=\u4eba\u5de5\u570b\u969b\u6587
-id=\u5370\u5c3c\u6587
-ie=\u4eba\u5de5\u570b\u969b\u6587
-ig=\u4f0a\u5e03\u6587
-ii=\u56db\u5ddd\u5937\u6587
-ik=\u4f9d\u5974\u76ae\u7dad\u514b\u6587
-in=\u5370\u5c3c\u6587
-io=\u4f0a\u591a\u6587
-is=\u51b0\u5cf6\u6587
-it=\u7fa9\u5927\u5229\u6587
-iu=\u611b\u65af\u57fa\u6469\u6587
-iw=\u5e0c\u4f2f\u4f86\u6587
-ja=\u65e5\u6587
-ji=\u610f\u7b2c\u7dd2\u6587
-jv=\u722a\u54c7\u6587
-ka=\u55ac\u6cbb\u4e9e\u6587
-kg= \u525b\u679c\u6587
-ki=\u57fa\u5eab\u7336\u6587
-kj=\u5361\u7063\u4e9e\u99ac
-kk=\u54c8\u85a9\u514b\u6587
-kl=\u683c\u9675\u862d\u6587
-km=\u67ec\u57d4\u5be8\u6587
-kn=\u574e\u90a3\u9054\u6587
-ko=\u97d3\u6587
-kr=\u5361\u52aa\u91cc\u6587
-ks=\u5580\u4ec0\u7c73\u723e\u6587
-ku=\u5eab\u5fb7\u6587
-kv=\u79d1\u5bc6\u6587
-kw=\u5eb7\u74e6\u8033\u6587
-ky=\u5409\u723e\u5409\u65af\u6587
-la=\u62c9\u4e01\u6587
-lb=\u76e7\u68ee\u5821\u6587
-lg=\u5e72\u9054\u6587
-li=\u6797\u5821\u6587
-ln=\u9675\u52a0\u62c9\u6587
-lo=\u5bee\u6587
-lt=\u7acb\u9676\u5b9b\u6587
-lu=\u76e7\u5df4-\u52a0\u4e39\u52a0\u6587
-lv=\u62c9\u812b\u7dad\u4e9e\u6587 (\u5217\u7279\u6587)
-mg=\u99ac\u62c9\u52a0\u897f\u6587
-mh=\u99ac\u7d39\u723e\u7fa4\u5cf6\u6587
-mi=\u6bdb\u5229\u6587
-mk=\u99ac\u5176\u9813\u6587
-ml=\u99ac\u4f86\u4e9e\u62c9\u59c6\u6587
-mn=\u8499\u53e4\u6587
-mo=\u6469\u723e\u9054\u7dad\u4e9e\u6587
-mr=\u99ac\u62c9\u5730\u6587
-ms=\u99ac\u4f86\u6587
-mt=\u99ac\u723e\u4ed6\u6587
-my=\u7dec\u7538\u6587
-na=\u8afe\u9b6f\u6587
-nb=\u632a\u5a01\u6ce2\u514b\u9ed8\u723e\u6587
-nd=\u5317\u6069\u5fb7\u8c9d\u52d2\u6587
-ne=\u5c3c\u6cca\u723e\u6587
-ng=\u6069\u6771\u52a0\u6587
-nl=\u8377\u862d\u6587
-nn=\u632a\u5a01(\u8010\u8afe\u65af\u514b\u6587
-no=\u632a\u5a01\u6587
-nr=\u5357\u6069\u5fb7\u8c9d\u52d2\u6587
-nv=\u7d0d\u74e6\u8377\u6587
-ny=\u5c3c\u63da\u8cc8\u6587
-oc=\u5967\u897f\u5766\u6587
-oj=\u5967\u6770\u5e03\u97cb\u6587
-om=\u5967\u7f85\u8499\u6587
-or=\u6b50\u5229\u4e9e\u6587
-os=\u5967\u585e\u68af\u6587
-pa=\u65c1\u906e\u666e\u6587
-pi=\u5e15\u91cc\u6587
-pl=\u6ce2\u862d\u6587
-ps=\u666e\u4ec0\u5716\u6587
-pt=\u8461\u8404\u7259\u6587
-qu=\u84cb\u695a\u74e6\u6587
-rm=\u91cc\u6258\u7f85\u66fc\u65af\u6587
-rn=\u79d1\u9686\u5730\u6587
-ro=\u7f85\u99ac\u5c3c\u4e9e\u6587
-ru=\u4fc4\u6587
-rw=\u91d1\u63da\u842c\u7b54\u6587
-sa=\u68b5\u6587\u5b57\u6bcd
-sc=\u85a9\u4e01\u5c3c\u4e9e\u6587
-sd=\u4fe1\u5fb7\u6587
-se=\u5317\u6c99\u5bc6\u6587
-sg=\u6851\u683c\u9b6f\u6587
-si=\u932b\u862d\u6587
-sk=\u65af\u6d1b\u4f10\u514b\u6587
-sl=\u65af\u62c9\u7dad\u5c3c\u4e9e\u6587
-sm=\u85a9\u6469\u4e9e\u6587
-sn=\u980c\u54c8\u6587
-so=\u7d22\u99ac\u5229\u6587
-sq=\u963f\u723e\u5df4\u5c3c\u4e9e\u6587
-sr=\u585e\u723e\u7dad\u4e9e\u6587
-ss=\u897f\u65af\u74e6\u63d0\u6587
-st=\u8cf4\u7d22\u6258\u6587
-su=\u5dfd\u4e39\u6587
-sv=\u745e\u5178\u6587
-sw=\u53f2\u74e6\u897f\u91cc\u6587
-ta=\u5766\u7c73\u723e\u6587
-te=\u7279\u62c9\u53e4\u6587
-tg=\u5854\u5409\u514b\u6587
-th=\u6cf0\u6587
-ti=\u63d0\u683c\u5229\u5c3c\u4e9e\u6587
-tk=\u571f\u5eab\u66fc\u6587
-tl=\u5854\u52a0\u62c9\u65cf\u6587
-tn=\u585e\u8332\u74e6\u7d0d\u6587
-to=\u6771\u52a0\u6587
-tr=\u571f\u8033\u5176\u6587
-ts=\u980c\u52a0\u6587
-tt=\u97c3\u977c\u6587
-tw=\u5951\u7dad\u6587
-ty=\u5927\u6eaa\u5730\u6587
-ug=\u7dad\u543e\u723e\u6587
-uk=\u70cf\u514b\u862d\u6587
-ur=\u70cf\u90fd\u6587
-uz=\u70cf\u8332\u5225\u514b\u6587
-ve=\u6587\u9054\u6587
-vi=\u8d8a\u5357\u6587
-vo=\u6c83\u62c9\u666e\u514b\u6587
-wa=\u83ef\u9686\u6587
-wo=\u6c83\u6d1b\u592b\u6587
-xh=\u5ed3\u85a9\u6587
-yi=\u610f\u7b2c\u7dd2\u6587
-yo=\u512a\u9b6f\u5df4\u6587
-za=\u58ef\u6587
-zh=\u4e2d\u6587
-zu=\u7956\u9b6f\u6587
-
-# key is ISO 639.2 language code
-aar=\u963F\u6CD5\u6587
-abk=\u963F\u5E03\u54C8\u897F\u4E9E\u6587
-ace=\u4E9E\u9F4A\u6587
-ach=\u963F\u50D1\u5229\u6587
-ada=\u963F\u7576\u83AB\u6587
-ady=\u963F\u8FEA\u5404\u6587
-afa=\u4E9E\u975E\u8A9E\u7CFB
-afh=\u963F\u5F17\u91CC\u5E0C\u5229\u6587
-afr=\u5357\u975E\u8377\u862D\u6587
-ain=\u963F\u4F0A\u52AA\u6587
-aka=\u963F\u5BD2\u6587
-akk=\u963F\u5361\u5FB7\u6587
-alb=\u963F\u723E\u5DF4\u5C3C\u4E9E\u6587
-ale=\u963F\u7559\u7533\u6587
-alg=\u963F\u723E\u5CA1\u6606\u8AF8\u8A9E\u8A00
-alt=\u5357\u963F\u723E\u6CF0\u6587
-amh=\u8863\u7D22\u6BD4\u4E9E\u6587
-ang=\u53E4\u82F1\u6587 (\u7D04\u897F\u5143 450-1100)
-anp=\u6602\u52A0\u6587
-apa=\u963F\u5E15\u5207\u8AF8\u8A9E\u8A00
-ara=\u963F\u62C9\u4F2F\u6587
-arc=\u963F\u62C9\u7C73\u6587 (700-300 BCE)
-arg=\u4E9E\u62C9\u5CA1\u6587
-arm=\u4E9E\u7F8E\u5C3C\u4E9E\u6587
-arn=\u963F\u52DE\u574E\u6587
-arp=\u963F\u62C9\u5E15\u970D\u6587
-art=\u4EBA\u5DE5\u8A9E\u8A00
-arw=\u963F\u62C9\u74E6\u514B\u6587
-asm=\u963F\u85A9\u59C6\u6587
-ast=\u963F\u65AF\u5716\u91CC\u4E9E\u6587
-ath=\u963F\u85A9\u5E15\u65AF\u574E\u8AF8\u8A9E\u8A00
-aus=\u6FB3\u6D32\u8AF8\u8A9E\u8A00
-ava=\u963F\u74E6\u96F7\u6587
-ave=\u963F\u672A\u65AF\u5854\u6587
-awa=\u963F\u74E6\u6587
-aym=\u4E9E\u6469\u62C9\u6587
-aze=\u4E9E\u585E\u62DC\u7136\u6587
-bad=\u73ED\u9054\u6587
-bai=\u5DF4\u7C73\u7D2F\u514B\u8AF8\u8A9E\u8A00
-bak=\u5DF4\u4EC0\u5580\u723E\u6587
-bal=\u4FFE\u8DEF\u652F\u6587
-bam=\u73ED\u5DF4\u62C9\u6587
-ban=\u5CC7\u91CC\u6587
-baq=\u5DF4\u65AF\u514B\u6587
-bas=\u5DF4\u85A9\u6587
-bat=\u6CE2\u7F85\u7684\u6D77\u8AF8\u8A9E\u8A00
-bej=\u8C9D\u624E\u6587
-bel=\u767D\u4FC4\u7F85\u65AF\u6587
-bem=\u5225\u59C6\u5DF4\u6587
-ben=\u5B5F\u52A0\u62C9\u6587
-ber=\u67CF\u67CF\u723E\u6587
-bho=\u535A\u5091\u666E\u723E\u6587
-bih=\u6BD4\u54C8\u723E\u6587
-bik=\u6BD4\u79D1\u723E\u6587
-bin=\u6BD4\u5C3C\u6587
-bis=\u6BD4\u65AF\u62C9\u99AC\u6587
-bla=\u932B\u514B\u932B\u5361\u6587
-bnt=\u73ED\u5716\u8AF8\u8A9E\u8A00
-bos=\u6CE2\u58EB\u5C3C\u4E9E\u6587
-bra=\u5E03\u62C9\u6770\u6587
-bre=\u4E0D\u5217\u5854\u5C3C\u6587
-btk=\u5DF4\u5854\u514B\u6587
-bua=\u5E03\u91CC\u963F\u7279\u6587
-bug=\u5E03\u5409\u65AF\u6587
-bul=\u4FDD\u52A0\u5229\u4E9E\u6587
-bur=\u7DEC\u7538\u6587
-byn=\u5E03\u6797\u6587
-cad=\u5361\u591A\u6587
-cai=\u4E2D\u7F8E\u5370\u7B2C\u5B89\u8AF8\u8A9E\u8A00
-car=\u5DF4\u52D2\u6BD4\u6587
-cat=\u5609\u6CF0\u7F85\u5C3C\u4E9E\u6587
-cau=\u9AD8\u52A0\u7D22\u8AF8\u8A9E\u8A00
-ceb=\u5BBF\u9727\u6587
-cel=\u51F1\u723E\u7279\u8AF8\u8A9E\u8A00
-cha=\u67E5\u6469\u6D1B\u6587
-chb=\u5947\u5E03\u67E5\u6587
-che=\u8ECA\u81E3\u6587
-chg=\u67E5\u52A0\u6587
-chi=\u4E2D\u6587
-chk=\u8655\u5947\u65AF\u6587
-chm=\u99AC\u91CC\u6587
-chn=\u5951\u5974\u514B\u6587
-cho=\u55AC\u514B\u6258\u6587
-chp=\u5947\u4F69\u74E6\u63DA\u6587
-chr=\u67F4\u7F85\u57FA\u6587
-chu=\u6559\u6703\u65AF\u62C9\u592B\u6587
-chv=\u695A\u74E6\u58EB\u6587
-chy=\u6C99\u4F0A\u5B89\u6587
-cmc=\u67E5\u7C73\u514B\u6587
-cop=\u79D1\u666E\u7279\u6587
-cor=\u5EB7\u74E6\u8033\u6587
-cos=\u79D1\u897F\u5609\u6587
-cpe=\u6B50\u6D32\u8154\u8ABF\u548C\u6D0B\u6D87\u6FF1\uFF0C\u6E90\u81EA\u82F1\u6587\u7684(\u5176\u4ED6)
-cpf=\u6B50\u6D32\u8154\u8ABF\u548C\u6D0B\u6D87\u6FF1\uFF0C\u6E90\u81EA\u6CD5\u6587\u7684(\u5176\u4ED6)
-cpp=\u6B50\u6D32\u8154\u8ABF\u548C\u6D0B\u6D87\u6FF1\uFF0C\u6E90\u81EA\u8461\u8404\u7259\u6587\u7684(\u5176\u4ED6)
-cre=\u514B\u91CC\u6587
-crh=\u514B\u91CC\u7C73\u4E9E\u534A\u5CF6\u7684\u571F\u8033\u5176\u6587\uFF1B\u514B\u91CC\u7C73\u4E9E\u534A\u5CF6\u7684\u5854\u5854\u723E\u6587
-crp=\u5176\u4ED6\u514B\u91CC\u5967\u723E\u6DF7\u548C\u8A9E\u7CFB
-csb=\u5361\u8212\u5E03\u6587
-cus=\u5EAB\u65BD\u7279\u8AF8\u8A9E\u8A00
-cze=\u6377\u514B\u6587
-dak=\u9054\u79D1\u4ED6\u6587
-dan=\u4E39\u9EA5\u6587
-dar=\u9054\u723E\u683C\u74E6\u6587
-day=\u8FEA\u96C5\u514B\u6587
-del=\u5FB7\u62C9\u74E6\u6587
-den=\u65AF\u62C9\u592B
-dgr=\u591A\u683C\u91CC\u5E03\u6587
-din=\u4E01\u5361\u6587
-div=\u8FEA\u7DAD\u897F\u6587
-doi=\u591A\u683C\u4F86\u6587
-dra=\u5FB7\u62C9\u5A01\u8AF8\u8A9E\u8A00
-dsb=\u4E0B\u7D22\u5E03\u6587
-dua=\u675C\u4E9E\u62C9\u6587
-dum=\u4E2D\u53E4\u8377\u862D\u6587 (\u7D04 1050-1350)
-dut=\u8377\u862D\u6587
-dyu=\u8FEA\u5C24\u62C9\u6587
-dzo=\u4E0D\u4E39\u6587
-efi=\u57C3\u83F2\u514B\u6587
-egy=\u53E4\u57C3\u53CA\u6587
-eka=\u827E\u5361\u6731\u514B\u6587
-elx=\u827E\u62C9\u7C73\u7279\u6587
-eng=\u82F1\u6587
-enm=\u4E2D\u53E4\u82F1\u6587 (1100-1500)
-epo=\u4E16\u754C\u6587
-est=\u611B\u6C99\u5C3C\u4E9E\u6587
-ewe=\u57C3\u7DAD\u6587
-ewo=\u4F9D\u6C6A\u90FD\u6587
-fan=\u82B3\u65CF\u6587
-fao=\u6CD5\u7F85\u6587
-fat=\u82B3\u8482\u6587
-fij=\u6590\u6FDF\u6587
-fil=\u83F2\u5F8B\u8CD3\u6587
-fin=\u82AC\u862D\u6587
-fiu=\u82AC\u70CF\u8AF8\u8A9E\u8A00
-fon=\u8C50\u6587
-fre=\u6CD5\u6587
-frm=\u4E2D\u53E4\u6CD5\u6587 (\u7D04 1400-1600)
-fro=\u53E4\u6CD5\u6587 (842-\u7D04 1400)
-frr=\u5317\u5F17\u91CC\u897F\u4E9E\u6587
-frs=\u6771\u5F17\u91CC\u897F\u4E9E\u6587
-fry=\u897F\u5F17\u91CC\u897F\u4E9E\u6587
-ful=\u5BCC\u62C9\u6587
-fur=\u5F17\u7559\u5229\u6587
-gaa=\u52A0\u65CF\u6587
-gay=\u52A0\u7D04\u6587
-gba=\u845B\u5DF4\u4E9E\u6587
-gem=\u5176\u4ED6\u65E5\u8033\u66FC\u8A9E\u7CFB
-geo=\u55AC\u6CBB\u4E9E\u6587
-ger=\u5FB7\u6587
-gez=\u5409\u8332\u6587
-gil=\u5409\u723E\u4F2F\u7279\u7FA4\u5CF6\u6587
-gla=\u84CB\u723E\u6587
-gle=\u611B\u723E\u862D\u6587
-glg=\u52A0\u91CC\u897F\u4E9E\u6587
-glv=\u66FC\u5CF6\u6587
-gmh=\u4E2D\u53E4\u9AD8\u5730\u5FB7\u6587 (\u7D04 1050-1500)
-goh=\u53E4\u9AD8\u5730\u5FB7\u6587 (\u7D04 750-1050)
-gon=\u5CA1\u5FB7\u6587
-gor=\u79D1\u9686\u9054\u7F85\u6587
-got=\u54E5\u5FB7\u6587
-grb=\u683C\u5217\u535A\u6587
-grc=\u53E4\u5E0C\u81D8\u6587 (\u76F4\u5230 1453)
-gre=\u4E2D\u53E4\u5E0C\u81D8\u6587 (1453-)
-grn=\u74DC\u62C9\u5C3C\u6587
-gsw=\u5FB7\u6587 (\u745E\u58EB)
-guj=\u53E4\u5409\u62C9\u7279\u6587
-gwi=\u572D\u5951\u6587
-hai=\u6D77\u9054\u6587
-hat=\u6D77\u5730\u6587
-hau=\u8C6A\u85A9\u6587
-haw=\u590F\u5A01\u5937\u6587
-heb=\u5E0C\u4F2F\u4F86\u6587
-her=\u8D6B\u96F7\u7F85\u6587
-hil=\u5E0C\u5229\u84CB\u8FB2\u6587
-him=\u8D6B\u99AC\u67E5\u5229\u6587
-hin=\u5317\u5370\u5EA6\u6587
-hit=\u8D6B\u68AF\u6587
-hmn=\u5B5F\u6587
-hmo=\u65B0\u91CC\u6728\u6258\u6587
-hrv=\u514B\u7F85\u57C3\u897F\u4E9E\u6587
-hsb=\u4E0A\u7D22\u5E03\u6587
-hun=\u5308\u7259\u5229\u6587
-hup=\u80E1\u5E15\u6587
-iba=\u4F0A\u73ED\u6587
-ibo=\u4F0A\u5E03\u6587
-ice=\u51B0\u5CF6\u6587
-ido=\u4F0A\u591A\u6587
-iii=\u56DB\u5DDD\u5937\u6587
-ijo=\u4F0A\u55AC\u6587
-iku=\u4F0A\u52AA\u4F0A\u7279\u6587
-ile=\u4EBA\u5DE5\u570B\u969B\u6587
-ilo=\u4F0A\u6D1B\u95CA\u6587
-ina=\u4EBA\u5DE5\u570B\u969B\u6587 (\u570B\u969B\u8F14\u52A9\u8A9E\u8A00\u5354\u6703)
-inc=\u5370\u5EA6\u8AF8\u8A9E\u8A00
-ind=\u5370\u5C3C\u6587
-ine=\u5370\u6B50\u8AF8\u8A9E\u8A00
-inh=\u5370\u53E4\u4EC0\u6587
-ipk=\u4F9D\u5974\u76AE\u7DAD\u514B\u6587
-ira=\u4F0A\u6717\u8AF8\u8A9E\u8A00
-iro=\u6613\u6D1B\u9B41\u6587
-ita=\u7FA9\u5927\u5229\u6587
-jav=\u722A\u54C7\u6587
-jbo=\u908F\u8F2F\u6587
-jpn=\u65E5\u6587
-jpr=\u7336\u592A\u6559-\u6CE2\u65AF\u6587
-jrb=\u7336\u592A\u963F\u62C9\u4F2F\u6587
-kaa=\u5361\u62C9\u5361\u723E\u5E15\u514B\u6587
-kab=\u5361\u6BD4\u723E\u6587
-kac=\u5361\u7434\u6587
-kal=\u683C\u9675\u862D\u6587
-kam=\u5361\u59C6\u5DF4\u6587
-kan=\u574E\u90A3\u9054\u6587
-kar=\u514B\u502B\u6587
-kas=\u5580\u4EC0\u7C73\u723E\u6587
-kau=\u5361\u52AA\u91CC\u6587
-kaw=\u5361\u5A01\u6587
-kaz=\u54C8\u85A9\u514B\u6587
-kbd=\u5361\u5DF4\u723E\u9054\u6587
-kha=\u5361\u897F\u6587
-khi=\u79D1\u4F9D\u6851\u8AF8\u8A9E\u8A00
-khm=\u4E2D\u592E\u67EC\u57D4\u5BE8\u6587
-kho=\u548C\u95D0\u6587
-kik=\u57FA\u5EAB\u7336\u6587
-kin=\u91D1\u63DA\u842C\u7B54\u6587
-kir=\u5409\u723E\u5409\u65AF\u6587
-kmb=\u91D1\u90A6\u675C\u6587
-kok=\u8CA2\u6839\u6587
-kom=\u79D1\u5BC6\u6587
-kon=\u525B\u679C\u6587
-kor=\u97D3\u6587
-kos=\u79D1\u65AF\u96F7\u6069\u6587
-kpe=\u514B\u4F69\u5217\u6587
-krc=\u5361\u62C9\u67F4-\u5305\u723E\u5361\u723E\u6587
-krl=\u5361\u7D2F\u5229\u963F\u6587
-kro=\u514B\u9B6F\u6587
-kru=\u5EAB\u9B6F\u79D1\u6587
-kua=\u95DC\u4E9E\u99AC\u6587
-kum=\u5EAB\u5BC6\u514B\u6587
-kur=\u5EAB\u5FB7\u6587
-kut=\u5EAB\u7279\u5948\u6587
-lad=\u62C9\u8FEA\u8AFE\u6587
-lah=\u62C9\u4EA8\u9054\u6587
-lam=\u862D\u5DF4\u6587
-lao=\u5BEE\u6587
-lat=\u62C9\u4E01\u6587
-lav=\u62C9\u812B\u7DAD\u4E9E\u6587 (\u5217\u7279\u6587)
-lez=\u83DC\u8332\u4F9D\u6602\u6587
-lim=\u5229\u535A\u574E\u6587
-lin=\u9675\u52A0\u62C9\u6587
-lit=\u7ACB\u9676\u5B9B\u6587
-lol=\u8292\u6208\u6587
-loz=\u6D1B\u9F4A\u6587
-ltz=\u76E7\u68EE\u5821\u6587
-lua=\u9B6F\u5DF4\u9B6F\u9B6F\u4E9E\u6587
-lub=\u76E7\u5DF4-\u52A0\u4E39\u52A0\u6587
-lug=\u5E72\u9054\u6587
-lui=\u8DEF\u6613\u585E\u8AFE\u6587
-lun=\u76E7\u6069\u9054\u6587
-luo=\u76E7\u5967\u6587 (\u80AF\u4E9E\u8207\u5766\u5C1A\u5C3C\u4E9E)
-lus=\u76E7\u6652\u6587
-mac=\u99AC\u5176\u9813\u6587
-mad=\u99AC\u90FD\u62C9\u6587
-mag=\u99AC\u52A0\u4F0A\u6587
-mah=\u99AC\u7D39\u723E\u7FA4\u5CF6\u6587
-mai=\u9081\u8482\u5229\u6587
-mak=\u671B\u52A0\u932B\u6587
-mal=\u99AC\u4F86\u4E9E\u62C9\u59C6\u6587
-man=\u66FC\u4E01\u54E5\u6587
-mao=\u6BDB\u5229\u6587
-map=\u5357\u5CF6\u8AF8\u8A9E\u8A00
-mar=\u99AC\u62C9\u5730\u6587
-mas=\u99AC\u8CFD\u6587
-may=\u99AC\u4F86\u6587
-mdf=\u83AB\u514B\u6C99\u6587
-mdr=\u66FC\u9054\u6587
-men=\u9580\u5FB7\u6587
-mga=\u4E2D\u53E4\u611B\u723E\u862D\u6587 (900-1200)
-mic=\u7C73\u514B\u99AC\u514B\u6587
-min=\u7C73\u5357\u5361\u5821\u6587
-mis=\u6DF7\u96DC\u8A9E\u8AF8\u8A9E\u8A00
-mkh=\u5B5F\u9AD8\u68C9\u8AF8\u8A9E\u8A00
-mlg=\u99AC\u62C9\u52A0\u897F\u6587
-mlt=\u99AC\u723E\u4ED6\u6587
-mnc=\u6EFF\u65CF\u6587
-mni=\u66FC\u5C3C\u666E\u88E1\u6587
-mno=\u99AC\u8AFE\u535A\u8AF8\u8A9E\u8A00
-moh=\u83AB\u970D\u514B\u6587
-mon=\u8499\u53E4\u6587
-mos=\u83AB\u897F\u6587
-mul=\u591A\u7A2E\u8A9E\u8A00
-mun=\u8499\u9054\u8AF8\u8A9E\u8A00
-mus=\u514B\u91CC\u514B\u6587
-mwl=\u7C73\u862D\u5FB7\u65AF\u6587
-mwr=\u99AC\u723E\u5C3C\u88E1\u6587
-myn=\u99AC\u96C5\u8AF8\u8A9E\u8A00
-myv=\u5384\u723E\u8332\u4E9E\u6587
-nah=\u7D0D\u74E6\u7279\u6587
-nai=\u5317\u7F8E\u5370\u7B2C\u5B89\u8AF8\u8A9E\u8A00
-nap=\u62FF\u6CE2\u91CC\u6587
-nau=\u8AFE\u9B6F\u6587
-nav=\u7D0D\u74E6\u8377\u6587
-nbl=\u5357\u6069\u5FB7\u6BD4\u5229\u6587
-nde=\u5317\u6069\u5FB7\u6BD4\u5229\u6587
-ndo=\u6069\u6771\u52A0\u6587
-nds=\u4F4E\u5730\u5FB7\u6587; \u4F4E\u5730\u6492\u514B\u905C\u6587
-nep=\u5C3C\u6CCA\u723E\u6587
-new=\u5C3C\u74E6\u723E\u6587
-nia=\u5C3C\u4E9E\u65AF\u6587
-nic=\u5C3C\u52A0\u62C9\u74DC\u79D1\u591A\u5DF4
-niu=\u7D10\u57C3\u6587
-nno=\u632A\u5A01\u8010\u8AFE\u65AF\u514B\u6587
-nob=\u535A\u514B\u99AC\u723E\u6587\uFF0C\u632A\u5A01
-nog=\u8AFE\u84CB\u6587
-non=\u53E4\u8AFE\u723E\u65AF\u6587
-nor=\u632A\u5A01\u6587
-nqo=\u897F\u975E\u66F8\u9762\u8A9E\u8A00 (N'Ko)
-nso=\u5317\u7D22\u6258\u6587
-nub=\u52AA\u6BD4\u4E9E\u8AF8\u8A9E\u8A00
-nwc=\u53E4\u5C3C\u74E6\u723E\u6587
-nya=\u9F4A\u5207\u74E6\u6587
-nym=\u5C3C\u63DA\u97CB\u9F4A\u6587
-nyn=\u5C3C\u63DA\u79D1\u840A\u6587
-nyo=\u5C3C\u5967\u56C9\u6587
-nzi=\u5C3C\u8332\u99AC\u6587
-oci=\u6B50\u897F\u5766\u6587 (\u524D 1500)
-oji=\u5967\u6770\u5E03\u97CB\u6587
-ori=\u6B50\u5229\u4E9E\u6587
-orm=\u5967\u7F85\u8499\u6587
-osa=\u6B50\u585E\u5947\u6587
-oss=\u5967\u585E\u68AF\u6587
-ota=\u9102\u5716\u66FC\u571F\u8033\u5176\u6587 (1500-1928)
-oto=\u5967\u6258\u7C73\u8AF8\u8A9E\u8A00
-paa=\u5DF4\u5E03\u4E9E\u8AF8\u8A9E\u8A00
-pag=\u6F58\u52A0\u8F9B\u6587
-pal=\u5DF4\u5217\u7DAD\u6587
-pam=\u6F58\u5E15\u5609\u6587
-pan=\u65C1\u906E\u666E\u6587
-pap=\u5E15\u76AE\u963F\u9580\u6258\u6587
-pau=\u5E1B\u7409\u6587
-peo=\u53E4\u6CE2\u65AF\u6587 (ca.600-400 B.C.)
-per=\u6CE2\u65AF\u6587
-phi=\u83F2\u5F8B\u8CD3\u8AF8\u8A9E\u8A00
-phn=\u8153\u5C3C\u57FA\u6587
-pli=\u5E15\u91CC\u6587
-pol=\u6CE2\u862D\u6587
-pon=\u6CE2\u90A3\u8C9D\u6587
-por=\u8461\u8404\u7259\u6587
-pra=\u666E\u62C9\u514B\u91CC\u7279\u8AF8\u8A9E\u8A00
-pro=\u53E4\u666E\u7F85\u6587\u65AF\u6587 (\u76F4\u5230 1500)
-pus=\u666E\u4EC0\u5716\u6587
-que=\u84CB\u695A\u74E6\u6587
-raj=\u62C9\u8CC8\u65AF\u5766\u8AF8\u6587
-rap=\u5FA9\u6D3B\u5CF6\u6587
-rar=\u62C9\u7F85\u901A\u52A0\u6587
-roa=\u7F85\u66FC\u8AF8\u8A9E\u8A00
-roh=\u7F85\u66FC\u4EC0\u6587
-rom=\u5409\u666E\u8CFD\u6587
-rum=\u7F85\u99AC\u5C3C\u4E9E\u6587
-run=\u79D1\u9686\u5730\u6587
-rup=\u7F85\u99AC\u5C3C\u4E9E\u8A9E\u7CFB
-rus=\u4FC4\u6587
-sad=\u6851\u9054\u97CB\u6587
-sag=\u6851\u6208\u8A9E
-sah=\u96C5\u5EAB\u7279\u6587
-sai=\u5176\u4ED6\u5357\u7F8E\u5370\u7B2C\u5B89\u6587
-sal=\u85A9\u5229\u4EC0\u8AF8\u8A9E\u8A00
-sam=\u85A9\u746A\u5229\u4E9E\u963F\u62C9\u59C6\u6587
-san=\u68B5\u6587\u5B57\u6BCD
-sas=\u6492\u6492\u514B\u6587
-sat=\u6563\u5854\u5229\u6587
-scn=\u897F\u897F\u91CC\u6587
-sco=\u8607\u683C\u862D\u6587
-sel=\u745F\u723E\u5361\u666E\u6587
-sem=\u9583\u8A9E\u8AF8\u8A9E\u8A00
-sga=\u53E4\u611B\u723E\u862D\u6587 (\u81F3 900)
-sgn=\u624B\u8A9E
-shn=\u64A3\u6587
-sid=\u5E0C\u9054\u6469\u6587
-sin=\u932B\u862D\u6587
-sio=\u8607\u8A9E\u8AF8\u8A9E\u8A00
-sit=\u6F22\u85CF\u8A9E\u7CFB
-sla=\u65AF\u62C9\u592B\u8AF8\u8A9E\u8A00
-slo=\u65AF\u6D1B\u4F10\u514B\u6587
-slv=\u65AF\u6D1B\u7DAD\u5C3C\u4E9E\u8A9E
-sma=\u5357\u85A9\u7C73\u6587
-sme=\u5317\u6C99\u5BC6\u6587
-smi=\u85A9\u7C73\u8AF8\u8A9E\u8A00
-smj=\u9B6F\u52D2\u85A9\u7C73\u6587
-smn=\u4F0A\u7D0D\u88E1\u85A9\u7C73\u6587
-smo=\u85A9\u6469\u4E9E\u6587
-sms=\u65AF\u79D1\u7279\u85A9\u7C73\u6587
-sna=\u980C\u54C8\u6587
-snd=\u4FE1\u5FB7\u6587
-snk=\u7D22\u5C3C\u57FA\u6587
-sog=\u7D22\u683C\u5E95\u4E9E\u7D0D\u6587
-som=\u7D22\u99AC\u5229\u6587
-son=\u6851\u6D77\u6587
-sot=\u7D22\u6258\u6587, \u5357\u90E8
-spa=\u897F\u73ED\u7259\u6587
-srd=\u85A9\u4E01\u5C3C\u4E9E\u6587
-srn=Sranan Tongo (\u6E90\u65BC\u514B\u91CC\u5967\u723E\u8A9E)
-srp=\u585E\u723E\u7DAD\u4E9E\u6587
-srr=\u585E\u96F7\u723E\u6587
-ssa=\u5C3C\u7F85\u6492\u54C8\u62C9\u8AF8\u8A9E\u8A00
-ssw=\u897F\u65AF\u74E6\u63D0\u6587
-suk=\u8607\u5EAB\u99AC\u6587
-sun=\u5DFD\u4E39\u6587
-sus=\u8607\u8607\u6587
-sux=\u8607\u7F8E\u6587
-swa=\u53F2\u74E6\u897F\u91CC\u6587
-swe=\u745E\u5178\u6587
-syc=\u53E4\u6558\u5229\u4E9E\u6587
-syr=\u6558\u5229\u4E9E\u6587
-tah=\u5927\u6EAA\u5730\u6587
-tai=\u50A3\u8A9E\u8AF8\u8A9E\u8A00
-tam=\u5766\u7C73\u723E\u6587
-tat=\u97C3\u977C\u6587
-tel=\u7279\u62C9\u53E4\u6587
-tem=\u63D0\u59C6\u6587
-ter=\u6CF0\u96F7\u8AFE\u6587
-tet=\u6CF0\u9813\u6587
-tgk=\u5854\u5409\u514B\u6587
-tgl=\u5854\u52A0\u62C9\u65CF\u6587
-tha=\u6CF0\u6587
-tib=\u897F\u85CF\u6587
-tig=\u8482\u683C\u96F7\u6587
-tir=\u63D0\u683C\u5229\u5C3C\u4E9E\u6587
-tiv=\u63D0\u592B\u6587
-tkl=\u6258\u514B\u52DE\u6587
-tlh=\u514B\u6797\u8CA2\u6587
-tli=\u7279\u6797\u57FA\u7279\u6587
-tmh=\u5854\u99AC\u5947\u514B\u6587
-tog=\u6771\u52A0\u6587(\u5C3C\u4E9E\u85A9\u6587)
-ton=\u6771\u52A0\u6587 (\u6771\u52A0\u7FA4\u5CF6)
-tpi=\u6258\u6BD4\u8F9B\u6587
-tsi=\u6B3D\u897F\u5B89\u6587
-tsn=\u585E\u8332\u74E6\u7D0D\u6587
-tso=\u980C\u52A0\u6587
-tuk=\u571F\u5EAB\u66FC\u6587
-tum=\u5716\u59C6\u5E03\u5361\u6587
-tup=\u5716\u76AE\u8AF8\u8A9E\u8A00
-tur=\u571F\u8033\u5176\u6587
-tut=\u963F\u723E\u6CF0\u8AF8\u8A9E\u8A00 (\u5176\u4ED6)
-tvl=\u5410\u74E6\u9B6F\u6587
-twi=\u5951\u7DAD\u6587
-tyv=\u571F\u51E1\u6587
-udm=\u6C83\u8482\u827E\u514B\u6587
-uga=\u70CF\u52A0\u5217\u6587
-uig=\u7DAD\u543E\u723E\u6587
-ukr=\u70CF\u514B\u862D\u6587
-umb=\u59C6\u672C\u675C\u6587
-und=\u672A\u78BA\u5B9A\u7684
-urd=\u70CF\u90FD\u6587
-uzb=\u70CF\u8332\u5225\u514B\u6587
-vai=\u8D8A\u5357\u6587 Vai
-ven=\u6587\u9054\u6587
-vie=\u8D8A\u5357\u6587
-vol=\u6C83\u62C9\u666E\u514B\u6587
-vot=\u6C83\u63D0\u514B\u6587
-wak=\u74E6\u5361\u4EC0\u8AF8\u8A9E\u8A00
-wal=\u74E6\u62C9\u83AB\u6587
-war=\u74E6\u745E\u6587
-was=\u74E6\u7D39\u6587
-wel=\u5A01\u723E\u65AF\u6587
-wen=\u7D22\u5E03\u8AF8\u8A9E\u8A00
-wln=\u83EF\u9686\u6587
-wol=\u6C83\u6D1B\u592B\u6587
-xal=\u5361\u723E\u6885\u514B\u6587
-xho=\u5ED3\u85A9\u6587
-yao=\u7464\u6587
-yap=\u96C5\u6D66\u6587
-yid=\u610F\u7B2C\u7DD2\u6587
-yor=\u512A\u9B6F\u5DF4\u6587
-ypk=\u5C24\u76AE\u514B\u8AF8\u8A9E\u8A00
-zap=\u85A9\u6CE2\u7279\u514B\u6587
-zbl=\u5E03\u5217\u65AF\u7B26\u865F
-zen=\u6FA4\u7D0D\u52A0\u6587
-zha=\u58EF\u6587
-znd=\u8D0A\u5FB7\u6587
-zul=\u7956\u9B6F\u6587
-zun=\u7956\u5C3C\u6587
-zxx=\u7121\u8A9E\u8A00\u5167\u5BB9
-zza=\u624E\u624E\u6587
-
-# script names
-# key is ISO 15924 script code
-
-Arab=\u963F\u62C9\u4F2F\u6587
-Armi=\u7687\u5BA4\u4E9E\u7F8E\u5C3C\u4E9E\u6587
-Armn=\u4E9E\u7F8E\u5C3C\u4E9E\u6587
-Avst=\u963F\u672A\u65AF\u5854\u6587
-Bali=\u5CC7\u91CC\u6587
-Bamu=\u5DF4\u66FC\u6587
-Bass=\u5DF4\u85A9\u4F10\u6587
-Batk=\u5DF4\u5854\u514B\u6587
-Beng=\u5B5F\u52A0\u62C9\u6587
-Blis=\u5E03\u5217\u65AF\u7B26\u865F
-Bopo=\u6CE8\u97F3\u7B26\u865F
-Brah=\u5A46\u7F85\u7C73\u6587
-Brai=\u76F2\u4EBA\u7528\u9EDE\u5B57\u6CD5
-Bugi=\u5E03\u5409\u65AF\u6587
-Buhd=\u5E03\u5E0C\u5FB7\u6587
-Cakm=\u67E5\u514B\u99AC\u6587
-Cans=\u52A0\u62FF\u5927\u539F\u4F4F\u6C11\u901A\u7528\u5B57\u7B26
-Cari=\u5361\u91CC\u4E9E\u6587
-Cham=\u5360\u6587
-Cher=\u67F4\u7F85\u57FA\u6587
-Cirt=\u8272\u65AF\u6587
-Copt=\u79D1\u666E\u7279\u6587
-Cprt=\u585E\u6D66\u8DEF\u65AF\u6587
-Cyrl=\u897F\u91CC\u4FC4\u8A9E
-Cyrs=\u897F\u91CC\u723E\u6587 (\u53E4\u6559\u6703\u65AF\u62C9\u592B\u6587\u8B8A\u9AD4)
-Deva=\u68B5\u6587
-Dsrt=\u5FB7\u745F\u96F7\u7279\u6587
-Dupl=Duployan \u901F\u8A18\u6CD5
-Egyd=\u53E4\u57C3\u53CA\u4E16\u4FD7\u9AD4
-Egyh=\u53E4\u57C3\u53CA\u50E7\u4FB6\u9AD4
-Egyp=\u53E4\u57C3\u53CA\u8C61\u5F62\u6587\u5B57
-Elba=\u611B\u723E\u5DF4\u6851\u6587
-Ethi=\u8863\u7D22\u5339\u4E9E\u6587
-Geok=\u683C\u9B6F\u5409\u4E9E\u8A9E\u7CFB (\u963F\u7D22\u4ED6\u8DEF\u91CC\u548C\u52AA\u65AF\u514B\u80E1\u91CC\u6587)
-Geor=\u55AC\u6CBB\u4E9E\u6587
-Glag=\u683C\u62C9\u54E5\u91CC\u6587
-Goth=\u54E5\u5FB7\u6587
-Gran=\u683C\u862D\u85A9\u6587
-Grek=\u5E0C\u81D8\u6587
-Gujr=\u53E4\u5409\u62C9\u7279\u6587
-Guru=\u53E4\u723E\u7A46\u5947\u6587
-Hang=\u8AFA\u6587
-Hani=\u6F22\u8A9E
-Hano=\u54C8\u52AA\u8AFE\u6587
-Hans=\u7C21\u9AD4\u4E2D\u6587
-Hant=\u7E41\u9AD4\u4E2D\u6587
-Hebr=\u5E0C\u4F2F\u4F86\u6587
-Hira=\u5E73\u5047\u540D
-Hmng=\u694A\u677E\u9304\u82D7\u6587
-Hrkt=\u7247\u5047\u540D\u6216\u5E73\u5047\u540D
-Hung=\u53E4\u5308\u7259\u5229\u6587
-Inds=\u5370\u5EA6\u6CB3\u6D41\u57DF (\u54C8\u62C9\u5E15\u6587)
-Ital=\u53E4\u610F\u5927\u5229\u6587
-Java=\u722A\u54C7\u6587
-Jpan=\u65E5\u6587
-Kali=\u514B\u8036\u674E\u6587
-Kana=\u7247\u5047\u540D
-Khar=\u5361\u7F85\u9808\u63D0\u6587
-Khmr=\u67EC\u57D4\u5BE8\u6587
-Knda=\u574E\u90A3\u9054\u6587
-Kore=\u97D3\u6587
-Kpel=\u514B\u4F69\u5217\u6587
-Kthi=\u5361\u5E1D\u6587
-Lana=\u85CD\u62FF\u6587
-Laoo=\u5BEE\u6587
-Latf=\u62C9\u4E01\u6587 (\u5C16\u89D2\u9AD4\u6D3B\u5B57\u8B8A\u9AD4)
-Latg=\u62C9\u4E01\u6587 (\u84CB\u723E\u8A9E\u8B8A\u9AD4)
-Latn=\u62C9\u4E01\u6587
-Lepc=\u96F7\u5E03\u67E5\u6587
-Limb=\u6797\u4F48\u6587
-Lina=\u7DDA\u6027\u6587\u5B57 A
-Linb=\u7DDA\u6027\u6587\u5B57 B
-Lisu=\u9ECE\u50F3\u6587
-Loma=\u6D1B\u99AC\u6587
-Lyci=\u5442\u897F\u4E9E\u8A9E
-Lydi=\u91CC\u5E95\u4E9E\u8A9E
-Mand=\u66FC\u5B89\u5E95\u6587
-Mani=\u6469\u5C3C\u6559\u6587
-Maya=\u746A\u96C5\u8C61\u5F62\u6587\u5B57
-Mend=\u9580\u8FEA\u8A9E
-Merc=\u9EA5\u7F85\u57C3\u6587\u884C\u8349
-Mero=\u9EA5\u7F85\u57C3\u6587
-Mlym=\u99AC\u4F86\u4E9E\u62C9\u59C6\u6587
-Mong=\u8499\u53E4\u6587
-Moon=\u7A46\u6069\u9AD4\u76F2\u6587
-Mtei=\u66FC\u5C3C\u666E\u723E\u6587
-Mymr=\u7DEC\u7538\u6587
-Narb=\u5317\u963F\u62C9\u4F2F\u53E4\u6587
-Nbat=\u7D0D\u5DF4\u6CF0\u6587
-Nkgb=\u7D0D\u897F\u8FE6\u5DF4\u6587
-Nkoo=\u897F\u975E\u66F8\u9762\u8A9E\u8A00 (N'Ko)
-Ogam=\u6B50\u7518\u6587
-Olck=\u6851\u5854\u5229\u6587
-Orkh=\u9102\u723E\u6E3E\u6587
-Orya=\u6B50\u5229\u4E9E\u6587
-Osma=\u6B50\u65AF\u66FC\u4E9E\u6587
-Palm=\u5E15\u7C73\u745E\u5C3C\u6587
-Perm=\u53E4\u5F7C\u723E\u59C6\u8AF8\u6587
-Phag=\u516B\u601D\u5DF4\u6587
-Phli=\u7891\u8A18\u6587\u6D3E\u9F8D\u7279\u6587
-Phlp=\u8A69\u7BC7\u96C6\u6D3E\u9F8D\u7279\u6587
-Phlv=\u66F8\u7C4D\u6D3E\u9F8D\u7279\u6587
-Phnx=\u8153\u5C3C\u57FA\u6587
-Plrd=\u67CF\u683C\u7406\u62FC\u97F3\u7B26
-Prti=\u7891\u8A18\u6587\u5DF4\u5E95\u4E9E\u6587
-Rjng=\u62C9\u8B93\u6587
-Roro=\u6717\u683C\u6717\u683C\u8C61\u5F62\u6587
-Runr=\u53E4\u5317\u6B50\u6587\u5B57
-Samr=\u6492\u99AC\u5229\u4E9E\u6587
-Sara=\u6C99\u62C9\u5824\u6587
-Sarb=\u5357\u963F\u62C9\u4F2F\u53E4\u6587
-Saur=\u7D22\u62C9\u4EC0\u7279\u62C9\u6587
-Sgnw=\u624B\u8A9E\u66F8\u5BEB\u7B26\u865F
-Shaw=\u7C2B\u67CF\u7D0D\u5B57\u7B26
-Sind=\u4FE1\u5FB7\u6587
-Sinh=\u932B\u862D\u6587
-Sund=\u5DFD\u4E39\u6587
-Sylo=\u5E0C\u6D1B\u5F1F\u7D0D\u683C\u91CC\u6587
-Syrc=\u6558\u5229\u4E9E\u6587
-Syre=\u6558\u5229\u4E9E\u6587 (\u798F\u97F3\u9AD4\u6587\u5B57\u8B8A\u9AD4)
-Syrj=\u6558\u5229\u4E9E\u6587 (\u897F\u65B9\u6587\u5B57\u8B8A\u9AD4)
-Syrn=\u6558\u5229\u4E9E\u6587 (\u6771\u65B9\u6587\u5B57\u8B8A\u9AD4)
-Tagb=\u5357\u5CF6\u6587
-Tale=\u50A3\u54EA\u6587
-Talu=\u65B0\u50A3\u6587
-Taml=\u5766\u7C73\u723E\u6587
-Tavt=\u50A3\u8D8A\u6587
-Telu=\u7279\u62C9\u53E4\u6587
-Teng=\u8AC7\u683C\u74E6\u6587
-Tfng=\u63D0\u975E\u7D0D (\u67CF\u67CF\u723E\u6587)
-Tglg=\u5854\u52A0\u62C9\u65CF\u6587
-Thaa=\u5854\u5B89\u90A3\u6587
-Thai=\u6CF0\u6587
-Tibt=\u897F\u85CF\u6587
-Ugar=\u70CF\u52A0\u5217\u6587
-Vaii=\u8D8A\u5357\u6587 Vai
-Visp=\u53EF\u898B\u8A9E\u8A00
-Wara=Warang Citi
-Xpeo=\u53E4\u6CE2\u65AF\u6587
-Xsux=\u8607\u7C73\u9B6F\u4E9E\u7532\u6587\u6954\u5F62\u6587\u5B57
-Yiii=\u5F5D\u6587
-Zinh=\u907A\u50B3\u5B78\u8853\u8A9E
-Zmth=\u6578\u5B78\u7B26\u865F
-Zsym=\u7B26\u865F
-Zxxx=\u64A4\u92B7\u5BEB\u5165
-Zyyy=\u4E00\u822C\u6587\u5B57
-Zzzz=\u8173\u672C\u672A\u77E5\u6216\u8005\u7121\u6548
-
-# country names
-# key is ISO 3166 country code
-
-AD=\u5b89\u9053\u723e
-AE=\u963f\u62c9\u4f2f\u806f\u5408\u5927\u516c\u570b
-AF=\u963f\u5bcc\u6c57
-AG=\u5b89\u5730\u5361\u53ca\u5df4\u5e03\u9054
-AI=\u5b89\u572d\u62c9
-AL=\u963f\u723e\u5df4\u5c3c\u4e9e
-AM=\u4e9e\u7f8e\u5c3c\u4e9e
-AN=\u8377\u5c6c\u5b89\u66ff\u5217\u65af
-AO=\u5b89\u54e5\u62c9
-AQ=\u5357\u6975\u6d32
-AR=\u963f\u6839\u5ef7
-AS=\u7f8e\u5c6c\u85a9\u6469\u4e9e
-AT=\u5967\u5730\u5229
-AU=\u6fb3\u5927\u5229\u4e9e
-AW=\u963f\u8def\u5df4
-AX=\u5967\u862d\u7fa4\u5cf6
-AZ=\u4e9e\u585e\u62dc\u7136
-BA=\u6ce2\u58eb\u5c3c\u4e9e\u8d6b\u585e\u54e5\u7dad\u7d0d
-BB=\u5df4\u8c9d\u591a
-BD=\u5b5f\u52a0\u62c9
-BE=\u6bd4\u5229\u6642
-BF=\u5e03\u5409\u7d0d\u6cd5\u7d22
-BG=\u4fdd\u52a0\u5229\u4e9e
-BH=\u5df4\u6797
-BI=\u6d66\u9686\u5730
-BJ=\u8c9d\u5357
-BL=\u8056\u5DF4\u745F\u7C73
-BM=\u767e\u6155\u9054
-BN=\u6c76\u840a
-BO=\u73bb\u5229\u7dad\u4e9e
-BQ=\u6CE2\u7D0D\u723E\u5CF6\u3001\u8056\u827E\u65AF\u5854\u5F97\u65AF\u5CF6\u53CA\u85A9\u5DF4\u5CF6
-BR=\u5df4\u897f
-BS=\u5df4\u54c8\u99ac
-BT=\u4e0d\u4e39
-BV=\u5e03\u5a01\u5cf6
-BW=\u6ce2\u672d\u90a3
-BY=\u767d\u4fc4\u7f85\u65af
-BZ=\u8c9d\u91cc\u65af
-CA=\u52a0\u62ff\u5927
-CC=\u53ef\u53ef\u65af\u7fa4\u5cf6
-CD=\u525b\u679c\u6c11\u4e3b\u5171\u548c\u570b
-CF=\u4e2d\u975e
-CG=\u525b\u679c
-CH=\u745e\u58eb
-CI=\u8c61\u7259\u6d77\u5cb8
-CK=\u5eab\u514b\u7fa4\u5cf6
-CL=\u667a\u5229
-CM=\u5580\u9ea5\u9686
-CN=\u4e2d\u570b
-CO=\u54e5\u502b\u6bd4\u4e9e
-CR=\u54e5\u65af\u5927\u9ece\u52a0
-CS=\u585e\u723e\u7dad\u4e9e\u53ca\u8499\u7279\u5c3c\u54e5\u7f85
-CU=\u53e4\u5df4
-CV=\u7dad\u5fb7\u89d2
-CW=\u53E4\u62C9\u679C
-CX=\u8056\u8a95\u5cf6
-CY=\u8cfd\u666e\u52d2\u65af
-CZ=\u6377\u514b\u5171\u548c\u570b
-DE=\u5fb7\u570b
-DJ=\u5409\u5e03\u5730
-DK=\u4e39\u9ea5
-DM=\u591a\u7c73\u5c3c\u514b
-DO=\u591a\u660e\u5c3c\u52a0
-DZ=\u963f\u723e\u53ca\u5229
-EC=\u5384\u74dc\u591a\u723e
-EE=\u611b\u6c99\u5c3c\u4e9e
-EG=\u57c3\u53ca
-EH=\u897f\u6492\u54c8\u62c9\u6c99\u6f20
-ER=\u5384\u5229\u5782\u4e9e
-ES=\u897f\u73ed\u7259
-ET=\u8863\u7d22\u6bd4\u4e9e
-FI=\u82ac\u862d
-FJ=\u6590\u6fdf
-FK=\u798f\u514b\u862d\u7fa4\u5cf6
-FM=\u5bc6\u514b\u7f85\u5c3c\u897f\u4e9e\u806f\u90a6
-FO=\u6cd5\u9b6f\u7fa4\u5cf6
-FR=\u6cd5\u570b
-GA=\u52a0\u5f6d
-GB=\u82f1\u570b
-GD=\u683c\u745e\u90a3\u9054
-GE=\u55ac\u6cbb\u4e9e
-GF=\u6cd5\u5c6c\u84cb\u4e9e\u7d0d
-GG=\u6839\u897F\u5CF6
-GH=\u8fe6\u7d0d
-GI=\u76f4\u5e03\u7f85\u9640
-GL=\u683c\u9675\u862d
-GM=\u7518\u6bd4\u4e9e
-GN=\u5e7e\u5167\u4e9e
-GP=\u683c\u9675\u862d
-GQ=\u8d64\u9053\u5e7e\u5167\u4e9e
-GR=\u5e0c\u81d8
-GS=\u5357\u55ac\u6cbb\u4e9e\u548c\u5357\u6851\u5a01\u5947\u7fa4\u5cf6
-GT=\u74dc\u5730\u99ac\u62c9
-GU=\u95dc\u5cf6
-GW=\u6bd4\u7d22
-GY=\u84cb\u4e9e\u7d0d
-HK=\u9999\u6e2f
-HM=\u8cc0\u5f97\u5cf6\u548c\u9ea5\u514b\u5510\u7d0d\u7fa4\u5cf6
-HN=\u5b8f\u90fd\u62c9\u65af
-HR=\u514b\u7f85\u57c3\u897f\u4e9e
-HT=\u6d77\u5730
-HU=\u5308\u7259\u5229
-ID=\u5370\u5c3c
-IE=\u611b\u723e\u862d
-IL=\u4ee5\u8272\u5217
-IM=\u66FC\u5CF6
-IN=\u5370\u5ea6
-IO=\u82f1\u5c6c\u5370\u5ea6\u6d0b\u5730\u5340
-IQ=\u4f0a\u62c9\u514b
-IR=\u4f0a\u6717
-IS=\u51b0\u5cf6
-IT=\u7fa9\u5927\u5229
-JE=\u6FA4\u897F\u5CF6
-JM=\u7259\u8cb7
-JO=\u7d04\u65e6
-JP=\u65e5\u672c
-KE=\u80af\u4e9e
-KG=\u5409\u723e\u5409\u65af
-KH=\u67ec\u57d4\u5be8
-KI=\u5409\u91cc\u5df4\u65af
-KM=\u845b\u6469
-KN=\u8056\u514b\u91cc\u65af\u591a\u798f\u53ca\u5c3c\u7dad\u65af
-KP=\u5317\u97d3
-KR=\u5357\u97d3
-KW=\u79d1\u5a01\u7279
-KY=\u958b\u66fc\u7fa4\u5cf6
-KZ=\u54c8\u85a9\u514b
-LA=\u5bee\u570b
-LB=\u9ece\u5df4\u5ae9
-LC=\u8056\u9732\u897f\u4e9e
-LI=\u5217\u652f\u6566\u65af\u767b
-LK=\u65af\u91cc\u862d\u5361
-LR=\u8cf4\u6bd4\u745e\u4e9e
-LS=\u8cf4\u7d22\u6258
-LT=\u7acb\u9676\u5b9b
-LU=\u76e7\u68ee\u5821
-LV=\u62c9\u812b\u7dad\u4e9e
-LY=\u5229\u6bd4\u4e9e
-MA=\u6469\u6d1b\u54e5
-MC=\u6469\u7d0d\u54e5
-MD=\u6469\u723e\u591a\u74e6
-ME=\u8499\u7279\u5c3c\u683c\u7f85
-MF=\u8056\u99AC\u4E01
-MG=\u99ac\u9054\u52a0\u65af\u52a0
-MH=\u99ac\u7d39\u723e\u7fa4\u5cf6
-MK=\u99ac\u5176\u9813
-ML=\u99ac\u5229
-MM=\u7dec\u7538
-MN=\u8499\u53e4
-MO=\u6fb3\u9580
-MP=\u99ac\u91cc\u4e9e\u7d0d\u7fa4\u5cf6
-MQ=\u6cd5\u5c6c\u73bb\u91cc\u5c3c\u897f\u4e9e
-MR=\u8305\u5229\u5854\u5c3c\u4e9e
-MS=\u8499\u7279\u8272\u62c9\u7279\u5cf6
-MT=\u99ac\u723e\u4ed6
-MU=\u6a21\u91cc\u897f\u65af
-MV=\u99ac\u723e\u5730\u592b
-MW=\u99ac\u62c9\u5a01
-MX=\u58a8\u897f\u54e5
-MY=\u99ac\u4f86\u897f\u4e9e
-MZ=\u83ab\u4e09\u6bd4\u514b
-NA=\u7d0d\u7c73\u6bd4\u4e9e
-NC=\u65b0\u5580\u91cc\u591a\u5c3c\u4e9e\u7fa4\u5cf6
-NE=\u5c3c\u65e5
-NF=\u8afe\u798f\u514b\u5cf6
-NG=\u5948\u53ca\u5229\u4e9e
-NI=\u5c3c\u52a0\u62c9\u74dc
-NL=\u8377\u862d
-NO=\u632a\u5a01
-NP=\u5c3c\u6cca\u723e
-NR=\u8afe\u9b6f
-NU=\u7d10\u5a01\u5cf6
-NZ=\u7d10\u897f\u862d
-OM=\u963f\u66fc
-PA=\u5df4\u62ff\u99ac
-PE=\u7955\u9b6f\u5171\u548c\u570b
-PF=\u6cd5\u5c6c\u73bb\u91cc\u5c3c\u897f\u4e9e
-PG=\u5df4\u5e03\u4e9e\u7d10\u5e7e\u5167\u4e9e
-PH=\u83f2\u5f8b\u8cd3
-PK=\u5df4\u57fa\u65af\u5766
-PL=\u6ce2\u862d
-PM=\u8056\u76ae\u57c3\u723e\u548c\u5bc6\u514b\u9686
-PN=\u76ae\u7279\u5eb7
-PR=\u6ce2\u591a\u9ece\u5404
-PS=\u5df4\u52d2\u65af\u5766
-PT=\u8461\u8404\u7259
-PW=\u5e1b\u7409
-PY=\u5df4\u62c9\u572d
-QA=\u5361\u9054
-RE=\u7559\u5c3c\u65fa\u5cf6
-RO=\u7f85\u99ac\u5c3c\u4e9e
-RS=\u585e\u723e\u7dad\u4e9e
-RU=\u4fc4\u7f85\u65af\u806f\u90a6
-RW=\u76e7\u5b89\u9054
-SA=\u6c99\u70cf\u5730\u963f\u62c9\u4f2f
-SB=\u7d22\u7f85\u9580\u7fa4\u5cf6
-SC=\u585e\u5e2d\u723e
-SD=\u8607\u4e39
-SE=\u745e\u5178
-SG=\u65b0\u52a0\u5761
-SH=\u8056\u8d6b\u62ff\u52d2\u5cf6
-SI=\u65af\u6d1b\u7dad\u5c3c\u4e9e
-SJ=\u51b7\u5cb8\u548c\u592e\u9ea5\u6069\u5cf6
-SK=\u65af\u6d1b\u4f10\u514b
-SL=\u7345\u5b50\u5c71
-SM=\u8056\u99ac\u529b\u8afe
-SN=\u585e\u5167\u52a0\u723e
-SO=\u7d22\u99ac\u5229\u4e9e
-SR=\u8607\u5229\u5357
-ST=\u8056\u591a\u7f8e
-SV=\u85a9\u723e\u74e6\u591a
-SX=\u8056\u99AC\u4E01 (\u8377\u862D\u90E8\u4EFD)
-SY=\u6558\u5229\u4e9e
-SZ=\u53f2\u74e6\u6fdf\u862d
-TC=\u571f\u514b\u65af\u548c\u958b\u5361\u65af\u7fa4\u5cf6
-TD=\u67e5\u5fb7
-TF=\u6cd5\u570b\u5357\u65b9\u9818\u5730
-TG=\u591a\u54e5
-TH=\u6cf0\u570b
-TJ=\u5854\u5409\u514b
-TK=\u6258\u514b\u52de\u7fa4\u5cf6
-TL=\u6771\u5e1d\u6c76
-TM=\u571f\u5eab\u66fc
-TN=\u7a81\u5c3c\u897f\u4e9e
-TO=\u6771\u52a0
-TR=\u571f\u8033\u5176
-TT=\u5343\u91cc\u9054\u53ca\u6258\u5df4\u54e5
-TV=\u5410\u74e6\u9b6f
-TW=\u53f0\u7063
-TZ=\u5766\u5c1a\u5c3c\u4e9e
-UA=\u70cf\u514b\u862d
-UG=\u70cf\u5e72\u9054
-UM=\u7f8e\u570b\u5916\u5cf6
-US=\u7f8e\u570b
-UY=\u70cf\u62c9\u572d
-UZ=\u70cf\u8332\u5225\u514b\u65af\u5766
-VA=\u68b5\u5e1d\u5d17
-VC=\u8056\u6587\u68ee\u53ca\u683c\u745e\u90a3\u4e01
-VE=\u59d4\u5167\u745e\u62c9
-VG=\u82f1\u5c6c\u7dad\u723e\u4eac\u7fa4\u5cf6
-VI=\u7f8e\u5c6c\u7dad\u723e\u4eac\u7fa4\u5cf6
-VN=\u8d8a\u5357
-VU=\u842c\u90a3\u675c
-WF=\u6c83\u5229\u65af\u548c\u5bcc\u7a81\u7d0d
-WS=\u85a9\u6469\u4e9e
-YE=\u8449\u9580
-YT=\u99ac\u7d04\u7279\u5cf6
-ZA=\u5357\u975e
-ZM=\u5c1a\u6bd4\u4e9e
-ZW=\u8f9b\u5df4\u5a01
-
-# territory names
-# key is UN M.49 country and area code
-
-001=\u4E16\u754C
-002=\u975E\u6D32
-003=\u5317\u7F8E\u6D32
-005=\u5357\u7F8E\u6D32
-009=\u5927\u6D0B\u6D32
-011=\u897F\u975E
-013=\u4E2D\u7F8E\u6D32
-014=\u6771\u975E
-015=\u5317\u975E
-017=\u4E2D\u975E
-018=\u975E\u6D32\u5357\u90E8
-019=\u7F8E\u6D32
-021=\u7F8E\u6D32\u5317\u90E8
-029=\u52A0\u52D2\u6BD4\u6D77
-030=\u6771\u4E9E
-034=\u5357\u4E9E
-035=\u6771\u5357\u4E9E
-039=\u5357\u6B50
-053=\u6FB3\u6D32\u8207\u7D10\u897F\u862D
-054=\u7F8E\u62C9\u5C3C\u897F\u4E9E
-057=\u5BC6\u514B\u7F85\u5C3C\u897F\u4E9E
-061=\u73BB\u91CC\u5C3C\u897F\u4E9E
-142=\u4E9E\u6D32
-143=\u4E2D\u4E9E
-145=\u897F\u4E9E
-150=\u6B50\u6D32
-151=\u6771\u6B50
-154=\u5317\u6B50
-155=\u897F\u6B50
-419=\u62C9\u4E01\u7F8E\u6D32\u548C\u52A0\u52D2\u6BD4\u6D77