зеркало из https://github.com/github/msysgit.git
Update tcl to version 8.5.9
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
This commit is contained in:
Родитель
7be8622e47
Коммит
a798850c6c
Двоичные данные
mingw/bin/tcl85.dll
Двоичные данные
mingw/bin/tcl85.dll
Двоичный файл не отображается.
Двоичные данные
mingw/bin/tclpip85.dll
Двоичные данные
mingw/bin/tclpip85.dll
Двоичный файл не отображается.
Двоичные данные
mingw/bin/tclsh.exe
Двоичные данные
mingw/bin/tclsh.exe
Двоичный файл не отображается.
Двоичные данные
mingw/bin/tclsh85.exe
Двоичные данные
mingw/bin/tclsh85.exe
Двоичный файл не отображается.
|
@ -13,7 +13,7 @@
|
|||
* See the file "license.terms" for information on usage and redistribution of
|
||||
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
*
|
||||
* RCS: @(#) $Id: tcl.h,v 1.254.2.13 2009/11/03 19:21:37 dgp Exp $
|
||||
* RCS: @(#) $Id: tcl.h,v 1.254.2.16 2010/08/04 17:02:39 dgp Exp $
|
||||
*/
|
||||
|
||||
#ifndef _TCL
|
||||
|
@ -60,10 +60,10 @@ extern "C" {
|
|||
#define TCL_MAJOR_VERSION 8
|
||||
#define TCL_MINOR_VERSION 5
|
||||
#define TCL_RELEASE_LEVEL TCL_FINAL_RELEASE
|
||||
#define TCL_RELEASE_SERIAL 8
|
||||
#define TCL_RELEASE_SERIAL 9
|
||||
|
||||
#define TCL_VERSION "8.5"
|
||||
#define TCL_PATCH_LEVEL "8.5.8"
|
||||
#define TCL_PATCH_LEVEL "8.5.9"
|
||||
|
||||
/*
|
||||
* The following definitions set up the proper options for Windows compilers.
|
||||
|
@ -145,7 +145,7 @@ extern "C" {
|
|||
*
|
||||
* The following TCL_VARARGS* macros are to support old extensions
|
||||
* written for older versions of Tcl where the macros permitted
|
||||
* support for the varargs.h system as well as stdarg.h .
|
||||
* support for the varargs.h system as well as stdarg.h .
|
||||
*
|
||||
* New code should just directly be written to use stdarg.h conventions.
|
||||
*/
|
||||
|
@ -167,7 +167,7 @@ extern "C" {
|
|||
* Note: when building static but linking dynamically to MSVCRT we must still
|
||||
* correctly decorate the C library imported function. Use CRTIMPORT
|
||||
* for this purpose. _DLL is defined by the compiler when linking to
|
||||
* MSVCRT.
|
||||
* MSVCRT.
|
||||
*/
|
||||
|
||||
#if (defined(__WIN32__) && (defined(_MSC_VER) || (__BORLANDC__ >= 0x0550) || defined(__LCC__) || defined(__WATCOMC__) || (defined(__GNUC__) && defined(__declspec))))
|
||||
|
@ -262,7 +262,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
/*
|
||||
* Make sure EXTERN isn't defined elsewhere
|
||||
* Make sure EXTERN isn't defined elsewhere.
|
||||
*/
|
||||
|
||||
#ifdef EXTERN
|
||||
|
@ -315,7 +315,7 @@ typedef long LONG;
|
|||
#endif
|
||||
|
||||
/*
|
||||
* Darwin specifc configure overrides (to support fat compiles, where
|
||||
* Darwin specific configure overrides (to support fat compiles, where
|
||||
* configure runs only once for multiple architectures):
|
||||
*/
|
||||
|
||||
|
@ -359,7 +359,7 @@ typedef long LONG;
|
|||
# if defined(__WIN32__) && !defined(__CYGWIN__)
|
||||
# define TCL_LL_MODIFIER "I64"
|
||||
# else
|
||||
# define TCL_LL_MODIFIER "L"
|
||||
# define TCL_LL_MODIFIER "ll"
|
||||
# endif
|
||||
typedef struct stat Tcl_StatBuf;
|
||||
# elif defined(__WIN32__)
|
||||
|
@ -514,9 +514,10 @@ typedef void (Tcl_ThreadCreateProc) _ANSI_ARGS_((ClientData clientData));
|
|||
* given to Tcl_CreateThread.
|
||||
*/
|
||||
|
||||
#define TCL_THREAD_STACK_DEFAULT (0) /* Use default size for stack */
|
||||
#define TCL_THREAD_NOFLAGS (0000) /* Standard flags, default behaviour */
|
||||
#define TCL_THREAD_JOINABLE (0001) /* Mark the thread as joinable */
|
||||
#define TCL_THREAD_STACK_DEFAULT (0) /* Use default size for stack. */
|
||||
#define TCL_THREAD_NOFLAGS (0000) /* Standard flags, default
|
||||
* behaviour. */
|
||||
#define TCL_THREAD_JOINABLE (0001) /* Mark the thread as joinable. */
|
||||
|
||||
/*
|
||||
* Flag values passed to Tcl_StringCaseMatch.
|
||||
|
@ -528,20 +529,20 @@ typedef void (Tcl_ThreadCreateProc) _ANSI_ARGS_((ClientData clientData));
|
|||
* Flag values passed to Tcl_GetRegExpFromObj.
|
||||
*/
|
||||
|
||||
#define TCL_REG_BASIC 000000 /* BREs (convenience) */
|
||||
#define TCL_REG_EXTENDED 000001 /* EREs */
|
||||
#define TCL_REG_ADVF 000002 /* advanced features in EREs */
|
||||
#define TCL_REG_ADVANCED 000003 /* AREs (which are also EREs) */
|
||||
#define TCL_REG_QUOTE 000004 /* no special characters, none */
|
||||
#define TCL_REG_NOCASE 000010 /* ignore case */
|
||||
#define TCL_REG_NOSUB 000020 /* don't care about subexpressions */
|
||||
#define TCL_REG_EXPANDED 000040 /* expanded format, white space &
|
||||
* comments */
|
||||
#define TCL_REG_BASIC 000000 /* BREs (convenience). */
|
||||
#define TCL_REG_EXTENDED 000001 /* EREs. */
|
||||
#define TCL_REG_ADVF 000002 /* Advanced features in EREs. */
|
||||
#define TCL_REG_ADVANCED 000003 /* AREs (which are also EREs). */
|
||||
#define TCL_REG_QUOTE 000004 /* No special characters, none. */
|
||||
#define TCL_REG_NOCASE 000010 /* Ignore case. */
|
||||
#define TCL_REG_NOSUB 000020 /* Don't care about subexpressions. */
|
||||
#define TCL_REG_EXPANDED 000040 /* Expanded format, white space &
|
||||
* comments. */
|
||||
#define TCL_REG_NLSTOP 000100 /* \n doesn't match . or [^ ] */
|
||||
#define TCL_REG_NLANCH 000200 /* ^ matches after \n, $ before */
|
||||
#define TCL_REG_NEWLINE 000300 /* newlines are line terminators */
|
||||
#define TCL_REG_CANMATCH 001000 /* report details on partial/limited
|
||||
* matches */
|
||||
#define TCL_REG_NLANCH 000200 /* ^ matches after \n, $ before. */
|
||||
#define TCL_REG_NEWLINE 000300 /* Newlines are line terminators. */
|
||||
#define TCL_REG_CANMATCH 001000 /* Report details on partial/limited
|
||||
* matches. */
|
||||
|
||||
/*
|
||||
* Flags values passed to Tcl_RegExpExecObj.
|
||||
|
@ -600,13 +601,13 @@ typedef struct stat *Tcl_OldStat_;
|
|||
* interpreter's result is meaningless.
|
||||
*/
|
||||
|
||||
#define TCL_OK 0
|
||||
#define TCL_ERROR 1
|
||||
#define TCL_RETURN 2
|
||||
#define TCL_BREAK 3
|
||||
#define TCL_CONTINUE 4
|
||||
#define TCL_OK 0
|
||||
#define TCL_ERROR 1
|
||||
#define TCL_RETURN 2
|
||||
#define TCL_BREAK 3
|
||||
#define TCL_CONTINUE 4
|
||||
|
||||
#define TCL_RESULT_SIZE 200
|
||||
#define TCL_RESULT_SIZE 200
|
||||
|
||||
/*
|
||||
* Flags to control what substitutions are performed by Tcl_SubstObj():
|
||||
|
@ -761,19 +762,19 @@ typedef struct Tcl_Obj {
|
|||
* internal rep. NULL indicates the object has
|
||||
* no internal rep (has no type). */
|
||||
union { /* The internal representation: */
|
||||
long longValue; /* - an long integer value */
|
||||
double doubleValue; /* - a double-precision floating value */
|
||||
VOID *otherValuePtr; /* - another, type-specific value */
|
||||
Tcl_WideInt wideValue; /* - a long long value */
|
||||
struct { /* - internal rep as two pointers */
|
||||
long longValue; /* - an long integer value. */
|
||||
double doubleValue; /* - a double-precision floating value. */
|
||||
VOID *otherValuePtr; /* - another, type-specific value. */
|
||||
Tcl_WideInt wideValue; /* - a long long value. */
|
||||
struct { /* - internal rep as two pointers. */
|
||||
VOID *ptr1;
|
||||
VOID *ptr2;
|
||||
} twoPtrValue;
|
||||
struct { /* - internal rep as a wide int, tightly
|
||||
* packed fields */
|
||||
VOID *ptr; /* Pointer to digits */
|
||||
* packed fields. */
|
||||
VOID *ptr; /* Pointer to digits. */
|
||||
unsigned long value;/* Alloc, used, and signum packed into a
|
||||
* single word */
|
||||
* single word. */
|
||||
} ptrAndLongRep;
|
||||
} internalRep;
|
||||
} Tcl_Obj;
|
||||
|
@ -859,16 +860,17 @@ typedef struct Tcl_CallFrame {
|
|||
Tcl_Namespace *nsPtr;
|
||||
int dummy1;
|
||||
int dummy2;
|
||||
char *dummy3;
|
||||
char *dummy4;
|
||||
char *dummy5;
|
||||
VOID *dummy3;
|
||||
VOID *dummy4;
|
||||
VOID *dummy5;
|
||||
int dummy6;
|
||||
char *dummy7;
|
||||
char *dummy8;
|
||||
VOID *dummy7;
|
||||
VOID *dummy8;
|
||||
int dummy9;
|
||||
char *dummy10;
|
||||
char *dummy11;
|
||||
char *dummy12;
|
||||
VOID *dummy10;
|
||||
VOID *dummy11;
|
||||
VOID *dummy12;
|
||||
VOID *dummy13;
|
||||
} Tcl_CallFrame;
|
||||
|
||||
/*
|
||||
|
@ -935,8 +937,8 @@ typedef struct Tcl_DString {
|
|||
* buffer space required by Tcl_PrintDouble.
|
||||
*/
|
||||
|
||||
#define TCL_MAX_PREC 17
|
||||
#define TCL_DOUBLE_SPACE (TCL_MAX_PREC+10)
|
||||
#define TCL_MAX_PREC 17
|
||||
#define TCL_DOUBLE_SPACE (TCL_MAX_PREC+10)
|
||||
|
||||
/*
|
||||
* Definition for a number of bytes of buffer space sufficient to hold the
|
||||
|
@ -993,9 +995,9 @@ typedef struct Tcl_DString {
|
|||
* page for details):
|
||||
*/
|
||||
|
||||
#define TCL_VOLATILE ((Tcl_FreeProc *) 1)
|
||||
#define TCL_STATIC ((Tcl_FreeProc *) 0)
|
||||
#define TCL_DYNAMIC ((Tcl_FreeProc *) 3)
|
||||
#define TCL_VOLATILE ((Tcl_FreeProc *) 1)
|
||||
#define TCL_STATIC ((Tcl_FreeProc *) 0)
|
||||
#define TCL_DYNAMIC ((Tcl_FreeProc *) 3)
|
||||
|
||||
/*
|
||||
* Flag values passed to variable-related functions.
|
||||
|
@ -1348,9 +1350,9 @@ typedef void (Tcl_ScaleTimeProc) _ANSI_ARGS_((Tcl_Time *timebuf,
|
|||
* indicate what sorts of events are of interest:
|
||||
*/
|
||||
|
||||
#define TCL_READABLE (1<<1)
|
||||
#define TCL_WRITABLE (1<<2)
|
||||
#define TCL_EXCEPTION (1<<3)
|
||||
#define TCL_READABLE (1<<1)
|
||||
#define TCL_WRITABLE (1<<2)
|
||||
#define TCL_EXCEPTION (1<<3)
|
||||
|
||||
/*
|
||||
* Flag values to pass to Tcl_OpenCommandChannel to indicate the disposition
|
||||
|
@ -1368,15 +1370,15 @@ typedef void (Tcl_ScaleTimeProc) _ANSI_ARGS_((Tcl_Time *timebuf,
|
|||
* should be closed.
|
||||
*/
|
||||
|
||||
#define TCL_CLOSE_READ (1<<1)
|
||||
#define TCL_CLOSE_WRITE (1<<2)
|
||||
#define TCL_CLOSE_READ (1<<1)
|
||||
#define TCL_CLOSE_WRITE (1<<2)
|
||||
|
||||
/*
|
||||
* Value to use as the closeProc for a channel that supports the close2Proc
|
||||
* interface.
|
||||
*/
|
||||
|
||||
#define TCL_CLOSE2PROC ((Tcl_DriverCloseProc *)1)
|
||||
#define TCL_CLOSE2PROC ((Tcl_DriverCloseProc *) 1)
|
||||
|
||||
/*
|
||||
* Channel version tag. This was introduced in 8.3.2/8.4.
|
||||
|
@ -1389,7 +1391,7 @@ typedef void (Tcl_ScaleTimeProc) _ANSI_ARGS_((Tcl_Time *timebuf,
|
|||
#define TCL_CHANNEL_VERSION_5 ((Tcl_ChannelTypeVersion) 0x5)
|
||||
|
||||
/*
|
||||
* TIP #218: Channel Actions, Ids for Tcl_DriverThreadActionProc
|
||||
* TIP #218: Channel Actions, Ids for Tcl_DriverThreadActionProc.
|
||||
*/
|
||||
|
||||
#define TCL_CHANNEL_THREAD_INSERT (0)
|
||||
|
@ -1485,7 +1487,7 @@ typedef struct Tcl_ChannelType {
|
|||
/* Set blocking mode for the raw channel. May
|
||||
* be NULL. */
|
||||
/*
|
||||
* Only valid in TCL_CHANNEL_VERSION_2 channels or later
|
||||
* Only valid in TCL_CHANNEL_VERSION_2 channels or later.
|
||||
*/
|
||||
Tcl_DriverFlushProc *flushProc;
|
||||
/* Function to call to flush a channel. May be
|
||||
|
@ -1495,7 +1497,7 @@ typedef struct Tcl_ChannelType {
|
|||
* This will be passed up the stacked channel
|
||||
* chain. */
|
||||
/*
|
||||
* Only valid in TCL_CHANNEL_VERSION_3 channels or later
|
||||
* Only valid in TCL_CHANNEL_VERSION_3 channels or later.
|
||||
*/
|
||||
Tcl_DriverWideSeekProc *wideSeekProc;
|
||||
/* Function to call to seek on the channel
|
||||
|
@ -1503,8 +1505,8 @@ typedef struct Tcl_ChannelType {
|
|||
* NULL, and must be NULL if seekProc is
|
||||
* NULL. */
|
||||
/*
|
||||
* Only valid in TCL_CHANNEL_VERSION_4 channels or later
|
||||
* TIP #218, Channel Thread Actions
|
||||
* Only valid in TCL_CHANNEL_VERSION_4 channels or later.
|
||||
* TIP #218, Channel Thread Actions.
|
||||
*/
|
||||
Tcl_DriverThreadActionProc *threadActionProc;
|
||||
/* Function to call to notify the driver of
|
||||
|
@ -1512,8 +1514,8 @@ typedef struct Tcl_ChannelType {
|
|||
* be NULL. */
|
||||
|
||||
/*
|
||||
* Only valid in TCL_CHANNEL_VERSION_5 channels or later
|
||||
* TIP #208, File Truncation
|
||||
* Only valid in TCL_CHANNEL_VERSION_5 channels or later.
|
||||
* TIP #208, File Truncation.
|
||||
*/
|
||||
Tcl_DriverTruncateProc *truncateProc;
|
||||
/* Function to call to truncate the underlying
|
||||
|
@ -1547,14 +1549,14 @@ typedef enum Tcl_PathType {
|
|||
*/
|
||||
|
||||
typedef struct Tcl_GlobTypeData {
|
||||
int type; /* Corresponds to bcdpfls as in 'find -t' */
|
||||
int perm; /* Corresponds to file permissions */
|
||||
Tcl_Obj *macType; /* Acceptable mac type */
|
||||
Tcl_Obj *macCreator; /* Acceptable mac creator */
|
||||
int type; /* Corresponds to bcdpfls as in 'find -t'. */
|
||||
int perm; /* Corresponds to file permissions. */
|
||||
Tcl_Obj *macType; /* Acceptable Mac type. */
|
||||
Tcl_Obj *macCreator; /* Acceptable Mac creator. */
|
||||
} Tcl_GlobTypeData;
|
||||
|
||||
/*
|
||||
* Type and permission definitions for glob command
|
||||
* Type and permission definitions for glob command.
|
||||
*/
|
||||
|
||||
#define TCL_GLOB_TYPE_BLOCK (1<<0)
|
||||
|
@ -1573,7 +1575,7 @@ typedef struct Tcl_GlobTypeData {
|
|||
#define TCL_GLOB_PERM_X (1<<4)
|
||||
|
||||
/*
|
||||
* Flags for the unload callback function
|
||||
* Flags for the unload callback function.
|
||||
*/
|
||||
|
||||
#define TCL_UNLOAD_DETACH_FROM_INTERPRETER (1<<0)
|
||||
|
@ -2157,9 +2159,9 @@ typedef unsigned short Tcl_UniChar;
|
|||
|
||||
typedef struct Tcl_Config {
|
||||
CONST char *key; /* Configuration key to register. ASCII
|
||||
* encoded, thus UTF-8 */
|
||||
* encoded, thus UTF-8. */
|
||||
CONST char *value; /* The value associated with the key. System
|
||||
* encoding */
|
||||
* encoding. */
|
||||
} Tcl_Config;
|
||||
|
||||
/*
|
||||
|
@ -2192,7 +2194,7 @@ typedef unsigned int mp_digit;
|
|||
* value since the stubs tables don't match.
|
||||
*/
|
||||
|
||||
#define TCL_STUB_MAGIC ((int)0xFCA3BACF)
|
||||
#define TCL_STUB_MAGIC ((int) 0xFCA3BACF)
|
||||
|
||||
/*
|
||||
* The following function is required to be defined in all stubs aware
|
||||
|
@ -2297,7 +2299,7 @@ EXTERN void Tcl_GetMemoryInfo _ANSI_ARGS_((Tcl_DString *dsPtr));
|
|||
# define Tcl_IncrRefCount(objPtr) \
|
||||
++(objPtr)->refCount
|
||||
/*
|
||||
* Use do/while0 idiom for optimum correctness without compiler warnings
|
||||
* Use do/while0 idiom for optimum correctness without compiler warnings.
|
||||
* http://c2.com/cgi/wiki?TrivialDoWhileLoop
|
||||
*/
|
||||
# define Tcl_DecrRefCount(objPtr) \
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -6,7 +6,7 @@
|
|||
* Copyright (c) 1998-1999 by Scriptics Corporation.
|
||||
* All rights reserved.
|
||||
*
|
||||
* RCS: @(#) $Id: tclPlatDecls.h,v 1.27 2007/12/13 15:23:20 dgp Exp $
|
||||
* RCS: @(#) $Id: tclPlatDecls.h,v 1.27.2.2 2010/05/21 12:18:17 nijtmans Exp $
|
||||
*/
|
||||
|
||||
#ifndef _TCLPLATDECLS
|
||||
|
@ -26,18 +26,12 @@
|
|||
/*
|
||||
* Pull in the typedef of TCHAR for windows.
|
||||
*/
|
||||
#if defined(__CYGWIN__)
|
||||
typedef char TCHAR;
|
||||
#elif defined(__WIN32__) && !defined(_TCHAR_DEFINED)
|
||||
#if defined(__WIN32__) && !defined(_TCHAR_DEFINED)
|
||||
# include <tchar.h>
|
||||
# ifndef _TCHAR_DEFINED
|
||||
/* Borland seems to forget to set this. */
|
||||
typedef _TCHAR TCHAR;
|
||||
# define _TCHAR_DEFINED
|
||||
# endif
|
||||
# if defined(_MSC_VER) && defined(__STDC__)
|
||||
/* MSVC++ misses this. */
|
||||
typedef _TCHAR TCHAR;
|
||||
# define _TCHAR_DEFINED
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
@ -51,32 +45,32 @@
|
|||
#ifndef Tcl_WinUtfToTChar_TCL_DECLARED
|
||||
#define Tcl_WinUtfToTChar_TCL_DECLARED
|
||||
/* 0 */
|
||||
EXTERN TCHAR * Tcl_WinUtfToTChar (CONST char * str, int len,
|
||||
Tcl_DString * dsPtr);
|
||||
EXTERN TCHAR * Tcl_WinUtfToTChar(CONST char *str, int len,
|
||||
Tcl_DString *dsPtr);
|
||||
#endif
|
||||
#ifndef Tcl_WinTCharToUtf_TCL_DECLARED
|
||||
#define Tcl_WinTCharToUtf_TCL_DECLARED
|
||||
/* 1 */
|
||||
EXTERN char * Tcl_WinTCharToUtf (CONST TCHAR * str, int len,
|
||||
Tcl_DString * dsPtr);
|
||||
EXTERN char * Tcl_WinTCharToUtf(CONST TCHAR *str, int len,
|
||||
Tcl_DString *dsPtr);
|
||||
#endif
|
||||
#endif /* WIN */
|
||||
#ifdef MAC_OSX_TCL /* MACOSX */
|
||||
#ifndef Tcl_MacOSXOpenBundleResources_TCL_DECLARED
|
||||
#define Tcl_MacOSXOpenBundleResources_TCL_DECLARED
|
||||
/* 0 */
|
||||
EXTERN int Tcl_MacOSXOpenBundleResources (Tcl_Interp * interp,
|
||||
CONST char * bundleName, int hasResourceFile,
|
||||
int maxPathLen, char * libraryPath);
|
||||
EXTERN int Tcl_MacOSXOpenBundleResources(Tcl_Interp *interp,
|
||||
CONST char *bundleName, int hasResourceFile,
|
||||
int maxPathLen, char *libraryPath);
|
||||
#endif
|
||||
#ifndef Tcl_MacOSXOpenVersionedBundleResources_TCL_DECLARED
|
||||
#define Tcl_MacOSXOpenVersionedBundleResources_TCL_DECLARED
|
||||
/* 1 */
|
||||
EXTERN int Tcl_MacOSXOpenVersionedBundleResources (
|
||||
Tcl_Interp * interp, CONST char * bundleName,
|
||||
CONST char * bundleVersion,
|
||||
int hasResourceFile, int maxPathLen,
|
||||
char * libraryPath);
|
||||
EXTERN int Tcl_MacOSXOpenVersionedBundleResources(
|
||||
Tcl_Interp *interp, CONST char *bundleName,
|
||||
CONST char *bundleVersion,
|
||||
int hasResourceFile, int maxPathLen,
|
||||
char *libraryPath);
|
||||
#endif
|
||||
#endif /* MACOSX */
|
||||
|
||||
|
@ -85,12 +79,12 @@ typedef struct TclPlatStubs {
|
|||
struct TclPlatStubHooks *hooks;
|
||||
|
||||
#ifdef __WIN32__ /* WIN */
|
||||
TCHAR * (*tcl_WinUtfToTChar) (CONST char * str, int len, Tcl_DString * dsPtr); /* 0 */
|
||||
char * (*tcl_WinTCharToUtf) (CONST TCHAR * str, int len, Tcl_DString * dsPtr); /* 1 */
|
||||
TCHAR * (*tcl_WinUtfToTChar) (CONST char *str, int len, Tcl_DString *dsPtr); /* 0 */
|
||||
char * (*tcl_WinTCharToUtf) (CONST TCHAR *str, int len, Tcl_DString *dsPtr); /* 1 */
|
||||
#endif /* WIN */
|
||||
#ifdef MAC_OSX_TCL /* MACOSX */
|
||||
int (*tcl_MacOSXOpenBundleResources) (Tcl_Interp * interp, CONST char * bundleName, int hasResourceFile, int maxPathLen, char * libraryPath); /* 0 */
|
||||
int (*tcl_MacOSXOpenVersionedBundleResources) (Tcl_Interp * interp, CONST char * bundleName, CONST char * bundleVersion, int hasResourceFile, int maxPathLen, char * libraryPath); /* 1 */
|
||||
int (*tcl_MacOSXOpenBundleResources) (Tcl_Interp *interp, CONST char *bundleName, int hasResourceFile, int maxPathLen, char *libraryPath); /* 0 */
|
||||
int (*tcl_MacOSXOpenVersionedBundleResources) (Tcl_Interp *interp, CONST char *bundleName, CONST char *bundleVersion, int hasResourceFile, int maxPathLen, char *libraryPath); /* 1 */
|
||||
#endif /* MACOSX */
|
||||
} TclPlatStubs;
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
* See the file "license.terms" for information on usage and redistribution
|
||||
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
*
|
||||
* RCS: @(#) $Id: tclTomMathDecls.h,v 1.2 2006/11/15 14:58:27 dgp Exp $
|
||||
* RCS: @(#) $Id: tclTomMathDecls.h,v 1.2.4.1 2010/02/07 22:16:54 nijtmans Exp $
|
||||
*/
|
||||
|
||||
#ifndef _TCLTOMMATHDECLS
|
||||
|
@ -140,317 +140,316 @@
|
|||
#ifndef TclBN_epoch_TCL_DECLARED
|
||||
#define TclBN_epoch_TCL_DECLARED
|
||||
/* 0 */
|
||||
EXTERN int TclBN_epoch (void);
|
||||
EXTERN int TclBN_epoch(void);
|
||||
#endif
|
||||
#ifndef TclBN_revision_TCL_DECLARED
|
||||
#define TclBN_revision_TCL_DECLARED
|
||||
/* 1 */
|
||||
EXTERN int TclBN_revision (void);
|
||||
EXTERN int TclBN_revision(void);
|
||||
#endif
|
||||
#ifndef TclBN_mp_add_TCL_DECLARED
|
||||
#define TclBN_mp_add_TCL_DECLARED
|
||||
/* 2 */
|
||||
EXTERN int TclBN_mp_add (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_add(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_add_d_TCL_DECLARED
|
||||
#define TclBN_mp_add_d_TCL_DECLARED
|
||||
/* 3 */
|
||||
EXTERN int TclBN_mp_add_d (mp_int* a, mp_digit b, mp_int* c);
|
||||
EXTERN int TclBN_mp_add_d(mp_int *a, mp_digit b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_and_TCL_DECLARED
|
||||
#define TclBN_mp_and_TCL_DECLARED
|
||||
/* 4 */
|
||||
EXTERN int TclBN_mp_and (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_and(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_clamp_TCL_DECLARED
|
||||
#define TclBN_mp_clamp_TCL_DECLARED
|
||||
/* 5 */
|
||||
EXTERN void TclBN_mp_clamp (mp_int* a);
|
||||
EXTERN void TclBN_mp_clamp(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_clear_TCL_DECLARED
|
||||
#define TclBN_mp_clear_TCL_DECLARED
|
||||
/* 6 */
|
||||
EXTERN void TclBN_mp_clear (mp_int* a);
|
||||
EXTERN void TclBN_mp_clear(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_clear_multi_TCL_DECLARED
|
||||
#define TclBN_mp_clear_multi_TCL_DECLARED
|
||||
/* 7 */
|
||||
EXTERN void TclBN_mp_clear_multi (mp_int* a, ...);
|
||||
EXTERN void TclBN_mp_clear_multi(mp_int *a, ...);
|
||||
#endif
|
||||
#ifndef TclBN_mp_cmp_TCL_DECLARED
|
||||
#define TclBN_mp_cmp_TCL_DECLARED
|
||||
/* 8 */
|
||||
EXTERN int TclBN_mp_cmp (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_cmp(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_cmp_d_TCL_DECLARED
|
||||
#define TclBN_mp_cmp_d_TCL_DECLARED
|
||||
/* 9 */
|
||||
EXTERN int TclBN_mp_cmp_d (mp_int* a, mp_digit b);
|
||||
EXTERN int TclBN_mp_cmp_d(mp_int *a, mp_digit b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_cmp_mag_TCL_DECLARED
|
||||
#define TclBN_mp_cmp_mag_TCL_DECLARED
|
||||
/* 10 */
|
||||
EXTERN int TclBN_mp_cmp_mag (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_cmp_mag(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_copy_TCL_DECLARED
|
||||
#define TclBN_mp_copy_TCL_DECLARED
|
||||
/* 11 */
|
||||
EXTERN int TclBN_mp_copy (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_copy(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_count_bits_TCL_DECLARED
|
||||
#define TclBN_mp_count_bits_TCL_DECLARED
|
||||
/* 12 */
|
||||
EXTERN int TclBN_mp_count_bits (mp_int* a);
|
||||
EXTERN int TclBN_mp_count_bits(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_div_TCL_DECLARED
|
||||
#define TclBN_mp_div_TCL_DECLARED
|
||||
/* 13 */
|
||||
EXTERN int TclBN_mp_div (mp_int* a, mp_int* b, mp_int* q,
|
||||
mp_int* r);
|
||||
EXTERN int TclBN_mp_div(mp_int *a, mp_int *b, mp_int *q,
|
||||
mp_int *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_div_d_TCL_DECLARED
|
||||
#define TclBN_mp_div_d_TCL_DECLARED
|
||||
/* 14 */
|
||||
EXTERN int TclBN_mp_div_d (mp_int* a, mp_digit b, mp_int* q,
|
||||
mp_digit* r);
|
||||
EXTERN int TclBN_mp_div_d(mp_int *a, mp_digit b, mp_int *q,
|
||||
mp_digit *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_div_2_TCL_DECLARED
|
||||
#define TclBN_mp_div_2_TCL_DECLARED
|
||||
/* 15 */
|
||||
EXTERN int TclBN_mp_div_2 (mp_int* a, mp_int* q);
|
||||
EXTERN int TclBN_mp_div_2(mp_int *a, mp_int *q);
|
||||
#endif
|
||||
#ifndef TclBN_mp_div_2d_TCL_DECLARED
|
||||
#define TclBN_mp_div_2d_TCL_DECLARED
|
||||
/* 16 */
|
||||
EXTERN int TclBN_mp_div_2d (mp_int* a, int b, mp_int* q,
|
||||
mp_int* r);
|
||||
EXTERN int TclBN_mp_div_2d(mp_int *a, int b, mp_int *q,
|
||||
mp_int *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_div_3_TCL_DECLARED
|
||||
#define TclBN_mp_div_3_TCL_DECLARED
|
||||
/* 17 */
|
||||
EXTERN int TclBN_mp_div_3 (mp_int* a, mp_int* q, mp_digit* r);
|
||||
EXTERN int TclBN_mp_div_3(mp_int *a, mp_int *q, mp_digit *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_exch_TCL_DECLARED
|
||||
#define TclBN_mp_exch_TCL_DECLARED
|
||||
/* 18 */
|
||||
EXTERN void TclBN_mp_exch (mp_int* a, mp_int* b);
|
||||
EXTERN void TclBN_mp_exch(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_expt_d_TCL_DECLARED
|
||||
#define TclBN_mp_expt_d_TCL_DECLARED
|
||||
/* 19 */
|
||||
EXTERN int TclBN_mp_expt_d (mp_int* a, mp_digit b, mp_int* c);
|
||||
EXTERN int TclBN_mp_expt_d(mp_int *a, mp_digit b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_grow_TCL_DECLARED
|
||||
#define TclBN_mp_grow_TCL_DECLARED
|
||||
/* 20 */
|
||||
EXTERN int TclBN_mp_grow (mp_int* a, int size);
|
||||
EXTERN int TclBN_mp_grow(mp_int *a, int size);
|
||||
#endif
|
||||
#ifndef TclBN_mp_init_TCL_DECLARED
|
||||
#define TclBN_mp_init_TCL_DECLARED
|
||||
/* 21 */
|
||||
EXTERN int TclBN_mp_init (mp_int* a);
|
||||
EXTERN int TclBN_mp_init(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_init_copy_TCL_DECLARED
|
||||
#define TclBN_mp_init_copy_TCL_DECLARED
|
||||
/* 22 */
|
||||
EXTERN int TclBN_mp_init_copy (mp_int * a, mp_int* b);
|
||||
EXTERN int TclBN_mp_init_copy(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_init_multi_TCL_DECLARED
|
||||
#define TclBN_mp_init_multi_TCL_DECLARED
|
||||
/* 23 */
|
||||
EXTERN int TclBN_mp_init_multi (mp_int* a, ...);
|
||||
EXTERN int TclBN_mp_init_multi(mp_int *a, ...);
|
||||
#endif
|
||||
#ifndef TclBN_mp_init_set_TCL_DECLARED
|
||||
#define TclBN_mp_init_set_TCL_DECLARED
|
||||
/* 24 */
|
||||
EXTERN int TclBN_mp_init_set (mp_int* a, mp_digit b);
|
||||
EXTERN int TclBN_mp_init_set(mp_int *a, mp_digit b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_init_size_TCL_DECLARED
|
||||
#define TclBN_mp_init_size_TCL_DECLARED
|
||||
/* 25 */
|
||||
EXTERN int TclBN_mp_init_size (mp_int* a, int size);
|
||||
EXTERN int TclBN_mp_init_size(mp_int *a, int size);
|
||||
#endif
|
||||
#ifndef TclBN_mp_lshd_TCL_DECLARED
|
||||
#define TclBN_mp_lshd_TCL_DECLARED
|
||||
/* 26 */
|
||||
EXTERN int TclBN_mp_lshd (mp_int* a, int shift);
|
||||
EXTERN int TclBN_mp_lshd(mp_int *a, int shift);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mod_TCL_DECLARED
|
||||
#define TclBN_mp_mod_TCL_DECLARED
|
||||
/* 27 */
|
||||
EXTERN int TclBN_mp_mod (mp_int* a, mp_int* b, mp_int* r);
|
||||
EXTERN int TclBN_mp_mod(mp_int *a, mp_int *b, mp_int *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mod_2d_TCL_DECLARED
|
||||
#define TclBN_mp_mod_2d_TCL_DECLARED
|
||||
/* 28 */
|
||||
EXTERN int TclBN_mp_mod_2d (mp_int* a, int b, mp_int* r);
|
||||
EXTERN int TclBN_mp_mod_2d(mp_int *a, int b, mp_int *r);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mul_TCL_DECLARED
|
||||
#define TclBN_mp_mul_TCL_DECLARED
|
||||
/* 29 */
|
||||
EXTERN int TclBN_mp_mul (mp_int* a, mp_int* b, mp_int* p);
|
||||
EXTERN int TclBN_mp_mul(mp_int *a, mp_int *b, mp_int *p);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mul_d_TCL_DECLARED
|
||||
#define TclBN_mp_mul_d_TCL_DECLARED
|
||||
/* 30 */
|
||||
EXTERN int TclBN_mp_mul_d (mp_int* a, mp_digit b, mp_int* p);
|
||||
EXTERN int TclBN_mp_mul_d(mp_int *a, mp_digit b, mp_int *p);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mul_2_TCL_DECLARED
|
||||
#define TclBN_mp_mul_2_TCL_DECLARED
|
||||
/* 31 */
|
||||
EXTERN int TclBN_mp_mul_2 (mp_int* a, mp_int* p);
|
||||
EXTERN int TclBN_mp_mul_2(mp_int *a, mp_int *p);
|
||||
#endif
|
||||
#ifndef TclBN_mp_mul_2d_TCL_DECLARED
|
||||
#define TclBN_mp_mul_2d_TCL_DECLARED
|
||||
/* 32 */
|
||||
EXTERN int TclBN_mp_mul_2d (mp_int* a, int d, mp_int* p);
|
||||
EXTERN int TclBN_mp_mul_2d(mp_int *a, int d, mp_int *p);
|
||||
#endif
|
||||
#ifndef TclBN_mp_neg_TCL_DECLARED
|
||||
#define TclBN_mp_neg_TCL_DECLARED
|
||||
/* 33 */
|
||||
EXTERN int TclBN_mp_neg (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_neg(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_or_TCL_DECLARED
|
||||
#define TclBN_mp_or_TCL_DECLARED
|
||||
/* 34 */
|
||||
EXTERN int TclBN_mp_or (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_or(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_radix_size_TCL_DECLARED
|
||||
#define TclBN_mp_radix_size_TCL_DECLARED
|
||||
/* 35 */
|
||||
EXTERN int TclBN_mp_radix_size (mp_int* a, int radix, int* size);
|
||||
EXTERN int TclBN_mp_radix_size(mp_int *a, int radix, int *size);
|
||||
#endif
|
||||
#ifndef TclBN_mp_read_radix_TCL_DECLARED
|
||||
#define TclBN_mp_read_radix_TCL_DECLARED
|
||||
/* 36 */
|
||||
EXTERN int TclBN_mp_read_radix (mp_int* a, const char* str,
|
||||
EXTERN int TclBN_mp_read_radix(mp_int *a, const char *str,
|
||||
int radix);
|
||||
#endif
|
||||
#ifndef TclBN_mp_rshd_TCL_DECLARED
|
||||
#define TclBN_mp_rshd_TCL_DECLARED
|
||||
/* 37 */
|
||||
EXTERN void TclBN_mp_rshd (mp_int * a, int shift);
|
||||
EXTERN void TclBN_mp_rshd(mp_int *a, int shift);
|
||||
#endif
|
||||
#ifndef TclBN_mp_shrink_TCL_DECLARED
|
||||
#define TclBN_mp_shrink_TCL_DECLARED
|
||||
/* 38 */
|
||||
EXTERN int TclBN_mp_shrink (mp_int* a);
|
||||
EXTERN int TclBN_mp_shrink(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_set_TCL_DECLARED
|
||||
#define TclBN_mp_set_TCL_DECLARED
|
||||
/* 39 */
|
||||
EXTERN void TclBN_mp_set (mp_int* a, mp_digit b);
|
||||
EXTERN void TclBN_mp_set(mp_int *a, mp_digit b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_sqr_TCL_DECLARED
|
||||
#define TclBN_mp_sqr_TCL_DECLARED
|
||||
/* 40 */
|
||||
EXTERN int TclBN_mp_sqr (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_sqr(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_sqrt_TCL_DECLARED
|
||||
#define TclBN_mp_sqrt_TCL_DECLARED
|
||||
/* 41 */
|
||||
EXTERN int TclBN_mp_sqrt (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_sqrt(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_sub_TCL_DECLARED
|
||||
#define TclBN_mp_sub_TCL_DECLARED
|
||||
/* 42 */
|
||||
EXTERN int TclBN_mp_sub (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_sub(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_sub_d_TCL_DECLARED
|
||||
#define TclBN_mp_sub_d_TCL_DECLARED
|
||||
/* 43 */
|
||||
EXTERN int TclBN_mp_sub_d (mp_int* a, mp_digit b, mp_int* c);
|
||||
EXTERN int TclBN_mp_sub_d(mp_int *a, mp_digit b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_to_unsigned_bin_TCL_DECLARED
|
||||
#define TclBN_mp_to_unsigned_bin_TCL_DECLARED
|
||||
/* 44 */
|
||||
EXTERN int TclBN_mp_to_unsigned_bin (mp_int* a,
|
||||
unsigned char* b);
|
||||
EXTERN int TclBN_mp_to_unsigned_bin(mp_int *a, unsigned char *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_to_unsigned_bin_n_TCL_DECLARED
|
||||
#define TclBN_mp_to_unsigned_bin_n_TCL_DECLARED
|
||||
/* 45 */
|
||||
EXTERN int TclBN_mp_to_unsigned_bin_n (mp_int* a,
|
||||
unsigned char* b, unsigned long* outlen);
|
||||
EXTERN int TclBN_mp_to_unsigned_bin_n(mp_int *a,
|
||||
unsigned char *b, unsigned long *outlen);
|
||||
#endif
|
||||
#ifndef TclBN_mp_toradix_n_TCL_DECLARED
|
||||
#define TclBN_mp_toradix_n_TCL_DECLARED
|
||||
/* 46 */
|
||||
EXTERN int TclBN_mp_toradix_n (mp_int* a, char* str, int radix,
|
||||
EXTERN int TclBN_mp_toradix_n(mp_int *a, char *str, int radix,
|
||||
int maxlen);
|
||||
#endif
|
||||
#ifndef TclBN_mp_unsigned_bin_size_TCL_DECLARED
|
||||
#define TclBN_mp_unsigned_bin_size_TCL_DECLARED
|
||||
/* 47 */
|
||||
EXTERN int TclBN_mp_unsigned_bin_size (mp_int* a);
|
||||
EXTERN int TclBN_mp_unsigned_bin_size(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_mp_xor_TCL_DECLARED
|
||||
#define TclBN_mp_xor_TCL_DECLARED
|
||||
/* 48 */
|
||||
EXTERN int TclBN_mp_xor (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_xor(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_zero_TCL_DECLARED
|
||||
#define TclBN_mp_zero_TCL_DECLARED
|
||||
/* 49 */
|
||||
EXTERN void TclBN_mp_zero (mp_int* a);
|
||||
EXTERN void TclBN_mp_zero(mp_int *a);
|
||||
#endif
|
||||
#ifndef TclBN_reverse_TCL_DECLARED
|
||||
#define TclBN_reverse_TCL_DECLARED
|
||||
/* 50 */
|
||||
EXTERN void TclBN_reverse (unsigned char* s, int len);
|
||||
EXTERN void TclBN_reverse(unsigned char *s, int len);
|
||||
#endif
|
||||
#ifndef TclBN_fast_s_mp_mul_digs_TCL_DECLARED
|
||||
#define TclBN_fast_s_mp_mul_digs_TCL_DECLARED
|
||||
/* 51 */
|
||||
EXTERN int TclBN_fast_s_mp_mul_digs (mp_int * a, mp_int * b,
|
||||
mp_int * c, int digs);
|
||||
EXTERN int TclBN_fast_s_mp_mul_digs(mp_int *a, mp_int *b,
|
||||
mp_int *c, int digs);
|
||||
#endif
|
||||
#ifndef TclBN_fast_s_mp_sqr_TCL_DECLARED
|
||||
#define TclBN_fast_s_mp_sqr_TCL_DECLARED
|
||||
/* 52 */
|
||||
EXTERN int TclBN_fast_s_mp_sqr (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_fast_s_mp_sqr(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_karatsuba_mul_TCL_DECLARED
|
||||
#define TclBN_mp_karatsuba_mul_TCL_DECLARED
|
||||
/* 53 */
|
||||
EXTERN int TclBN_mp_karatsuba_mul (mp_int* a, mp_int* b,
|
||||
mp_int* c);
|
||||
EXTERN int TclBN_mp_karatsuba_mul(mp_int *a, mp_int *b,
|
||||
mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_karatsuba_sqr_TCL_DECLARED
|
||||
#define TclBN_mp_karatsuba_sqr_TCL_DECLARED
|
||||
/* 54 */
|
||||
EXTERN int TclBN_mp_karatsuba_sqr (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_karatsuba_sqr(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_mp_toom_mul_TCL_DECLARED
|
||||
#define TclBN_mp_toom_mul_TCL_DECLARED
|
||||
/* 55 */
|
||||
EXTERN int TclBN_mp_toom_mul (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_mp_toom_mul(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_mp_toom_sqr_TCL_DECLARED
|
||||
#define TclBN_mp_toom_sqr_TCL_DECLARED
|
||||
/* 56 */
|
||||
EXTERN int TclBN_mp_toom_sqr (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_mp_toom_sqr(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_s_mp_add_TCL_DECLARED
|
||||
#define TclBN_s_mp_add_TCL_DECLARED
|
||||
/* 57 */
|
||||
EXTERN int TclBN_s_mp_add (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_s_mp_add(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
#ifndef TclBN_s_mp_mul_digs_TCL_DECLARED
|
||||
#define TclBN_s_mp_mul_digs_TCL_DECLARED
|
||||
/* 58 */
|
||||
EXTERN int TclBN_s_mp_mul_digs (mp_int* a, mp_int* b, mp_int* c,
|
||||
EXTERN int TclBN_s_mp_mul_digs(mp_int *a, mp_int *b, mp_int *c,
|
||||
int digs);
|
||||
#endif
|
||||
#ifndef TclBN_s_mp_sqr_TCL_DECLARED
|
||||
#define TclBN_s_mp_sqr_TCL_DECLARED
|
||||
/* 59 */
|
||||
EXTERN int TclBN_s_mp_sqr (mp_int* a, mp_int* b);
|
||||
EXTERN int TclBN_s_mp_sqr(mp_int *a, mp_int *b);
|
||||
#endif
|
||||
#ifndef TclBN_s_mp_sub_TCL_DECLARED
|
||||
#define TclBN_s_mp_sub_TCL_DECLARED
|
||||
/* 60 */
|
||||
EXTERN int TclBN_s_mp_sub (mp_int* a, mp_int* b, mp_int* c);
|
||||
EXTERN int TclBN_s_mp_sub(mp_int *a, mp_int *b, mp_int *c);
|
||||
#endif
|
||||
|
||||
typedef struct TclTomMathStubs {
|
||||
|
@ -459,65 +458,65 @@ typedef struct TclTomMathStubs {
|
|||
|
||||
int (*tclBN_epoch) (void); /* 0 */
|
||||
int (*tclBN_revision) (void); /* 1 */
|
||||
int (*tclBN_mp_add) (mp_int* a, mp_int* b, mp_int* c); /* 2 */
|
||||
int (*tclBN_mp_add_d) (mp_int* a, mp_digit b, mp_int* c); /* 3 */
|
||||
int (*tclBN_mp_and) (mp_int* a, mp_int* b, mp_int* c); /* 4 */
|
||||
void (*tclBN_mp_clamp) (mp_int* a); /* 5 */
|
||||
void (*tclBN_mp_clear) (mp_int* a); /* 6 */
|
||||
void (*tclBN_mp_clear_multi) (mp_int* a, ...); /* 7 */
|
||||
int (*tclBN_mp_cmp) (mp_int* a, mp_int* b); /* 8 */
|
||||
int (*tclBN_mp_cmp_d) (mp_int* a, mp_digit b); /* 9 */
|
||||
int (*tclBN_mp_cmp_mag) (mp_int* a, mp_int* b); /* 10 */
|
||||
int (*tclBN_mp_copy) (mp_int* a, mp_int* b); /* 11 */
|
||||
int (*tclBN_mp_count_bits) (mp_int* a); /* 12 */
|
||||
int (*tclBN_mp_div) (mp_int* a, mp_int* b, mp_int* q, mp_int* r); /* 13 */
|
||||
int (*tclBN_mp_div_d) (mp_int* a, mp_digit b, mp_int* q, mp_digit* r); /* 14 */
|
||||
int (*tclBN_mp_div_2) (mp_int* a, mp_int* q); /* 15 */
|
||||
int (*tclBN_mp_div_2d) (mp_int* a, int b, mp_int* q, mp_int* r); /* 16 */
|
||||
int (*tclBN_mp_div_3) (mp_int* a, mp_int* q, mp_digit* r); /* 17 */
|
||||
void (*tclBN_mp_exch) (mp_int* a, mp_int* b); /* 18 */
|
||||
int (*tclBN_mp_expt_d) (mp_int* a, mp_digit b, mp_int* c); /* 19 */
|
||||
int (*tclBN_mp_grow) (mp_int* a, int size); /* 20 */
|
||||
int (*tclBN_mp_init) (mp_int* a); /* 21 */
|
||||
int (*tclBN_mp_init_copy) (mp_int * a, mp_int* b); /* 22 */
|
||||
int (*tclBN_mp_init_multi) (mp_int* a, ...); /* 23 */
|
||||
int (*tclBN_mp_init_set) (mp_int* a, mp_digit b); /* 24 */
|
||||
int (*tclBN_mp_init_size) (mp_int* a, int size); /* 25 */
|
||||
int (*tclBN_mp_lshd) (mp_int* a, int shift); /* 26 */
|
||||
int (*tclBN_mp_mod) (mp_int* a, mp_int* b, mp_int* r); /* 27 */
|
||||
int (*tclBN_mp_mod_2d) (mp_int* a, int b, mp_int* r); /* 28 */
|
||||
int (*tclBN_mp_mul) (mp_int* a, mp_int* b, mp_int* p); /* 29 */
|
||||
int (*tclBN_mp_mul_d) (mp_int* a, mp_digit b, mp_int* p); /* 30 */
|
||||
int (*tclBN_mp_mul_2) (mp_int* a, mp_int* p); /* 31 */
|
||||
int (*tclBN_mp_mul_2d) (mp_int* a, int d, mp_int* p); /* 32 */
|
||||
int (*tclBN_mp_neg) (mp_int* a, mp_int* b); /* 33 */
|
||||
int (*tclBN_mp_or) (mp_int* a, mp_int* b, mp_int* c); /* 34 */
|
||||
int (*tclBN_mp_radix_size) (mp_int* a, int radix, int* size); /* 35 */
|
||||
int (*tclBN_mp_read_radix) (mp_int* a, const char* str, int radix); /* 36 */
|
||||
void (*tclBN_mp_rshd) (mp_int * a, int shift); /* 37 */
|
||||
int (*tclBN_mp_shrink) (mp_int* a); /* 38 */
|
||||
void (*tclBN_mp_set) (mp_int* a, mp_digit b); /* 39 */
|
||||
int (*tclBN_mp_sqr) (mp_int* a, mp_int* b); /* 40 */
|
||||
int (*tclBN_mp_sqrt) (mp_int* a, mp_int* b); /* 41 */
|
||||
int (*tclBN_mp_sub) (mp_int* a, mp_int* b, mp_int* c); /* 42 */
|
||||
int (*tclBN_mp_sub_d) (mp_int* a, mp_digit b, mp_int* c); /* 43 */
|
||||
int (*tclBN_mp_to_unsigned_bin) (mp_int* a, unsigned char* b); /* 44 */
|
||||
int (*tclBN_mp_to_unsigned_bin_n) (mp_int* a, unsigned char* b, unsigned long* outlen); /* 45 */
|
||||
int (*tclBN_mp_toradix_n) (mp_int* a, char* str, int radix, int maxlen); /* 46 */
|
||||
int (*tclBN_mp_unsigned_bin_size) (mp_int* a); /* 47 */
|
||||
int (*tclBN_mp_xor) (mp_int* a, mp_int* b, mp_int* c); /* 48 */
|
||||
void (*tclBN_mp_zero) (mp_int* a); /* 49 */
|
||||
void (*tclBN_reverse) (unsigned char* s, int len); /* 50 */
|
||||
int (*tclBN_fast_s_mp_mul_digs) (mp_int * a, mp_int * b, mp_int * c, int digs); /* 51 */
|
||||
int (*tclBN_fast_s_mp_sqr) (mp_int* a, mp_int* b); /* 52 */
|
||||
int (*tclBN_mp_karatsuba_mul) (mp_int* a, mp_int* b, mp_int* c); /* 53 */
|
||||
int (*tclBN_mp_karatsuba_sqr) (mp_int* a, mp_int* b); /* 54 */
|
||||
int (*tclBN_mp_toom_mul) (mp_int* a, mp_int* b, mp_int* c); /* 55 */
|
||||
int (*tclBN_mp_toom_sqr) (mp_int* a, mp_int* b); /* 56 */
|
||||
int (*tclBN_s_mp_add) (mp_int* a, mp_int* b, mp_int* c); /* 57 */
|
||||
int (*tclBN_s_mp_mul_digs) (mp_int* a, mp_int* b, mp_int* c, int digs); /* 58 */
|
||||
int (*tclBN_s_mp_sqr) (mp_int* a, mp_int* b); /* 59 */
|
||||
int (*tclBN_s_mp_sub) (mp_int* a, mp_int* b, mp_int* c); /* 60 */
|
||||
int (*tclBN_mp_add) (mp_int *a, mp_int *b, mp_int *c); /* 2 */
|
||||
int (*tclBN_mp_add_d) (mp_int *a, mp_digit b, mp_int *c); /* 3 */
|
||||
int (*tclBN_mp_and) (mp_int *a, mp_int *b, mp_int *c); /* 4 */
|
||||
void (*tclBN_mp_clamp) (mp_int *a); /* 5 */
|
||||
void (*tclBN_mp_clear) (mp_int *a); /* 6 */
|
||||
void (*tclBN_mp_clear_multi) (mp_int *a, ...); /* 7 */
|
||||
int (*tclBN_mp_cmp) (mp_int *a, mp_int *b); /* 8 */
|
||||
int (*tclBN_mp_cmp_d) (mp_int *a, mp_digit b); /* 9 */
|
||||
int (*tclBN_mp_cmp_mag) (mp_int *a, mp_int *b); /* 10 */
|
||||
int (*tclBN_mp_copy) (mp_int *a, mp_int *b); /* 11 */
|
||||
int (*tclBN_mp_count_bits) (mp_int *a); /* 12 */
|
||||
int (*tclBN_mp_div) (mp_int *a, mp_int *b, mp_int *q, mp_int *r); /* 13 */
|
||||
int (*tclBN_mp_div_d) (mp_int *a, mp_digit b, mp_int *q, mp_digit *r); /* 14 */
|
||||
int (*tclBN_mp_div_2) (mp_int *a, mp_int *q); /* 15 */
|
||||
int (*tclBN_mp_div_2d) (mp_int *a, int b, mp_int *q, mp_int *r); /* 16 */
|
||||
int (*tclBN_mp_div_3) (mp_int *a, mp_int *q, mp_digit *r); /* 17 */
|
||||
void (*tclBN_mp_exch) (mp_int *a, mp_int *b); /* 18 */
|
||||
int (*tclBN_mp_expt_d) (mp_int *a, mp_digit b, mp_int *c); /* 19 */
|
||||
int (*tclBN_mp_grow) (mp_int *a, int size); /* 20 */
|
||||
int (*tclBN_mp_init) (mp_int *a); /* 21 */
|
||||
int (*tclBN_mp_init_copy) (mp_int *a, mp_int *b); /* 22 */
|
||||
int (*tclBN_mp_init_multi) (mp_int *a, ...); /* 23 */
|
||||
int (*tclBN_mp_init_set) (mp_int *a, mp_digit b); /* 24 */
|
||||
int (*tclBN_mp_init_size) (mp_int *a, int size); /* 25 */
|
||||
int (*tclBN_mp_lshd) (mp_int *a, int shift); /* 26 */
|
||||
int (*tclBN_mp_mod) (mp_int *a, mp_int *b, mp_int *r); /* 27 */
|
||||
int (*tclBN_mp_mod_2d) (mp_int *a, int b, mp_int *r); /* 28 */
|
||||
int (*tclBN_mp_mul) (mp_int *a, mp_int *b, mp_int *p); /* 29 */
|
||||
int (*tclBN_mp_mul_d) (mp_int *a, mp_digit b, mp_int *p); /* 30 */
|
||||
int (*tclBN_mp_mul_2) (mp_int *a, mp_int *p); /* 31 */
|
||||
int (*tclBN_mp_mul_2d) (mp_int *a, int d, mp_int *p); /* 32 */
|
||||
int (*tclBN_mp_neg) (mp_int *a, mp_int *b); /* 33 */
|
||||
int (*tclBN_mp_or) (mp_int *a, mp_int *b, mp_int *c); /* 34 */
|
||||
int (*tclBN_mp_radix_size) (mp_int *a, int radix, int *size); /* 35 */
|
||||
int (*tclBN_mp_read_radix) (mp_int *a, const char *str, int radix); /* 36 */
|
||||
void (*tclBN_mp_rshd) (mp_int *a, int shift); /* 37 */
|
||||
int (*tclBN_mp_shrink) (mp_int *a); /* 38 */
|
||||
void (*tclBN_mp_set) (mp_int *a, mp_digit b); /* 39 */
|
||||
int (*tclBN_mp_sqr) (mp_int *a, mp_int *b); /* 40 */
|
||||
int (*tclBN_mp_sqrt) (mp_int *a, mp_int *b); /* 41 */
|
||||
int (*tclBN_mp_sub) (mp_int *a, mp_int *b, mp_int *c); /* 42 */
|
||||
int (*tclBN_mp_sub_d) (mp_int *a, mp_digit b, mp_int *c); /* 43 */
|
||||
int (*tclBN_mp_to_unsigned_bin) (mp_int *a, unsigned char *b); /* 44 */
|
||||
int (*tclBN_mp_to_unsigned_bin_n) (mp_int *a, unsigned char *b, unsigned long *outlen); /* 45 */
|
||||
int (*tclBN_mp_toradix_n) (mp_int *a, char *str, int radix, int maxlen); /* 46 */
|
||||
int (*tclBN_mp_unsigned_bin_size) (mp_int *a); /* 47 */
|
||||
int (*tclBN_mp_xor) (mp_int *a, mp_int *b, mp_int *c); /* 48 */
|
||||
void (*tclBN_mp_zero) (mp_int *a); /* 49 */
|
||||
void (*tclBN_reverse) (unsigned char *s, int len); /* 50 */
|
||||
int (*tclBN_fast_s_mp_mul_digs) (mp_int *a, mp_int *b, mp_int *c, int digs); /* 51 */
|
||||
int (*tclBN_fast_s_mp_sqr) (mp_int *a, mp_int *b); /* 52 */
|
||||
int (*tclBN_mp_karatsuba_mul) (mp_int *a, mp_int *b, mp_int *c); /* 53 */
|
||||
int (*tclBN_mp_karatsuba_sqr) (mp_int *a, mp_int *b); /* 54 */
|
||||
int (*tclBN_mp_toom_mul) (mp_int *a, mp_int *b, mp_int *c); /* 55 */
|
||||
int (*tclBN_mp_toom_sqr) (mp_int *a, mp_int *b); /* 56 */
|
||||
int (*tclBN_s_mp_add) (mp_int *a, mp_int *b, mp_int *c); /* 57 */
|
||||
int (*tclBN_s_mp_mul_digs) (mp_int *a, mp_int *b, mp_int *c, int digs); /* 58 */
|
||||
int (*tclBN_s_mp_sqr) (mp_int *a, mp_int *b); /* 59 */
|
||||
int (*tclBN_s_mp_sub) (mp_int *a, mp_int *b, mp_int *c); /* 60 */
|
||||
} TclTomMathStubs;
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Двоичные данные
mingw/lib/dde1.3/tcldde13.dll
Двоичные данные
mingw/lib/dde1.3/tcldde13.dll
Двоичный файл не отображается.
Двоичные данные
mingw/lib/dde1.3/tcldde13.lib
Двоичные данные
mingw/lib/dde1.3/tcldde13.lib
Двоичный файл не отображается.
Двоичные данные
mingw/lib/reg1.2/tclreg12.dll
Двоичные данные
mingw/lib/reg1.2/tclreg12.dll
Двоичный файл не отображается.
Двоичные данные
mingw/lib/reg1.2/tclreg12.lib
Двоичные данные
mingw/lib/reg1.2/tclreg12.lib
Двоичный файл не отображается.
|
@ -3,7 +3,7 @@
|
|||
# Default system startup file for Tcl-based applications. Defines
|
||||
# "unknown" procedure and auto-load facilities.
|
||||
#
|
||||
# RCS: @(#) $Id: init.tcl,v 1.104.2.13 2009/11/03 19:21:38 dgp Exp $
|
||||
# RCS: @(#) $Id: init.tcl,v 1.104.2.15 2010/08/04 17:02:39 dgp Exp $
|
||||
#
|
||||
# Copyright (c) 1991-1993 The Regents of the University of California.
|
||||
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
|
||||
|
@ -17,7 +17,7 @@
|
|||
if {[info commands package] == ""} {
|
||||
error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]"
|
||||
}
|
||||
package require -exact Tcl 8.5.8
|
||||
package require -exact Tcl 8.5.9
|
||||
|
||||
# Compute the auto path to use in this interpreter.
|
||||
# The values on the path come from several locations:
|
||||
|
@ -659,7 +659,7 @@ proc auto_execok name {
|
|||
# Add an initial ; to have the {} extension check first.
|
||||
set execExtensions [split ";$env(PATHEXT)" ";"]
|
||||
} else {
|
||||
set execExtensions [list {} .com .exe .bat]
|
||||
set execExtensions [list {} .com .exe .bat .cmd]
|
||||
}
|
||||
|
||||
if {$name in $shellBuiltins} {
|
||||
|
|
|
@ -44,8 +44,8 @@ namespace eval ::tcl::clock {
|
|||
"\u05e0\u05d5\u05d1\u05de\u05d1\u05e8"\
|
||||
"\u05d3\u05e6\u05de\u05d1\u05e8"\
|
||||
""]
|
||||
::msgcat::mcset he BCE "\u05dc\u05e1\u05d4"\u05e0"
|
||||
::msgcat::mcset he CE "\u05dc\u05e4\u05e1\u05d4"\u05e0"
|
||||
::msgcat::mcset he BCE "\u05dc\u05e1\u05d4\u0022\u05e0"
|
||||
::msgcat::mcset he CE "\u05dc\u05e4\u05e1\u05d4\u0022\u05e0"
|
||||
::msgcat::mcset he DATE_FORMAT "%d/%m/%Y"
|
||||
::msgcat::mcset he TIME_FORMAT "%H:%M:%S"
|
||||
::msgcat::mcset he DATE_TIME_FORMAT "%d/%m/%Y %H:%M:%S %z"
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -122,6 +122,8 @@ set TZData(:Africa/Cairo) {
|
|||
{1240524000 10800 1 EEST}
|
||||
{1250802000 7200 0 EET}
|
||||
{1272578400 10800 1 EEST}
|
||||
{1281474000 7200 0 EET}
|
||||
{1284069600 10800 1 EEST}
|
||||
{1285880400 7200 0 EET}
|
||||
{1304028000 10800 1 EEST}
|
||||
{1317330000 7200 0 EET}
|
||||
|
|
|
@ -25,4 +25,6 @@ set TZData(:Africa/Casablanca) {
|
|||
{1220223600 0 0 WET}
|
||||
{1243814400 3600 1 WEST}
|
||||
{1250809200 0 0 WET}
|
||||
{1272758400 3600 1 WEST}
|
||||
{1281222000 0 0 WET}
|
||||
}
|
||||
|
|
|
@ -36,184 +36,4 @@ set TZData(:Africa/Tunis) {
|
|||
{1193533200 3600 0 CET}
|
||||
{1206838800 7200 1 CEST}
|
||||
{1224982800 3600 0 CET}
|
||||
{1269738000 7200 1 CEST}
|
||||
{1288486800 3600 0 CET}
|
||||
{1301187600 7200 1 CEST}
|
||||
{1319936400 3600 0 CET}
|
||||
{1332637200 7200 1 CEST}
|
||||
{1351386000 3600 0 CET}
|
||||
{1364691600 7200 1 CEST}
|
||||
{1382835600 3600 0 CET}
|
||||
{1396141200 7200 1 CEST}
|
||||
{1414285200 3600 0 CET}
|
||||
{1427590800 7200 1 CEST}
|
||||
{1445734800 3600 0 CET}
|
||||
{1459040400 7200 1 CEST}
|
||||
{1477789200 3600 0 CET}
|
||||
{1490490000 7200 1 CEST}
|
||||
{1509238800 3600 0 CET}
|
||||
{1521939600 7200 1 CEST}
|
||||
{1540688400 3600 0 CET}
|
||||
{1553994000 7200 1 CEST}
|
||||
{1572138000 3600 0 CET}
|
||||
{1585443600 7200 1 CEST}
|
||||
{1603587600 3600 0 CET}
|
||||
{1616893200 7200 1 CEST}
|
||||
{1635642000 3600 0 CET}
|
||||
{1648342800 7200 1 CEST}
|
||||
{1667091600 3600 0 CET}
|
||||
{1679792400 7200 1 CEST}
|
||||
{1698541200 3600 0 CET}
|
||||
{1711846800 7200 1 CEST}
|
||||
{1729990800 3600 0 CET}
|
||||
{1743296400 7200 1 CEST}
|
||||
{1761440400 3600 0 CET}
|
||||
{1774746000 7200 1 CEST}
|
||||
{1792890000 3600 0 CET}
|
||||
{1806195600 7200 1 CEST}
|
||||
{1824944400 3600 0 CET}
|
||||
{1837645200 7200 1 CEST}
|
||||
{1856394000 3600 0 CET}
|
||||
{1869094800 7200 1 CEST}
|
||||
{1887843600 3600 0 CET}
|
||||
{1901149200 7200 1 CEST}
|
||||
{1919293200 3600 0 CET}
|
||||
{1932598800 7200 1 CEST}
|
||||
{1950742800 3600 0 CET}
|
||||
{1964048400 7200 1 CEST}
|
||||
{1982797200 3600 0 CET}
|
||||
{1995498000 7200 1 CEST}
|
||||
{2014246800 3600 0 CET}
|
||||
{2026947600 7200 1 CEST}
|
||||
{2045696400 3600 0 CET}
|
||||
{2058397200 7200 1 CEST}
|
||||
{2077146000 3600 0 CET}
|
||||
{2090451600 7200 1 CEST}
|
||||
{2108595600 3600 0 CET}
|
||||
{2121901200 7200 1 CEST}
|
||||
{2140045200 3600 0 CET}
|
||||
{2153350800 7200 1 CEST}
|
||||
{2172099600 3600 0 CET}
|
||||
{2184800400 7200 1 CEST}
|
||||
{2203549200 3600 0 CET}
|
||||
{2216250000 7200 1 CEST}
|
||||
{2234998800 3600 0 CET}
|
||||
{2248304400 7200 1 CEST}
|
||||
{2266448400 3600 0 CET}
|
||||
{2279754000 7200 1 CEST}
|
||||
{2297898000 3600 0 CET}
|
||||
{2311203600 7200 1 CEST}
|
||||
{2329347600 3600 0 CET}
|
||||
{2342653200 7200 1 CEST}
|
||||
{2361402000 3600 0 CET}
|
||||
{2374102800 7200 1 CEST}
|
||||
{2392851600 3600 0 CET}
|
||||
{2405552400 7200 1 CEST}
|
||||
{2424301200 3600 0 CET}
|
||||
{2437606800 7200 1 CEST}
|
||||
{2455750800 3600 0 CET}
|
||||
{2469056400 7200 1 CEST}
|
||||
{2487200400 3600 0 CET}
|
||||
{2500506000 7200 1 CEST}
|
||||
{2519254800 3600 0 CET}
|
||||
{2531955600 7200 1 CEST}
|
||||
{2550704400 3600 0 CET}
|
||||
{2563405200 7200 1 CEST}
|
||||
{2582154000 3600 0 CET}
|
||||
{2595459600 7200 1 CEST}
|
||||
{2613603600 3600 0 CET}
|
||||
{2626909200 7200 1 CEST}
|
||||
{2645053200 3600 0 CET}
|
||||
{2658358800 7200 1 CEST}
|
||||
{2676502800 3600 0 CET}
|
||||
{2689808400 7200 1 CEST}
|
||||
{2708557200 3600 0 CET}
|
||||
{2721258000 7200 1 CEST}
|
||||
{2740006800 3600 0 CET}
|
||||
{2752707600 7200 1 CEST}
|
||||
{2771456400 3600 0 CET}
|
||||
{2784762000 7200 1 CEST}
|
||||
{2802906000 3600 0 CET}
|
||||
{2816211600 7200 1 CEST}
|
||||
{2834355600 3600 0 CET}
|
||||
{2847661200 7200 1 CEST}
|
||||
{2866410000 3600 0 CET}
|
||||
{2879110800 7200 1 CEST}
|
||||
{2897859600 3600 0 CET}
|
||||
{2910560400 7200 1 CEST}
|
||||
{2929309200 3600 0 CET}
|
||||
{2942010000 7200 1 CEST}
|
||||
{2960758800 3600 0 CET}
|
||||
{2974064400 7200 1 CEST}
|
||||
{2992208400 3600 0 CET}
|
||||
{3005514000 7200 1 CEST}
|
||||
{3023658000 3600 0 CET}
|
||||
{3036963600 7200 1 CEST}
|
||||
{3055712400 3600 0 CET}
|
||||
{3068413200 7200 1 CEST}
|
||||
{3087162000 3600 0 CET}
|
||||
{3099862800 7200 1 CEST}
|
||||
{3118611600 3600 0 CET}
|
||||
{3131917200 7200 1 CEST}
|
||||
{3150061200 3600 0 CET}
|
||||
{3163366800 7200 1 CEST}
|
||||
{3181510800 3600 0 CET}
|
||||
{3194816400 7200 1 CEST}
|
||||
{3212960400 3600 0 CET}
|
||||
{3226266000 7200 1 CEST}
|
||||
{3245014800 3600 0 CET}
|
||||
{3257715600 7200 1 CEST}
|
||||
{3276464400 3600 0 CET}
|
||||
{3289165200 7200 1 CEST}
|
||||
{3307914000 3600 0 CET}
|
||||
{3321219600 7200 1 CEST}
|
||||
{3339363600 3600 0 CET}
|
||||
{3352669200 7200 1 CEST}
|
||||
{3370813200 3600 0 CET}
|
||||
{3384118800 7200 1 CEST}
|
||||
{3402867600 3600 0 CET}
|
||||
{3415568400 7200 1 CEST}
|
||||
{3434317200 3600 0 CET}
|
||||
{3447018000 7200 1 CEST}
|
||||
{3465766800 3600 0 CET}
|
||||
{3479072400 7200 1 CEST}
|
||||
{3497216400 3600 0 CET}
|
||||
{3510522000 7200 1 CEST}
|
||||
{3528666000 3600 0 CET}
|
||||
{3541971600 7200 1 CEST}
|
||||
{3560115600 3600 0 CET}
|
||||
{3573421200 7200 1 CEST}
|
||||
{3592170000 3600 0 CET}
|
||||
{3604870800 7200 1 CEST}
|
||||
{3623619600 3600 0 CET}
|
||||
{3636320400 7200 1 CEST}
|
||||
{3655069200 3600 0 CET}
|
||||
{3668374800 7200 1 CEST}
|
||||
{3686518800 3600 0 CET}
|
||||
{3699824400 7200 1 CEST}
|
||||
{3717968400 3600 0 CET}
|
||||
{3731274000 7200 1 CEST}
|
||||
{3750022800 3600 0 CET}
|
||||
{3762723600 7200 1 CEST}
|
||||
{3781472400 3600 0 CET}
|
||||
{3794173200 7200 1 CEST}
|
||||
{3812922000 3600 0 CET}
|
||||
{3825622800 7200 1 CEST}
|
||||
{3844371600 3600 0 CET}
|
||||
{3857677200 7200 1 CEST}
|
||||
{3875821200 3600 0 CET}
|
||||
{3889126800 7200 1 CEST}
|
||||
{3907270800 3600 0 CET}
|
||||
{3920576400 7200 1 CEST}
|
||||
{3939325200 3600 0 CET}
|
||||
{3952026000 7200 1 CEST}
|
||||
{3970774800 3600 0 CET}
|
||||
{3983475600 7200 1 CEST}
|
||||
{4002224400 3600 0 CET}
|
||||
{4015530000 7200 1 CEST}
|
||||
{4033674000 3600 0 CET}
|
||||
{4046979600 7200 1 CEST}
|
||||
{4065123600 3600 0 CET}
|
||||
{4078429200 7200 1 CEST}
|
||||
{4096573200 3600 0 CET}
|
||||
}
|
||||
|
|
|
@ -65,184 +65,4 @@ set TZData(:America/Argentina/San_Luis) {
|
|||
{1223784000 -10800 1 WARST}
|
||||
{1236481200 -14400 0 WART}
|
||||
{1255233600 -10800 1 WARST}
|
||||
{1268535600 -14400 0 WART}
|
||||
{1286683200 -10800 1 WARST}
|
||||
{1299985200 -14400 0 WART}
|
||||
{1318132800 -10800 1 WARST}
|
||||
{1331434800 -14400 0 WART}
|
||||
{1350187200 -10800 1 WARST}
|
||||
{1362884400 -14400 0 WART}
|
||||
{1381636800 -10800 1 WARST}
|
||||
{1394334000 -14400 0 WART}
|
||||
{1413086400 -10800 1 WARST}
|
||||
{1425783600 -14400 0 WART}
|
||||
{1444536000 -10800 1 WARST}
|
||||
{1457838000 -14400 0 WART}
|
||||
{1475985600 -10800 1 WARST}
|
||||
{1489287600 -14400 0 WART}
|
||||
{1507435200 -10800 1 WARST}
|
||||
{1520737200 -14400 0 WART}
|
||||
{1539489600 -10800 1 WARST}
|
||||
{1552186800 -14400 0 WART}
|
||||
{1570939200 -10800 1 WARST}
|
||||
{1583636400 -14400 0 WART}
|
||||
{1602388800 -10800 1 WARST}
|
||||
{1615690800 -14400 0 WART}
|
||||
{1633838400 -10800 1 WARST}
|
||||
{1647140400 -14400 0 WART}
|
||||
{1665288000 -10800 1 WARST}
|
||||
{1678590000 -14400 0 WART}
|
||||
{1696737600 -10800 1 WARST}
|
||||
{1710039600 -14400 0 WART}
|
||||
{1728792000 -10800 1 WARST}
|
||||
{1741489200 -14400 0 WART}
|
||||
{1760241600 -10800 1 WARST}
|
||||
{1772938800 -14400 0 WART}
|
||||
{1791691200 -10800 1 WARST}
|
||||
{1804993200 -14400 0 WART}
|
||||
{1823140800 -10800 1 WARST}
|
||||
{1836442800 -14400 0 WART}
|
||||
{1854590400 -10800 1 WARST}
|
||||
{1867892400 -14400 0 WART}
|
||||
{1886644800 -10800 1 WARST}
|
||||
{1899342000 -14400 0 WART}
|
||||
{1918094400 -10800 1 WARST}
|
||||
{1930791600 -14400 0 WART}
|
||||
{1949544000 -10800 1 WARST}
|
||||
{1962846000 -14400 0 WART}
|
||||
{1980993600 -10800 1 WARST}
|
||||
{1994295600 -14400 0 WART}
|
||||
{2012443200 -10800 1 WARST}
|
||||
{2025745200 -14400 0 WART}
|
||||
{2043892800 -10800 1 WARST}
|
||||
{2057194800 -14400 0 WART}
|
||||
{2075947200 -10800 1 WARST}
|
||||
{2088644400 -14400 0 WART}
|
||||
{2107396800 -10800 1 WARST}
|
||||
{2120094000 -14400 0 WART}
|
||||
{2138846400 -10800 1 WARST}
|
||||
{2152148400 -14400 0 WART}
|
||||
{2170296000 -10800 1 WARST}
|
||||
{2183598000 -14400 0 WART}
|
||||
{2201745600 -10800 1 WARST}
|
||||
{2215047600 -14400 0 WART}
|
||||
{2233800000 -10800 1 WARST}
|
||||
{2246497200 -14400 0 WART}
|
||||
{2265249600 -10800 1 WARST}
|
||||
{2277946800 -14400 0 WART}
|
||||
{2296699200 -10800 1 WARST}
|
||||
{2309396400 -14400 0 WART}
|
||||
{2328148800 -10800 1 WARST}
|
||||
{2341450800 -14400 0 WART}
|
||||
{2359598400 -10800 1 WARST}
|
||||
{2372900400 -14400 0 WART}
|
||||
{2391048000 -10800 1 WARST}
|
||||
{2404350000 -14400 0 WART}
|
||||
{2423102400 -10800 1 WARST}
|
||||
{2435799600 -14400 0 WART}
|
||||
{2454552000 -10800 1 WARST}
|
||||
{2467249200 -14400 0 WART}
|
||||
{2486001600 -10800 1 WARST}
|
||||
{2499303600 -14400 0 WART}
|
||||
{2517451200 -10800 1 WARST}
|
||||
{2530753200 -14400 0 WART}
|
||||
{2548900800 -10800 1 WARST}
|
||||
{2562202800 -14400 0 WART}
|
||||
{2580350400 -10800 1 WARST}
|
||||
{2593652400 -14400 0 WART}
|
||||
{2612404800 -10800 1 WARST}
|
||||
{2625102000 -14400 0 WART}
|
||||
{2643854400 -10800 1 WARST}
|
||||
{2656551600 -14400 0 WART}
|
||||
{2675304000 -10800 1 WARST}
|
||||
{2688606000 -14400 0 WART}
|
||||
{2706753600 -10800 1 WARST}
|
||||
{2720055600 -14400 0 WART}
|
||||
{2738203200 -10800 1 WARST}
|
||||
{2751505200 -14400 0 WART}
|
||||
{2770257600 -10800 1 WARST}
|
||||
{2782954800 -14400 0 WART}
|
||||
{2801707200 -10800 1 WARST}
|
||||
{2814404400 -14400 0 WART}
|
||||
{2833156800 -10800 1 WARST}
|
||||
{2846458800 -14400 0 WART}
|
||||
{2864606400 -10800 1 WARST}
|
||||
{2877908400 -14400 0 WART}
|
||||
{2896056000 -10800 1 WARST}
|
||||
{2909358000 -14400 0 WART}
|
||||
{2927505600 -10800 1 WARST}
|
||||
{2940807600 -14400 0 WART}
|
||||
{2959560000 -10800 1 WARST}
|
||||
{2972257200 -14400 0 WART}
|
||||
{2991009600 -10800 1 WARST}
|
||||
{3003706800 -14400 0 WART}
|
||||
{3022459200 -10800 1 WARST}
|
||||
{3035761200 -14400 0 WART}
|
||||
{3053908800 -10800 1 WARST}
|
||||
{3067210800 -14400 0 WART}
|
||||
{3085358400 -10800 1 WARST}
|
||||
{3098660400 -14400 0 WART}
|
||||
{3117412800 -10800 1 WARST}
|
||||
{3130110000 -14400 0 WART}
|
||||
{3148862400 -10800 1 WARST}
|
||||
{3161559600 -14400 0 WART}
|
||||
{3180312000 -10800 1 WARST}
|
||||
{3193009200 -14400 0 WART}
|
||||
{3211761600 -10800 1 WARST}
|
||||
{3225063600 -14400 0 WART}
|
||||
{3243211200 -10800 1 WARST}
|
||||
{3256513200 -14400 0 WART}
|
||||
{3274660800 -10800 1 WARST}
|
||||
{3287962800 -14400 0 WART}
|
||||
{3306715200 -10800 1 WARST}
|
||||
{3319412400 -14400 0 WART}
|
||||
{3338164800 -10800 1 WARST}
|
||||
{3350862000 -14400 0 WART}
|
||||
{3369614400 -10800 1 WARST}
|
||||
{3382916400 -14400 0 WART}
|
||||
{3401064000 -10800 1 WARST}
|
||||
{3414366000 -14400 0 WART}
|
||||
{3432513600 -10800 1 WARST}
|
||||
{3445815600 -14400 0 WART}
|
||||
{3463963200 -10800 1 WARST}
|
||||
{3477265200 -14400 0 WART}
|
||||
{3496017600 -10800 1 WARST}
|
||||
{3508714800 -14400 0 WART}
|
||||
{3527467200 -10800 1 WARST}
|
||||
{3540164400 -14400 0 WART}
|
||||
{3558916800 -10800 1 WARST}
|
||||
{3572218800 -14400 0 WART}
|
||||
{3590366400 -10800 1 WARST}
|
||||
{3603668400 -14400 0 WART}
|
||||
{3621816000 -10800 1 WARST}
|
||||
{3635118000 -14400 0 WART}
|
||||
{3653870400 -10800 1 WARST}
|
||||
{3666567600 -14400 0 WART}
|
||||
{3685320000 -10800 1 WARST}
|
||||
{3698017200 -14400 0 WART}
|
||||
{3716769600 -10800 1 WARST}
|
||||
{3730071600 -14400 0 WART}
|
||||
{3748219200 -10800 1 WARST}
|
||||
{3761521200 -14400 0 WART}
|
||||
{3779668800 -10800 1 WARST}
|
||||
{3792970800 -14400 0 WART}
|
||||
{3811118400 -10800 1 WARST}
|
||||
{3824420400 -14400 0 WART}
|
||||
{3843172800 -10800 1 WARST}
|
||||
{3855870000 -14400 0 WART}
|
||||
{3874622400 -10800 1 WARST}
|
||||
{3887319600 -14400 0 WART}
|
||||
{3906072000 -10800 1 WARST}
|
||||
{3919374000 -14400 0 WART}
|
||||
{3937521600 -10800 1 WARST}
|
||||
{3950823600 -14400 0 WART}
|
||||
{3968971200 -10800 1 WARST}
|
||||
{3982273200 -14400 0 WART}
|
||||
{4001025600 -10800 1 WARST}
|
||||
{4013722800 -14400 0 WART}
|
||||
{4032475200 -10800 1 WARST}
|
||||
{4045172400 -14400 0 WART}
|
||||
{4063924800 -10800 1 WARST}
|
||||
{4076622000 -14400 0 WART}
|
||||
{4095374400 -10800 1 WARST}
|
||||
}
|
||||
|
|
|
@ -76,184 +76,184 @@ set TZData(:America/Asuncion) {
|
|||
{1224388800 -10800 1 PYST}
|
||||
{1236481200 -14400 0 PYT}
|
||||
{1255838400 -10800 1 PYST}
|
||||
{1268535600 -14400 0 PYT}
|
||||
{1287288000 -10800 1 PYST}
|
||||
{1299985200 -14400 0 PYT}
|
||||
{1318737600 -10800 1 PYST}
|
||||
{1331434800 -14400 0 PYT}
|
||||
{1350792000 -10800 1 PYST}
|
||||
{1362884400 -14400 0 PYT}
|
||||
{1382241600 -10800 1 PYST}
|
||||
{1394334000 -14400 0 PYT}
|
||||
{1413691200 -10800 1 PYST}
|
||||
{1425783600 -14400 0 PYT}
|
||||
{1445140800 -10800 1 PYST}
|
||||
{1457838000 -14400 0 PYT}
|
||||
{1476590400 -10800 1 PYST}
|
||||
{1489287600 -14400 0 PYT}
|
||||
{1508040000 -10800 1 PYST}
|
||||
{1520737200 -14400 0 PYT}
|
||||
{1540094400 -10800 1 PYST}
|
||||
{1552186800 -14400 0 PYT}
|
||||
{1571544000 -10800 1 PYST}
|
||||
{1583636400 -14400 0 PYT}
|
||||
{1602993600 -10800 1 PYST}
|
||||
{1615690800 -14400 0 PYT}
|
||||
{1634443200 -10800 1 PYST}
|
||||
{1647140400 -14400 0 PYT}
|
||||
{1665892800 -10800 1 PYST}
|
||||
{1678590000 -14400 0 PYT}
|
||||
{1697342400 -10800 1 PYST}
|
||||
{1710039600 -14400 0 PYT}
|
||||
{1729396800 -10800 1 PYST}
|
||||
{1741489200 -14400 0 PYT}
|
||||
{1760846400 -10800 1 PYST}
|
||||
{1772938800 -14400 0 PYT}
|
||||
{1792296000 -10800 1 PYST}
|
||||
{1804993200 -14400 0 PYT}
|
||||
{1823745600 -10800 1 PYST}
|
||||
{1836442800 -14400 0 PYT}
|
||||
{1855195200 -10800 1 PYST}
|
||||
{1867892400 -14400 0 PYT}
|
||||
{1887249600 -10800 1 PYST}
|
||||
{1899342000 -14400 0 PYT}
|
||||
{1918699200 -10800 1 PYST}
|
||||
{1930791600 -14400 0 PYT}
|
||||
{1950148800 -10800 1 PYST}
|
||||
{1962846000 -14400 0 PYT}
|
||||
{1981598400 -10800 1 PYST}
|
||||
{1994295600 -14400 0 PYT}
|
||||
{2013048000 -10800 1 PYST}
|
||||
{2025745200 -14400 0 PYT}
|
||||
{2044497600 -10800 1 PYST}
|
||||
{2057194800 -14400 0 PYT}
|
||||
{2076552000 -10800 1 PYST}
|
||||
{2088644400 -14400 0 PYT}
|
||||
{2108001600 -10800 1 PYST}
|
||||
{2120094000 -14400 0 PYT}
|
||||
{2139451200 -10800 1 PYST}
|
||||
{2152148400 -14400 0 PYT}
|
||||
{2170900800 -10800 1 PYST}
|
||||
{2183598000 -14400 0 PYT}
|
||||
{2202350400 -10800 1 PYST}
|
||||
{2215047600 -14400 0 PYT}
|
||||
{2234404800 -10800 1 PYST}
|
||||
{2246497200 -14400 0 PYT}
|
||||
{2265854400 -10800 1 PYST}
|
||||
{2277946800 -14400 0 PYT}
|
||||
{2297304000 -10800 1 PYST}
|
||||
{2309396400 -14400 0 PYT}
|
||||
{2328753600 -10800 1 PYST}
|
||||
{2341450800 -14400 0 PYT}
|
||||
{2360203200 -10800 1 PYST}
|
||||
{2372900400 -14400 0 PYT}
|
||||
{2391652800 -10800 1 PYST}
|
||||
{2404350000 -14400 0 PYT}
|
||||
{2423707200 -10800 1 PYST}
|
||||
{2435799600 -14400 0 PYT}
|
||||
{2455156800 -10800 1 PYST}
|
||||
{2467249200 -14400 0 PYT}
|
||||
{2486606400 -10800 1 PYST}
|
||||
{2499303600 -14400 0 PYT}
|
||||
{2518056000 -10800 1 PYST}
|
||||
{2530753200 -14400 0 PYT}
|
||||
{2549505600 -10800 1 PYST}
|
||||
{2562202800 -14400 0 PYT}
|
||||
{2580955200 -10800 1 PYST}
|
||||
{2593652400 -14400 0 PYT}
|
||||
{2613009600 -10800 1 PYST}
|
||||
{2625102000 -14400 0 PYT}
|
||||
{2644459200 -10800 1 PYST}
|
||||
{2656551600 -14400 0 PYT}
|
||||
{2675908800 -10800 1 PYST}
|
||||
{2688606000 -14400 0 PYT}
|
||||
{2707358400 -10800 1 PYST}
|
||||
{2720055600 -14400 0 PYT}
|
||||
{2738808000 -10800 1 PYST}
|
||||
{2751505200 -14400 0 PYT}
|
||||
{2770862400 -10800 1 PYST}
|
||||
{2782954800 -14400 0 PYT}
|
||||
{2802312000 -10800 1 PYST}
|
||||
{2814404400 -14400 0 PYT}
|
||||
{2833761600 -10800 1 PYST}
|
||||
{2846458800 -14400 0 PYT}
|
||||
{2865211200 -10800 1 PYST}
|
||||
{2877908400 -14400 0 PYT}
|
||||
{2896660800 -10800 1 PYST}
|
||||
{2909358000 -14400 0 PYT}
|
||||
{2928110400 -10800 1 PYST}
|
||||
{2940807600 -14400 0 PYT}
|
||||
{2960164800 -10800 1 PYST}
|
||||
{2972257200 -14400 0 PYT}
|
||||
{2991614400 -10800 1 PYST}
|
||||
{3003706800 -14400 0 PYT}
|
||||
{3023064000 -10800 1 PYST}
|
||||
{3035761200 -14400 0 PYT}
|
||||
{3054513600 -10800 1 PYST}
|
||||
{3067210800 -14400 0 PYT}
|
||||
{3085963200 -10800 1 PYST}
|
||||
{3098660400 -14400 0 PYT}
|
||||
{3118017600 -10800 1 PYST}
|
||||
{3130110000 -14400 0 PYT}
|
||||
{3149467200 -10800 1 PYST}
|
||||
{3161559600 -14400 0 PYT}
|
||||
{3180916800 -10800 1 PYST}
|
||||
{3193009200 -14400 0 PYT}
|
||||
{3212366400 -10800 1 PYST}
|
||||
{3225063600 -14400 0 PYT}
|
||||
{3243816000 -10800 1 PYST}
|
||||
{3256513200 -14400 0 PYT}
|
||||
{3275265600 -10800 1 PYST}
|
||||
{3287962800 -14400 0 PYT}
|
||||
{3307320000 -10800 1 PYST}
|
||||
{3319412400 -14400 0 PYT}
|
||||
{3338769600 -10800 1 PYST}
|
||||
{3350862000 -14400 0 PYT}
|
||||
{3370219200 -10800 1 PYST}
|
||||
{3382916400 -14400 0 PYT}
|
||||
{3401668800 -10800 1 PYST}
|
||||
{3414366000 -14400 0 PYT}
|
||||
{3433118400 -10800 1 PYST}
|
||||
{3445815600 -14400 0 PYT}
|
||||
{3464568000 -10800 1 PYST}
|
||||
{3477265200 -14400 0 PYT}
|
||||
{3496622400 -10800 1 PYST}
|
||||
{3508714800 -14400 0 PYT}
|
||||
{3528072000 -10800 1 PYST}
|
||||
{3540164400 -14400 0 PYT}
|
||||
{3559521600 -10800 1 PYST}
|
||||
{3572218800 -14400 0 PYT}
|
||||
{3590971200 -10800 1 PYST}
|
||||
{3603668400 -14400 0 PYT}
|
||||
{3622420800 -10800 1 PYST}
|
||||
{3635118000 -14400 0 PYT}
|
||||
{3654475200 -10800 1 PYST}
|
||||
{3666567600 -14400 0 PYT}
|
||||
{3685924800 -10800 1 PYST}
|
||||
{3698017200 -14400 0 PYT}
|
||||
{3717374400 -10800 1 PYST}
|
||||
{3730071600 -14400 0 PYT}
|
||||
{3748824000 -10800 1 PYST}
|
||||
{3761521200 -14400 0 PYT}
|
||||
{3780273600 -10800 1 PYST}
|
||||
{3792970800 -14400 0 PYT}
|
||||
{3811723200 -10800 1 PYST}
|
||||
{3824420400 -14400 0 PYT}
|
||||
{3843777600 -10800 1 PYST}
|
||||
{3855870000 -14400 0 PYT}
|
||||
{3875227200 -10800 1 PYST}
|
||||
{3887319600 -14400 0 PYT}
|
||||
{3906676800 -10800 1 PYST}
|
||||
{3919374000 -14400 0 PYT}
|
||||
{3938126400 -10800 1 PYST}
|
||||
{3950823600 -14400 0 PYT}
|
||||
{3969576000 -10800 1 PYST}
|
||||
{3982273200 -14400 0 PYT}
|
||||
{4001630400 -10800 1 PYST}
|
||||
{4013722800 -14400 0 PYT}
|
||||
{4033080000 -10800 1 PYST}
|
||||
{4045172400 -14400 0 PYT}
|
||||
{4064529600 -10800 1 PYST}
|
||||
{4076622000 -14400 0 PYT}
|
||||
{4095979200 -10800 1 PYST}
|
||||
{1270954800 -14400 0 PYT}
|
||||
{1286078400 -10800 1 PYST}
|
||||
{1302404400 -14400 0 PYT}
|
||||
{1317528000 -10800 1 PYST}
|
||||
{1333854000 -14400 0 PYT}
|
||||
{1349582400 -10800 1 PYST}
|
||||
{1365908400 -14400 0 PYT}
|
||||
{1381032000 -10800 1 PYST}
|
||||
{1397358000 -14400 0 PYT}
|
||||
{1412481600 -10800 1 PYST}
|
||||
{1428807600 -14400 0 PYT}
|
||||
{1443931200 -10800 1 PYST}
|
||||
{1460257200 -14400 0 PYT}
|
||||
{1475380800 -10800 1 PYST}
|
||||
{1491706800 -14400 0 PYT}
|
||||
{1506830400 -10800 1 PYST}
|
||||
{1523156400 -14400 0 PYT}
|
||||
{1538884800 -10800 1 PYST}
|
||||
{1555210800 -14400 0 PYT}
|
||||
{1570334400 -10800 1 PYST}
|
||||
{1586660400 -14400 0 PYT}
|
||||
{1601784000 -10800 1 PYST}
|
||||
{1618110000 -14400 0 PYT}
|
||||
{1633233600 -10800 1 PYST}
|
||||
{1649559600 -14400 0 PYT}
|
||||
{1664683200 -10800 1 PYST}
|
||||
{1681009200 -14400 0 PYT}
|
||||
{1696132800 -10800 1 PYST}
|
||||
{1713063600 -14400 0 PYT}
|
||||
{1728187200 -10800 1 PYST}
|
||||
{1744513200 -14400 0 PYT}
|
||||
{1759636800 -10800 1 PYST}
|
||||
{1775962800 -14400 0 PYT}
|
||||
{1791086400 -10800 1 PYST}
|
||||
{1807412400 -14400 0 PYT}
|
||||
{1822536000 -10800 1 PYST}
|
||||
{1838862000 -14400 0 PYT}
|
||||
{1853985600 -10800 1 PYST}
|
||||
{1870311600 -14400 0 PYT}
|
||||
{1886040000 -10800 1 PYST}
|
||||
{1902366000 -14400 0 PYT}
|
||||
{1917489600 -10800 1 PYST}
|
||||
{1933815600 -14400 0 PYT}
|
||||
{1948939200 -10800 1 PYST}
|
||||
{1965265200 -14400 0 PYT}
|
||||
{1980388800 -10800 1 PYST}
|
||||
{1996714800 -14400 0 PYT}
|
||||
{2011838400 -10800 1 PYST}
|
||||
{2028164400 -14400 0 PYT}
|
||||
{2043288000 -10800 1 PYST}
|
||||
{2059614000 -14400 0 PYT}
|
||||
{2075342400 -10800 1 PYST}
|
||||
{2091668400 -14400 0 PYT}
|
||||
{2106792000 -10800 1 PYST}
|
||||
{2123118000 -14400 0 PYT}
|
||||
{2138241600 -10800 1 PYST}
|
||||
{2154567600 -14400 0 PYT}
|
||||
{2169691200 -10800 1 PYST}
|
||||
{2186017200 -14400 0 PYT}
|
||||
{2201140800 -10800 1 PYST}
|
||||
{2217466800 -14400 0 PYT}
|
||||
{2233195200 -10800 1 PYST}
|
||||
{2249521200 -14400 0 PYT}
|
||||
{2264644800 -10800 1 PYST}
|
||||
{2280970800 -14400 0 PYT}
|
||||
{2296094400 -10800 1 PYST}
|
||||
{2312420400 -14400 0 PYT}
|
||||
{2327544000 -10800 1 PYST}
|
||||
{2343870000 -14400 0 PYT}
|
||||
{2358993600 -10800 1 PYST}
|
||||
{2375319600 -14400 0 PYT}
|
||||
{2390443200 -10800 1 PYST}
|
||||
{2406769200 -14400 0 PYT}
|
||||
{2422497600 -10800 1 PYST}
|
||||
{2438823600 -14400 0 PYT}
|
||||
{2453947200 -10800 1 PYST}
|
||||
{2470273200 -14400 0 PYT}
|
||||
{2485396800 -10800 1 PYST}
|
||||
{2501722800 -14400 0 PYT}
|
||||
{2516846400 -10800 1 PYST}
|
||||
{2533172400 -14400 0 PYT}
|
||||
{2548296000 -10800 1 PYST}
|
||||
{2564622000 -14400 0 PYT}
|
||||
{2579745600 -10800 1 PYST}
|
||||
{2596676400 -14400 0 PYT}
|
||||
{2611800000 -10800 1 PYST}
|
||||
{2628126000 -14400 0 PYT}
|
||||
{2643249600 -10800 1 PYST}
|
||||
{2659575600 -14400 0 PYT}
|
||||
{2674699200 -10800 1 PYST}
|
||||
{2691025200 -14400 0 PYT}
|
||||
{2706148800 -10800 1 PYST}
|
||||
{2722474800 -14400 0 PYT}
|
||||
{2737598400 -10800 1 PYST}
|
||||
{2753924400 -14400 0 PYT}
|
||||
{2769652800 -10800 1 PYST}
|
||||
{2785978800 -14400 0 PYT}
|
||||
{2801102400 -10800 1 PYST}
|
||||
{2817428400 -14400 0 PYT}
|
||||
{2832552000 -10800 1 PYST}
|
||||
{2848878000 -14400 0 PYT}
|
||||
{2864001600 -10800 1 PYST}
|
||||
{2880327600 -14400 0 PYT}
|
||||
{2895451200 -10800 1 PYST}
|
||||
{2911777200 -14400 0 PYT}
|
||||
{2926900800 -10800 1 PYST}
|
||||
{2943226800 -14400 0 PYT}
|
||||
{2958955200 -10800 1 PYST}
|
||||
{2975281200 -14400 0 PYT}
|
||||
{2990404800 -10800 1 PYST}
|
||||
{3006730800 -14400 0 PYT}
|
||||
{3021854400 -10800 1 PYST}
|
||||
{3038180400 -14400 0 PYT}
|
||||
{3053304000 -10800 1 PYST}
|
||||
{3069630000 -14400 0 PYT}
|
||||
{3084753600 -10800 1 PYST}
|
||||
{3101079600 -14400 0 PYT}
|
||||
{3116808000 -10800 1 PYST}
|
||||
{3133134000 -14400 0 PYT}
|
||||
{3148257600 -10800 1 PYST}
|
||||
{3164583600 -14400 0 PYT}
|
||||
{3179707200 -10800 1 PYST}
|
||||
{3196033200 -14400 0 PYT}
|
||||
{3211156800 -10800 1 PYST}
|
||||
{3227482800 -14400 0 PYT}
|
||||
{3242606400 -10800 1 PYST}
|
||||
{3258932400 -14400 0 PYT}
|
||||
{3274056000 -10800 1 PYST}
|
||||
{3290382000 -14400 0 PYT}
|
||||
{3306110400 -10800 1 PYST}
|
||||
{3322436400 -14400 0 PYT}
|
||||
{3337560000 -10800 1 PYST}
|
||||
{3353886000 -14400 0 PYT}
|
||||
{3369009600 -10800 1 PYST}
|
||||
{3385335600 -14400 0 PYT}
|
||||
{3400459200 -10800 1 PYST}
|
||||
{3416785200 -14400 0 PYT}
|
||||
{3431908800 -10800 1 PYST}
|
||||
{3448234800 -14400 0 PYT}
|
||||
{3463358400 -10800 1 PYST}
|
||||
{3480289200 -14400 0 PYT}
|
||||
{3495412800 -10800 1 PYST}
|
||||
{3511738800 -14400 0 PYT}
|
||||
{3526862400 -10800 1 PYST}
|
||||
{3543188400 -14400 0 PYT}
|
||||
{3558312000 -10800 1 PYST}
|
||||
{3574638000 -14400 0 PYT}
|
||||
{3589761600 -10800 1 PYST}
|
||||
{3606087600 -14400 0 PYT}
|
||||
{3621211200 -10800 1 PYST}
|
||||
{3637537200 -14400 0 PYT}
|
||||
{3653265600 -10800 1 PYST}
|
||||
{3669591600 -14400 0 PYT}
|
||||
{3684715200 -10800 1 PYST}
|
||||
{3701041200 -14400 0 PYT}
|
||||
{3716164800 -10800 1 PYST}
|
||||
{3732490800 -14400 0 PYT}
|
||||
{3747614400 -10800 1 PYST}
|
||||
{3763940400 -14400 0 PYT}
|
||||
{3779064000 -10800 1 PYST}
|
||||
{3795390000 -14400 0 PYT}
|
||||
{3810513600 -10800 1 PYST}
|
||||
{3826839600 -14400 0 PYT}
|
||||
{3842568000 -10800 1 PYST}
|
||||
{3858894000 -14400 0 PYT}
|
||||
{3874017600 -10800 1 PYST}
|
||||
{3890343600 -14400 0 PYT}
|
||||
{3905467200 -10800 1 PYST}
|
||||
{3921793200 -14400 0 PYT}
|
||||
{3936916800 -10800 1 PYST}
|
||||
{3953242800 -14400 0 PYT}
|
||||
{3968366400 -10800 1 PYST}
|
||||
{3984692400 -14400 0 PYT}
|
||||
{4000420800 -10800 1 PYST}
|
||||
{4016746800 -14400 0 PYT}
|
||||
{4031870400 -10800 1 PYST}
|
||||
{4048196400 -14400 0 PYT}
|
||||
{4063320000 -10800 1 PYST}
|
||||
{4079646000 -14400 0 PYT}
|
||||
{4094769600 -10800 1 PYST}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,222 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:America/Bahia_Banderas) {
|
||||
{-9223372036854775808 -25260 0 LMT}
|
||||
{-1514739600 -25200 0 MST}
|
||||
{-1343066400 -21600 0 CST}
|
||||
{-1234807200 -25200 0 MST}
|
||||
{-1220292000 -21600 0 CST}
|
||||
{-1207159200 -25200 0 MST}
|
||||
{-1191344400 -21600 0 CST}
|
||||
{-873828000 -25200 0 MST}
|
||||
{-661539600 -28800 0 PST}
|
||||
{28800 -25200 0 MST}
|
||||
{828867600 -21600 1 MDT}
|
||||
{846403200 -25200 0 MST}
|
||||
{860317200 -21600 1 MDT}
|
||||
{877852800 -25200 0 MST}
|
||||
{891766800 -21600 1 MDT}
|
||||
{909302400 -25200 0 MST}
|
||||
{923216400 -21600 1 MDT}
|
||||
{941356800 -25200 0 MST}
|
||||
{954666000 -21600 1 MDT}
|
||||
{972806400 -25200 0 MST}
|
||||
{989139600 -21600 1 MDT}
|
||||
{1001836800 -25200 0 MST}
|
||||
{1018170000 -21600 1 MDT}
|
||||
{1035705600 -25200 0 MST}
|
||||
{1049619600 -21600 1 MDT}
|
||||
{1067155200 -25200 0 MST}
|
||||
{1081069200 -21600 1 MDT}
|
||||
{1099209600 -25200 0 MST}
|
||||
{1112518800 -21600 1 MDT}
|
||||
{1130659200 -25200 0 MST}
|
||||
{1143968400 -21600 1 MDT}
|
||||
{1162108800 -25200 0 MST}
|
||||
{1175418000 -21600 1 MDT}
|
||||
{1193558400 -25200 0 MST}
|
||||
{1207472400 -21600 1 MDT}
|
||||
{1225008000 -25200 0 MST}
|
||||
{1238922000 -21600 1 MDT}
|
||||
{1256457600 -25200 0 MST}
|
||||
{1270371600 -18000 0 CDT}
|
||||
{1288508400 -21600 0 CST}
|
||||
{1301817600 -18000 1 CDT}
|
||||
{1319958000 -21600 0 CST}
|
||||
{1333267200 -18000 1 CDT}
|
||||
{1351407600 -21600 0 CST}
|
||||
{1365321600 -18000 1 CDT}
|
||||
{1382857200 -21600 0 CST}
|
||||
{1396771200 -18000 1 CDT}
|
||||
{1414306800 -21600 0 CST}
|
||||
{1428220800 -18000 1 CDT}
|
||||
{1445756400 -21600 0 CST}
|
||||
{1459670400 -18000 1 CDT}
|
||||
{1477810800 -21600 0 CST}
|
||||
{1491120000 -18000 1 CDT}
|
||||
{1509260400 -21600 0 CST}
|
||||
{1522569600 -18000 1 CDT}
|
||||
{1540710000 -21600 0 CST}
|
||||
{1554624000 -18000 1 CDT}
|
||||
{1572159600 -21600 0 CST}
|
||||
{1586073600 -18000 1 CDT}
|
||||
{1603609200 -21600 0 CST}
|
||||
{1617523200 -18000 1 CDT}
|
||||
{1635663600 -21600 0 CST}
|
||||
{1648972800 -18000 1 CDT}
|
||||
{1667113200 -21600 0 CST}
|
||||
{1680422400 -18000 1 CDT}
|
||||
{1698562800 -21600 0 CST}
|
||||
{1712476800 -18000 1 CDT}
|
||||
{1730012400 -21600 0 CST}
|
||||
{1743926400 -18000 1 CDT}
|
||||
{1761462000 -21600 0 CST}
|
||||
{1775376000 -18000 1 CDT}
|
||||
{1792911600 -21600 0 CST}
|
||||
{1806825600 -18000 1 CDT}
|
||||
{1824966000 -21600 0 CST}
|
||||
{1838275200 -18000 1 CDT}
|
||||
{1856415600 -21600 0 CST}
|
||||
{1869724800 -18000 1 CDT}
|
||||
{1887865200 -21600 0 CST}
|
||||
{1901779200 -18000 1 CDT}
|
||||
{1919314800 -21600 0 CST}
|
||||
{1933228800 -18000 1 CDT}
|
||||
{1950764400 -21600 0 CST}
|
||||
{1964678400 -18000 1 CDT}
|
||||
{1982818800 -21600 0 CST}
|
||||
{1996128000 -18000 1 CDT}
|
||||
{2014268400 -21600 0 CST}
|
||||
{2027577600 -18000 1 CDT}
|
||||
{2045718000 -21600 0 CST}
|
||||
{2059027200 -18000 1 CDT}
|
||||
{2077167600 -21600 0 CST}
|
||||
{2091081600 -18000 1 CDT}
|
||||
{2108617200 -21600 0 CST}
|
||||
{2122531200 -18000 1 CDT}
|
||||
{2140066800 -21600 0 CST}
|
||||
{2153980800 -18000 1 CDT}
|
||||
{2172121200 -21600 0 CST}
|
||||
{2185430400 -18000 1 CDT}
|
||||
{2203570800 -21600 0 CST}
|
||||
{2216880000 -18000 1 CDT}
|
||||
{2235020400 -21600 0 CST}
|
||||
{2248934400 -18000 1 CDT}
|
||||
{2266470000 -21600 0 CST}
|
||||
{2280384000 -18000 1 CDT}
|
||||
{2297919600 -21600 0 CST}
|
||||
{2311833600 -18000 1 CDT}
|
||||
{2329369200 -21600 0 CST}
|
||||
{2343283200 -18000 1 CDT}
|
||||
{2361423600 -21600 0 CST}
|
||||
{2374732800 -18000 1 CDT}
|
||||
{2392873200 -21600 0 CST}
|
||||
{2406182400 -18000 1 CDT}
|
||||
{2424322800 -21600 0 CST}
|
||||
{2438236800 -18000 1 CDT}
|
||||
{2455772400 -21600 0 CST}
|
||||
{2469686400 -18000 1 CDT}
|
||||
{2487222000 -21600 0 CST}
|
||||
{2501136000 -18000 1 CDT}
|
||||
{2519276400 -21600 0 CST}
|
||||
{2532585600 -18000 1 CDT}
|
||||
{2550726000 -21600 0 CST}
|
||||
{2564035200 -18000 1 CDT}
|
||||
{2582175600 -21600 0 CST}
|
||||
{2596089600 -18000 1 CDT}
|
||||
{2613625200 -21600 0 CST}
|
||||
{2627539200 -18000 1 CDT}
|
||||
{2645074800 -21600 0 CST}
|
||||
{2658988800 -18000 1 CDT}
|
||||
{2676524400 -21600 0 CST}
|
||||
{2690438400 -18000 1 CDT}
|
||||
{2708578800 -21600 0 CST}
|
||||
{2721888000 -18000 1 CDT}
|
||||
{2740028400 -21600 0 CST}
|
||||
{2753337600 -18000 1 CDT}
|
||||
{2771478000 -21600 0 CST}
|
||||
{2785392000 -18000 1 CDT}
|
||||
{2802927600 -21600 0 CST}
|
||||
{2816841600 -18000 1 CDT}
|
||||
{2834377200 -21600 0 CST}
|
||||
{2848291200 -18000 1 CDT}
|
||||
{2866431600 -21600 0 CST}
|
||||
{2879740800 -18000 1 CDT}
|
||||
{2897881200 -21600 0 CST}
|
||||
{2911190400 -18000 1 CDT}
|
||||
{2929330800 -21600 0 CST}
|
||||
{2942640000 -18000 1 CDT}
|
||||
{2960780400 -21600 0 CST}
|
||||
{2974694400 -18000 1 CDT}
|
||||
{2992230000 -21600 0 CST}
|
||||
{3006144000 -18000 1 CDT}
|
||||
{3023679600 -21600 0 CST}
|
||||
{3037593600 -18000 1 CDT}
|
||||
{3055734000 -21600 0 CST}
|
||||
{3069043200 -18000 1 CDT}
|
||||
{3087183600 -21600 0 CST}
|
||||
{3100492800 -18000 1 CDT}
|
||||
{3118633200 -21600 0 CST}
|
||||
{3132547200 -18000 1 CDT}
|
||||
{3150082800 -21600 0 CST}
|
||||
{3163996800 -18000 1 CDT}
|
||||
{3181532400 -21600 0 CST}
|
||||
{3195446400 -18000 1 CDT}
|
||||
{3212982000 -21600 0 CST}
|
||||
{3226896000 -18000 1 CDT}
|
||||
{3245036400 -21600 0 CST}
|
||||
{3258345600 -18000 1 CDT}
|
||||
{3276486000 -21600 0 CST}
|
||||
{3289795200 -18000 1 CDT}
|
||||
{3307935600 -21600 0 CST}
|
||||
{3321849600 -18000 1 CDT}
|
||||
{3339385200 -21600 0 CST}
|
||||
{3353299200 -18000 1 CDT}
|
||||
{3370834800 -21600 0 CST}
|
||||
{3384748800 -18000 1 CDT}
|
||||
{3402889200 -21600 0 CST}
|
||||
{3416198400 -18000 1 CDT}
|
||||
{3434338800 -21600 0 CST}
|
||||
{3447648000 -18000 1 CDT}
|
||||
{3465788400 -21600 0 CST}
|
||||
{3479702400 -18000 1 CDT}
|
||||
{3497238000 -21600 0 CST}
|
||||
{3511152000 -18000 1 CDT}
|
||||
{3528687600 -21600 0 CST}
|
||||
{3542601600 -18000 1 CDT}
|
||||
{3560137200 -21600 0 CST}
|
||||
{3574051200 -18000 1 CDT}
|
||||
{3592191600 -21600 0 CST}
|
||||
{3605500800 -18000 1 CDT}
|
||||
{3623641200 -21600 0 CST}
|
||||
{3636950400 -18000 1 CDT}
|
||||
{3655090800 -21600 0 CST}
|
||||
{3669004800 -18000 1 CDT}
|
||||
{3686540400 -21600 0 CST}
|
||||
{3700454400 -18000 1 CDT}
|
||||
{3717990000 -21600 0 CST}
|
||||
{3731904000 -18000 1 CDT}
|
||||
{3750044400 -21600 0 CST}
|
||||
{3763353600 -18000 1 CDT}
|
||||
{3781494000 -21600 0 CST}
|
||||
{3794803200 -18000 1 CDT}
|
||||
{3812943600 -21600 0 CST}
|
||||
{3826252800 -18000 1 CDT}
|
||||
{3844393200 -21600 0 CST}
|
||||
{3858307200 -18000 1 CDT}
|
||||
{3875842800 -21600 0 CST}
|
||||
{3889756800 -18000 1 CDT}
|
||||
{3907292400 -21600 0 CST}
|
||||
{3921206400 -18000 1 CDT}
|
||||
{3939346800 -21600 0 CST}
|
||||
{3952656000 -18000 1 CDT}
|
||||
{3970796400 -21600 0 CST}
|
||||
{3984105600 -18000 1 CDT}
|
||||
{4002246000 -21600 0 CST}
|
||||
{4016160000 -18000 1 CDT}
|
||||
{4033695600 -21600 0 CST}
|
||||
{4047609600 -18000 1 CDT}
|
||||
{4065145200 -21600 0 CST}
|
||||
{4079059200 -18000 1 CDT}
|
||||
{4096594800 -21600 0 CST}
|
||||
}
|
|
@ -0,0 +1,219 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:America/Matamoros) {
|
||||
{-9223372036854775808 -24000 0 LMT}
|
||||
{-1514743200 -21600 0 CST}
|
||||
{568015200 -21600 0 CST}
|
||||
{576057600 -18000 1 CDT}
|
||||
{594198000 -21600 0 CST}
|
||||
{599637600 -21600 0 CST}
|
||||
{828864000 -18000 1 CDT}
|
||||
{846399600 -21600 0 CST}
|
||||
{860313600 -18000 1 CDT}
|
||||
{877849200 -21600 0 CST}
|
||||
{891763200 -18000 1 CDT}
|
||||
{909298800 -21600 0 CST}
|
||||
{923212800 -18000 1 CDT}
|
||||
{941353200 -21600 0 CST}
|
||||
{954662400 -18000 1 CDT}
|
||||
{972802800 -21600 0 CST}
|
||||
{989136000 -18000 1 CDT}
|
||||
{1001833200 -21600 0 CST}
|
||||
{1018166400 -18000 1 CDT}
|
||||
{1035702000 -21600 0 CST}
|
||||
{1049616000 -18000 1 CDT}
|
||||
{1067151600 -21600 0 CST}
|
||||
{1081065600 -18000 1 CDT}
|
||||
{1099206000 -21600 0 CST}
|
||||
{1112515200 -18000 1 CDT}
|
||||
{1130655600 -21600 0 CST}
|
||||
{1143964800 -18000 1 CDT}
|
||||
{1162105200 -21600 0 CST}
|
||||
{1175414400 -18000 1 CDT}
|
||||
{1193554800 -21600 0 CST}
|
||||
{1207468800 -18000 1 CDT}
|
||||
{1225004400 -21600 0 CST}
|
||||
{1238918400 -18000 1 CDT}
|
||||
{1256454000 -21600 0 CST}
|
||||
{1262325600 -21600 0 CST}
|
||||
{1268553600 -18000 1 CDT}
|
||||
{1289113200 -21600 0 CST}
|
||||
{1300003200 -18000 1 CDT}
|
||||
{1320562800 -21600 0 CST}
|
||||
{1331452800 -18000 1 CDT}
|
||||
{1352012400 -21600 0 CST}
|
||||
{1362902400 -18000 1 CDT}
|
||||
{1383462000 -21600 0 CST}
|
||||
{1394352000 -18000 1 CDT}
|
||||
{1414911600 -21600 0 CST}
|
||||
{1425801600 -18000 1 CDT}
|
||||
{1446361200 -21600 0 CST}
|
||||
{1457856000 -18000 1 CDT}
|
||||
{1478415600 -21600 0 CST}
|
||||
{1489305600 -18000 1 CDT}
|
||||
{1509865200 -21600 0 CST}
|
||||
{1520755200 -18000 1 CDT}
|
||||
{1541314800 -21600 0 CST}
|
||||
{1552204800 -18000 1 CDT}
|
||||
{1572764400 -21600 0 CST}
|
||||
{1583654400 -18000 1 CDT}
|
||||
{1604214000 -21600 0 CST}
|
||||
{1615708800 -18000 1 CDT}
|
||||
{1636268400 -21600 0 CST}
|
||||
{1647158400 -18000 1 CDT}
|
||||
{1667718000 -21600 0 CST}
|
||||
{1678608000 -18000 1 CDT}
|
||||
{1699167600 -21600 0 CST}
|
||||
{1710057600 -18000 1 CDT}
|
||||
{1730617200 -21600 0 CST}
|
||||
{1741507200 -18000 1 CDT}
|
||||
{1762066800 -21600 0 CST}
|
||||
{1772956800 -18000 1 CDT}
|
||||
{1793516400 -21600 0 CST}
|
||||
{1805011200 -18000 1 CDT}
|
||||
{1825570800 -21600 0 CST}
|
||||
{1836460800 -18000 1 CDT}
|
||||
{1857020400 -21600 0 CST}
|
||||
{1867910400 -18000 1 CDT}
|
||||
{1888470000 -21600 0 CST}
|
||||
{1899360000 -18000 1 CDT}
|
||||
{1919919600 -21600 0 CST}
|
||||
{1930809600 -18000 1 CDT}
|
||||
{1951369200 -21600 0 CST}
|
||||
{1962864000 -18000 1 CDT}
|
||||
{1983423600 -21600 0 CST}
|
||||
{1994313600 -18000 1 CDT}
|
||||
{2014873200 -21600 0 CST}
|
||||
{2025763200 -18000 1 CDT}
|
||||
{2046322800 -21600 0 CST}
|
||||
{2057212800 -18000 1 CDT}
|
||||
{2077772400 -21600 0 CST}
|
||||
{2088662400 -18000 1 CDT}
|
||||
{2109222000 -21600 0 CST}
|
||||
{2120112000 -18000 1 CDT}
|
||||
{2140671600 -21600 0 CST}
|
||||
{2152166400 -18000 1 CDT}
|
||||
{2172726000 -21600 0 CST}
|
||||
{2183616000 -18000 1 CDT}
|
||||
{2204175600 -21600 0 CST}
|
||||
{2215065600 -18000 1 CDT}
|
||||
{2235625200 -21600 0 CST}
|
||||
{2246515200 -18000 1 CDT}
|
||||
{2267074800 -21600 0 CST}
|
||||
{2277964800 -18000 1 CDT}
|
||||
{2298524400 -21600 0 CST}
|
||||
{2309414400 -18000 1 CDT}
|
||||
{2329974000 -21600 0 CST}
|
||||
{2341468800 -18000 1 CDT}
|
||||
{2362028400 -21600 0 CST}
|
||||
{2372918400 -18000 1 CDT}
|
||||
{2393478000 -21600 0 CST}
|
||||
{2404368000 -18000 1 CDT}
|
||||
{2424927600 -21600 0 CST}
|
||||
{2435817600 -18000 1 CDT}
|
||||
{2456377200 -21600 0 CST}
|
||||
{2467267200 -18000 1 CDT}
|
||||
{2487826800 -21600 0 CST}
|
||||
{2499321600 -18000 1 CDT}
|
||||
{2519881200 -21600 0 CST}
|
||||
{2530771200 -18000 1 CDT}
|
||||
{2551330800 -21600 0 CST}
|
||||
{2562220800 -18000 1 CDT}
|
||||
{2582780400 -21600 0 CST}
|
||||
{2593670400 -18000 1 CDT}
|
||||
{2614230000 -21600 0 CST}
|
||||
{2625120000 -18000 1 CDT}
|
||||
{2645679600 -21600 0 CST}
|
||||
{2656569600 -18000 1 CDT}
|
||||
{2677129200 -21600 0 CST}
|
||||
{2688624000 -18000 1 CDT}
|
||||
{2709183600 -21600 0 CST}
|
||||
{2720073600 -18000 1 CDT}
|
||||
{2740633200 -21600 0 CST}
|
||||
{2751523200 -18000 1 CDT}
|
||||
{2772082800 -21600 0 CST}
|
||||
{2782972800 -18000 1 CDT}
|
||||
{2803532400 -21600 0 CST}
|
||||
{2814422400 -18000 1 CDT}
|
||||
{2834982000 -21600 0 CST}
|
||||
{2846476800 -18000 1 CDT}
|
||||
{2867036400 -21600 0 CST}
|
||||
{2877926400 -18000 1 CDT}
|
||||
{2898486000 -21600 0 CST}
|
||||
{2909376000 -18000 1 CDT}
|
||||
{2929935600 -21600 0 CST}
|
||||
{2940825600 -18000 1 CDT}
|
||||
{2961385200 -21600 0 CST}
|
||||
{2972275200 -18000 1 CDT}
|
||||
{2992834800 -21600 0 CST}
|
||||
{3003724800 -18000 1 CDT}
|
||||
{3024284400 -21600 0 CST}
|
||||
{3035779200 -18000 1 CDT}
|
||||
{3056338800 -21600 0 CST}
|
||||
{3067228800 -18000 1 CDT}
|
||||
{3087788400 -21600 0 CST}
|
||||
{3098678400 -18000 1 CDT}
|
||||
{3119238000 -21600 0 CST}
|
||||
{3130128000 -18000 1 CDT}
|
||||
{3150687600 -21600 0 CST}
|
||||
{3161577600 -18000 1 CDT}
|
||||
{3182137200 -21600 0 CST}
|
||||
{3193027200 -18000 1 CDT}
|
||||
{3213586800 -21600 0 CST}
|
||||
{3225081600 -18000 1 CDT}
|
||||
{3245641200 -21600 0 CST}
|
||||
{3256531200 -18000 1 CDT}
|
||||
{3277090800 -21600 0 CST}
|
||||
{3287980800 -18000 1 CDT}
|
||||
{3308540400 -21600 0 CST}
|
||||
{3319430400 -18000 1 CDT}
|
||||
{3339990000 -21600 0 CST}
|
||||
{3350880000 -18000 1 CDT}
|
||||
{3371439600 -21600 0 CST}
|
||||
{3382934400 -18000 1 CDT}
|
||||
{3403494000 -21600 0 CST}
|
||||
{3414384000 -18000 1 CDT}
|
||||
{3434943600 -21600 0 CST}
|
||||
{3445833600 -18000 1 CDT}
|
||||
{3466393200 -21600 0 CST}
|
||||
{3477283200 -18000 1 CDT}
|
||||
{3497842800 -21600 0 CST}
|
||||
{3508732800 -18000 1 CDT}
|
||||
{3529292400 -21600 0 CST}
|
||||
{3540182400 -18000 1 CDT}
|
||||
{3560742000 -21600 0 CST}
|
||||
{3572236800 -18000 1 CDT}
|
||||
{3592796400 -21600 0 CST}
|
||||
{3603686400 -18000 1 CDT}
|
||||
{3624246000 -21600 0 CST}
|
||||
{3635136000 -18000 1 CDT}
|
||||
{3655695600 -21600 0 CST}
|
||||
{3666585600 -18000 1 CDT}
|
||||
{3687145200 -21600 0 CST}
|
||||
{3698035200 -18000 1 CDT}
|
||||
{3718594800 -21600 0 CST}
|
||||
{3730089600 -18000 1 CDT}
|
||||
{3750649200 -21600 0 CST}
|
||||
{3761539200 -18000 1 CDT}
|
||||
{3782098800 -21600 0 CST}
|
||||
{3792988800 -18000 1 CDT}
|
||||
{3813548400 -21600 0 CST}
|
||||
{3824438400 -18000 1 CDT}
|
||||
{3844998000 -21600 0 CST}
|
||||
{3855888000 -18000 1 CDT}
|
||||
{3876447600 -21600 0 CST}
|
||||
{3887337600 -18000 1 CDT}
|
||||
{3907897200 -21600 0 CST}
|
||||
{3919392000 -18000 1 CDT}
|
||||
{3939951600 -21600 0 CST}
|
||||
{3950841600 -18000 1 CDT}
|
||||
{3971401200 -21600 0 CST}
|
||||
{3982291200 -18000 1 CDT}
|
||||
{4002850800 -21600 0 CST}
|
||||
{4013740800 -18000 1 CDT}
|
||||
{4034300400 -21600 0 CST}
|
||||
{4045190400 -18000 1 CDT}
|
||||
{4065750000 -21600 0 CST}
|
||||
{4076640000 -18000 1 CDT}
|
||||
{4097199600 -21600 0 CST}
|
||||
}
|
|
@ -0,0 +1,222 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:America/Ojinaga) {
|
||||
{-9223372036854775808 -25060 0 LMT}
|
||||
{-1514739600 -25200 0 MST}
|
||||
{-1343066400 -21600 0 CST}
|
||||
{-1234807200 -25200 0 MST}
|
||||
{-1220292000 -21600 0 CST}
|
||||
{-1207159200 -25200 0 MST}
|
||||
{-1191344400 -21600 0 CST}
|
||||
{820476000 -21600 0 CST}
|
||||
{828864000 -18000 1 CDT}
|
||||
{846399600 -21600 0 CST}
|
||||
{860313600 -18000 1 CDT}
|
||||
{877849200 -21600 0 CST}
|
||||
{883634400 -21600 0 CST}
|
||||
{891766800 -21600 0 MDT}
|
||||
{909302400 -25200 0 MST}
|
||||
{923216400 -21600 1 MDT}
|
||||
{941356800 -25200 0 MST}
|
||||
{954666000 -21600 1 MDT}
|
||||
{972806400 -25200 0 MST}
|
||||
{989139600 -21600 1 MDT}
|
||||
{1001836800 -25200 0 MST}
|
||||
{1018170000 -21600 1 MDT}
|
||||
{1035705600 -25200 0 MST}
|
||||
{1049619600 -21600 1 MDT}
|
||||
{1067155200 -25200 0 MST}
|
||||
{1081069200 -21600 1 MDT}
|
||||
{1099209600 -25200 0 MST}
|
||||
{1112518800 -21600 1 MDT}
|
||||
{1130659200 -25200 0 MST}
|
||||
{1143968400 -21600 1 MDT}
|
||||
{1162108800 -25200 0 MST}
|
||||
{1175418000 -21600 1 MDT}
|
||||
{1193558400 -25200 0 MST}
|
||||
{1207472400 -21600 1 MDT}
|
||||
{1225008000 -25200 0 MST}
|
||||
{1238922000 -21600 1 MDT}
|
||||
{1256457600 -25200 0 MST}
|
||||
{1262329200 -25200 0 MST}
|
||||
{1268557200 -21600 1 MDT}
|
||||
{1289116800 -25200 0 MST}
|
||||
{1300006800 -21600 1 MDT}
|
||||
{1320566400 -25200 0 MST}
|
||||
{1331456400 -21600 1 MDT}
|
||||
{1352016000 -25200 0 MST}
|
||||
{1362906000 -21600 1 MDT}
|
||||
{1383465600 -25200 0 MST}
|
||||
{1394355600 -21600 1 MDT}
|
||||
{1414915200 -25200 0 MST}
|
||||
{1425805200 -21600 1 MDT}
|
||||
{1446364800 -25200 0 MST}
|
||||
{1457859600 -21600 1 MDT}
|
||||
{1478419200 -25200 0 MST}
|
||||
{1489309200 -21600 1 MDT}
|
||||
{1509868800 -25200 0 MST}
|
||||
{1520758800 -21600 1 MDT}
|
||||
{1541318400 -25200 0 MST}
|
||||
{1552208400 -21600 1 MDT}
|
||||
{1572768000 -25200 0 MST}
|
||||
{1583658000 -21600 1 MDT}
|
||||
{1604217600 -25200 0 MST}
|
||||
{1615712400 -21600 1 MDT}
|
||||
{1636272000 -25200 0 MST}
|
||||
{1647162000 -21600 1 MDT}
|
||||
{1667721600 -25200 0 MST}
|
||||
{1678611600 -21600 1 MDT}
|
||||
{1699171200 -25200 0 MST}
|
||||
{1710061200 -21600 1 MDT}
|
||||
{1730620800 -25200 0 MST}
|
||||
{1741510800 -21600 1 MDT}
|
||||
{1762070400 -25200 0 MST}
|
||||
{1772960400 -21600 1 MDT}
|
||||
{1793520000 -25200 0 MST}
|
||||
{1805014800 -21600 1 MDT}
|
||||
{1825574400 -25200 0 MST}
|
||||
{1836464400 -21600 1 MDT}
|
||||
{1857024000 -25200 0 MST}
|
||||
{1867914000 -21600 1 MDT}
|
||||
{1888473600 -25200 0 MST}
|
||||
{1899363600 -21600 1 MDT}
|
||||
{1919923200 -25200 0 MST}
|
||||
{1930813200 -21600 1 MDT}
|
||||
{1951372800 -25200 0 MST}
|
||||
{1962867600 -21600 1 MDT}
|
||||
{1983427200 -25200 0 MST}
|
||||
{1994317200 -21600 1 MDT}
|
||||
{2014876800 -25200 0 MST}
|
||||
{2025766800 -21600 1 MDT}
|
||||
{2046326400 -25200 0 MST}
|
||||
{2057216400 -21600 1 MDT}
|
||||
{2077776000 -25200 0 MST}
|
||||
{2088666000 -21600 1 MDT}
|
||||
{2109225600 -25200 0 MST}
|
||||
{2120115600 -21600 1 MDT}
|
||||
{2140675200 -25200 0 MST}
|
||||
{2152170000 -21600 1 MDT}
|
||||
{2172729600 -25200 0 MST}
|
||||
{2183619600 -21600 1 MDT}
|
||||
{2204179200 -25200 0 MST}
|
||||
{2215069200 -21600 1 MDT}
|
||||
{2235628800 -25200 0 MST}
|
||||
{2246518800 -21600 1 MDT}
|
||||
{2267078400 -25200 0 MST}
|
||||
{2277968400 -21600 1 MDT}
|
||||
{2298528000 -25200 0 MST}
|
||||
{2309418000 -21600 1 MDT}
|
||||
{2329977600 -25200 0 MST}
|
||||
{2341472400 -21600 1 MDT}
|
||||
{2362032000 -25200 0 MST}
|
||||
{2372922000 -21600 1 MDT}
|
||||
{2393481600 -25200 0 MST}
|
||||
{2404371600 -21600 1 MDT}
|
||||
{2424931200 -25200 0 MST}
|
||||
{2435821200 -21600 1 MDT}
|
||||
{2456380800 -25200 0 MST}
|
||||
{2467270800 -21600 1 MDT}
|
||||
{2487830400 -25200 0 MST}
|
||||
{2499325200 -21600 1 MDT}
|
||||
{2519884800 -25200 0 MST}
|
||||
{2530774800 -21600 1 MDT}
|
||||
{2551334400 -25200 0 MST}
|
||||
{2562224400 -21600 1 MDT}
|
||||
{2582784000 -25200 0 MST}
|
||||
{2593674000 -21600 1 MDT}
|
||||
{2614233600 -25200 0 MST}
|
||||
{2625123600 -21600 1 MDT}
|
||||
{2645683200 -25200 0 MST}
|
||||
{2656573200 -21600 1 MDT}
|
||||
{2677132800 -25200 0 MST}
|
||||
{2688627600 -21600 1 MDT}
|
||||
{2709187200 -25200 0 MST}
|
||||
{2720077200 -21600 1 MDT}
|
||||
{2740636800 -25200 0 MST}
|
||||
{2751526800 -21600 1 MDT}
|
||||
{2772086400 -25200 0 MST}
|
||||
{2782976400 -21600 1 MDT}
|
||||
{2803536000 -25200 0 MST}
|
||||
{2814426000 -21600 1 MDT}
|
||||
{2834985600 -25200 0 MST}
|
||||
{2846480400 -21600 1 MDT}
|
||||
{2867040000 -25200 0 MST}
|
||||
{2877930000 -21600 1 MDT}
|
||||
{2898489600 -25200 0 MST}
|
||||
{2909379600 -21600 1 MDT}
|
||||
{2929939200 -25200 0 MST}
|
||||
{2940829200 -21600 1 MDT}
|
||||
{2961388800 -25200 0 MST}
|
||||
{2972278800 -21600 1 MDT}
|
||||
{2992838400 -25200 0 MST}
|
||||
{3003728400 -21600 1 MDT}
|
||||
{3024288000 -25200 0 MST}
|
||||
{3035782800 -21600 1 MDT}
|
||||
{3056342400 -25200 0 MST}
|
||||
{3067232400 -21600 1 MDT}
|
||||
{3087792000 -25200 0 MST}
|
||||
{3098682000 -21600 1 MDT}
|
||||
{3119241600 -25200 0 MST}
|
||||
{3130131600 -21600 1 MDT}
|
||||
{3150691200 -25200 0 MST}
|
||||
{3161581200 -21600 1 MDT}
|
||||
{3182140800 -25200 0 MST}
|
||||
{3193030800 -21600 1 MDT}
|
||||
{3213590400 -25200 0 MST}
|
||||
{3225085200 -21600 1 MDT}
|
||||
{3245644800 -25200 0 MST}
|
||||
{3256534800 -21600 1 MDT}
|
||||
{3277094400 -25200 0 MST}
|
||||
{3287984400 -21600 1 MDT}
|
||||
{3308544000 -25200 0 MST}
|
||||
{3319434000 -21600 1 MDT}
|
||||
{3339993600 -25200 0 MST}
|
||||
{3350883600 -21600 1 MDT}
|
||||
{3371443200 -25200 0 MST}
|
||||
{3382938000 -21600 1 MDT}
|
||||
{3403497600 -25200 0 MST}
|
||||
{3414387600 -21600 1 MDT}
|
||||
{3434947200 -25200 0 MST}
|
||||
{3445837200 -21600 1 MDT}
|
||||
{3466396800 -25200 0 MST}
|
||||
{3477286800 -21600 1 MDT}
|
||||
{3497846400 -25200 0 MST}
|
||||
{3508736400 -21600 1 MDT}
|
||||
{3529296000 -25200 0 MST}
|
||||
{3540186000 -21600 1 MDT}
|
||||
{3560745600 -25200 0 MST}
|
||||
{3572240400 -21600 1 MDT}
|
||||
{3592800000 -25200 0 MST}
|
||||
{3603690000 -21600 1 MDT}
|
||||
{3624249600 -25200 0 MST}
|
||||
{3635139600 -21600 1 MDT}
|
||||
{3655699200 -25200 0 MST}
|
||||
{3666589200 -21600 1 MDT}
|
||||
{3687148800 -25200 0 MST}
|
||||
{3698038800 -21600 1 MDT}
|
||||
{3718598400 -25200 0 MST}
|
||||
{3730093200 -21600 1 MDT}
|
||||
{3750652800 -25200 0 MST}
|
||||
{3761542800 -21600 1 MDT}
|
||||
{3782102400 -25200 0 MST}
|
||||
{3792992400 -21600 1 MDT}
|
||||
{3813552000 -25200 0 MST}
|
||||
{3824442000 -21600 1 MDT}
|
||||
{3845001600 -25200 0 MST}
|
||||
{3855891600 -21600 1 MDT}
|
||||
{3876451200 -25200 0 MST}
|
||||
{3887341200 -21600 1 MDT}
|
||||
{3907900800 -25200 0 MST}
|
||||
{3919395600 -21600 1 MDT}
|
||||
{3939955200 -25200 0 MST}
|
||||
{3950845200 -21600 1 MDT}
|
||||
{3971404800 -25200 0 MST}
|
||||
{3982294800 -21600 1 MDT}
|
||||
{4002854400 -25200 0 MST}
|
||||
{4013744400 -21600 1 MDT}
|
||||
{4034304000 -25200 0 MST}
|
||||
{4045194000 -21600 1 MDT}
|
||||
{4065753600 -25200 0 MST}
|
||||
{4076643600 -21600 1 MDT}
|
||||
{4097203200 -25200 0 MST}
|
||||
}
|
|
@ -0,0 +1,284 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:America/Santa_Isabel) {
|
||||
{-9223372036854775808 -27568 0 LMT}
|
||||
{-1514736000 -25200 0 MST}
|
||||
{-1451667600 -28800 0 PST}
|
||||
{-1343062800 -25200 0 MST}
|
||||
{-1234803600 -28800 0 PST}
|
||||
{-1222963200 -25200 1 PDT}
|
||||
{-1207242000 -28800 0 PST}
|
||||
{-873820800 -25200 1 PWT}
|
||||
{-769395600 -25200 1 PPT}
|
||||
{-761677200 -28800 0 PST}
|
||||
{-686073600 -25200 1 PDT}
|
||||
{-661539600 -28800 0 PST}
|
||||
{-504892800 -28800 0 PST}
|
||||
{-495036000 -25200 1 PDT}
|
||||
{-481734000 -28800 0 PST}
|
||||
{-463586400 -25200 1 PDT}
|
||||
{-450284400 -28800 0 PST}
|
||||
{-431532000 -25200 1 PDT}
|
||||
{-418230000 -28800 0 PST}
|
||||
{-400082400 -25200 1 PDT}
|
||||
{-386780400 -28800 0 PST}
|
||||
{-368632800 -25200 1 PDT}
|
||||
{-355330800 -28800 0 PST}
|
||||
{-337183200 -25200 1 PDT}
|
||||
{-323881200 -28800 0 PST}
|
||||
{-305733600 -25200 1 PDT}
|
||||
{-292431600 -28800 0 PST}
|
||||
{-283968000 -28800 0 PST}
|
||||
{189331200 -28800 0 PST}
|
||||
{199274400 -25200 1 PDT}
|
||||
{215600400 -28800 0 PST}
|
||||
{230724000 -25200 1 PDT}
|
||||
{247050000 -28800 0 PST}
|
||||
{262778400 -25200 1 PDT}
|
||||
{278499600 -28800 0 PST}
|
||||
{294228000 -25200 1 PDT}
|
||||
{309949200 -28800 0 PST}
|
||||
{325677600 -25200 1 PDT}
|
||||
{341398800 -28800 0 PST}
|
||||
{357127200 -25200 1 PDT}
|
||||
{372848400 -28800 0 PST}
|
||||
{388576800 -25200 1 PDT}
|
||||
{404902800 -28800 0 PST}
|
||||
{420026400 -25200 1 PDT}
|
||||
{436352400 -28800 0 PST}
|
||||
{452080800 -25200 1 PDT}
|
||||
{467802000 -28800 0 PST}
|
||||
{483530400 -25200 1 PDT}
|
||||
{499251600 -28800 0 PST}
|
||||
{514980000 -25200 1 PDT}
|
||||
{530701200 -28800 0 PST}
|
||||
{544615200 -25200 1 PDT}
|
||||
{562150800 -28800 0 PST}
|
||||
{576064800 -25200 1 PDT}
|
||||
{594205200 -28800 0 PST}
|
||||
{607514400 -25200 1 PDT}
|
||||
{625654800 -28800 0 PST}
|
||||
{638964000 -25200 1 PDT}
|
||||
{657104400 -28800 0 PST}
|
||||
{671018400 -25200 1 PDT}
|
||||
{688554000 -28800 0 PST}
|
||||
{702468000 -25200 1 PDT}
|
||||
{720003600 -28800 0 PST}
|
||||
{733917600 -25200 1 PDT}
|
||||
{752058000 -28800 0 PST}
|
||||
{765367200 -25200 1 PDT}
|
||||
{783507600 -28800 0 PST}
|
||||
{796816800 -25200 1 PDT}
|
||||
{814957200 -28800 0 PST}
|
||||
{820483200 -28800 0 PST}
|
||||
{828871200 -25200 1 PDT}
|
||||
{846406800 -28800 0 PST}
|
||||
{860320800 -25200 1 PDT}
|
||||
{877856400 -28800 0 PST}
|
||||
{891770400 -25200 1 PDT}
|
||||
{909306000 -28800 0 PST}
|
||||
{923220000 -25200 1 PDT}
|
||||
{941360400 -28800 0 PST}
|
||||
{954669600 -25200 1 PDT}
|
||||
{972810000 -28800 0 PST}
|
||||
{978336000 -28800 0 PST}
|
||||
{986119200 -25200 1 PDT}
|
||||
{1004259600 -28800 0 PST}
|
||||
{1014192000 -28800 0 PST}
|
||||
{1018173600 -25200 1 PDT}
|
||||
{1035709200 -28800 0 PST}
|
||||
{1049623200 -25200 1 PDT}
|
||||
{1067158800 -28800 0 PST}
|
||||
{1081072800 -25200 1 PDT}
|
||||
{1099213200 -28800 0 PST}
|
||||
{1112522400 -25200 1 PDT}
|
||||
{1130662800 -28800 0 PST}
|
||||
{1143972000 -25200 1 PDT}
|
||||
{1162112400 -28800 0 PST}
|
||||
{1175421600 -25200 1 PDT}
|
||||
{1193562000 -28800 0 PST}
|
||||
{1207476000 -25200 1 PDT}
|
||||
{1225011600 -28800 0 PST}
|
||||
{1238925600 -25200 1 PDT}
|
||||
{1256461200 -28800 0 PST}
|
||||
{1270375200 -25200 1 PDT}
|
||||
{1288515600 -28800 0 PST}
|
||||
{1301824800 -25200 1 PDT}
|
||||
{1319965200 -28800 0 PST}
|
||||
{1333274400 -25200 1 PDT}
|
||||
{1351414800 -28800 0 PST}
|
||||
{1365328800 -25200 1 PDT}
|
||||
{1382864400 -28800 0 PST}
|
||||
{1396778400 -25200 1 PDT}
|
||||
{1414314000 -28800 0 PST}
|
||||
{1428228000 -25200 1 PDT}
|
||||
{1445763600 -28800 0 PST}
|
||||
{1459677600 -25200 1 PDT}
|
||||
{1477818000 -28800 0 PST}
|
||||
{1491127200 -25200 1 PDT}
|
||||
{1509267600 -28800 0 PST}
|
||||
{1522576800 -25200 1 PDT}
|
||||
{1540717200 -28800 0 PST}
|
||||
{1554631200 -25200 1 PDT}
|
||||
{1572166800 -28800 0 PST}
|
||||
{1586080800 -25200 1 PDT}
|
||||
{1603616400 -28800 0 PST}
|
||||
{1617530400 -25200 1 PDT}
|
||||
{1635670800 -28800 0 PST}
|
||||
{1648980000 -25200 1 PDT}
|
||||
{1667120400 -28800 0 PST}
|
||||
{1680429600 -25200 1 PDT}
|
||||
{1698570000 -28800 0 PST}
|
||||
{1712484000 -25200 1 PDT}
|
||||
{1730019600 -28800 0 PST}
|
||||
{1743933600 -25200 1 PDT}
|
||||
{1761469200 -28800 0 PST}
|
||||
{1775383200 -25200 1 PDT}
|
||||
{1792918800 -28800 0 PST}
|
||||
{1806832800 -25200 1 PDT}
|
||||
{1824973200 -28800 0 PST}
|
||||
{1838282400 -25200 1 PDT}
|
||||
{1856422800 -28800 0 PST}
|
||||
{1869732000 -25200 1 PDT}
|
||||
{1887872400 -28800 0 PST}
|
||||
{1901786400 -25200 1 PDT}
|
||||
{1919322000 -28800 0 PST}
|
||||
{1933236000 -25200 1 PDT}
|
||||
{1950771600 -28800 0 PST}
|
||||
{1964685600 -25200 1 PDT}
|
||||
{1982826000 -28800 0 PST}
|
||||
{1996135200 -25200 1 PDT}
|
||||
{2014275600 -28800 0 PST}
|
||||
{2027584800 -25200 1 PDT}
|
||||
{2045725200 -28800 0 PST}
|
||||
{2059034400 -25200 1 PDT}
|
||||
{2077174800 -28800 0 PST}
|
||||
{2091088800 -25200 1 PDT}
|
||||
{2108624400 -28800 0 PST}
|
||||
{2122538400 -25200 1 PDT}
|
||||
{2140074000 -28800 0 PST}
|
||||
{2153988000 -25200 1 PDT}
|
||||
{2172128400 -28800 0 PST}
|
||||
{2185437600 -25200 1 PDT}
|
||||
{2203578000 -28800 0 PST}
|
||||
{2216887200 -25200 1 PDT}
|
||||
{2235027600 -28800 0 PST}
|
||||
{2248941600 -25200 1 PDT}
|
||||
{2266477200 -28800 0 PST}
|
||||
{2280391200 -25200 1 PDT}
|
||||
{2297926800 -28800 0 PST}
|
||||
{2311840800 -25200 1 PDT}
|
||||
{2329376400 -28800 0 PST}
|
||||
{2343290400 -25200 1 PDT}
|
||||
{2361430800 -28800 0 PST}
|
||||
{2374740000 -25200 1 PDT}
|
||||
{2392880400 -28800 0 PST}
|
||||
{2406189600 -25200 1 PDT}
|
||||
{2424330000 -28800 0 PST}
|
||||
{2438244000 -25200 1 PDT}
|
||||
{2455779600 -28800 0 PST}
|
||||
{2469693600 -25200 1 PDT}
|
||||
{2487229200 -28800 0 PST}
|
||||
{2501143200 -25200 1 PDT}
|
||||
{2519283600 -28800 0 PST}
|
||||
{2532592800 -25200 1 PDT}
|
||||
{2550733200 -28800 0 PST}
|
||||
{2564042400 -25200 1 PDT}
|
||||
{2582182800 -28800 0 PST}
|
||||
{2596096800 -25200 1 PDT}
|
||||
{2613632400 -28800 0 PST}
|
||||
{2627546400 -25200 1 PDT}
|
||||
{2645082000 -28800 0 PST}
|
||||
{2658996000 -25200 1 PDT}
|
||||
{2676531600 -28800 0 PST}
|
||||
{2690445600 -25200 1 PDT}
|
||||
{2708586000 -28800 0 PST}
|
||||
{2721895200 -25200 1 PDT}
|
||||
{2740035600 -28800 0 PST}
|
||||
{2753344800 -25200 1 PDT}
|
||||
{2771485200 -28800 0 PST}
|
||||
{2785399200 -25200 1 PDT}
|
||||
{2802934800 -28800 0 PST}
|
||||
{2816848800 -25200 1 PDT}
|
||||
{2834384400 -28800 0 PST}
|
||||
{2848298400 -25200 1 PDT}
|
||||
{2866438800 -28800 0 PST}
|
||||
{2879748000 -25200 1 PDT}
|
||||
{2897888400 -28800 0 PST}
|
||||
{2911197600 -25200 1 PDT}
|
||||
{2929338000 -28800 0 PST}
|
||||
{2942647200 -25200 1 PDT}
|
||||
{2960787600 -28800 0 PST}
|
||||
{2974701600 -25200 1 PDT}
|
||||
{2992237200 -28800 0 PST}
|
||||
{3006151200 -25200 1 PDT}
|
||||
{3023686800 -28800 0 PST}
|
||||
{3037600800 -25200 1 PDT}
|
||||
{3055741200 -28800 0 PST}
|
||||
{3069050400 -25200 1 PDT}
|
||||
{3087190800 -28800 0 PST}
|
||||
{3100500000 -25200 1 PDT}
|
||||
{3118640400 -28800 0 PST}
|
||||
{3132554400 -25200 1 PDT}
|
||||
{3150090000 -28800 0 PST}
|
||||
{3164004000 -25200 1 PDT}
|
||||
{3181539600 -28800 0 PST}
|
||||
{3195453600 -25200 1 PDT}
|
||||
{3212989200 -28800 0 PST}
|
||||
{3226903200 -25200 1 PDT}
|
||||
{3245043600 -28800 0 PST}
|
||||
{3258352800 -25200 1 PDT}
|
||||
{3276493200 -28800 0 PST}
|
||||
{3289802400 -25200 1 PDT}
|
||||
{3307942800 -28800 0 PST}
|
||||
{3321856800 -25200 1 PDT}
|
||||
{3339392400 -28800 0 PST}
|
||||
{3353306400 -25200 1 PDT}
|
||||
{3370842000 -28800 0 PST}
|
||||
{3384756000 -25200 1 PDT}
|
||||
{3402896400 -28800 0 PST}
|
||||
{3416205600 -25200 1 PDT}
|
||||
{3434346000 -28800 0 PST}
|
||||
{3447655200 -25200 1 PDT}
|
||||
{3465795600 -28800 0 PST}
|
||||
{3479709600 -25200 1 PDT}
|
||||
{3497245200 -28800 0 PST}
|
||||
{3511159200 -25200 1 PDT}
|
||||
{3528694800 -28800 0 PST}
|
||||
{3542608800 -25200 1 PDT}
|
||||
{3560144400 -28800 0 PST}
|
||||
{3574058400 -25200 1 PDT}
|
||||
{3592198800 -28800 0 PST}
|
||||
{3605508000 -25200 1 PDT}
|
||||
{3623648400 -28800 0 PST}
|
||||
{3636957600 -25200 1 PDT}
|
||||
{3655098000 -28800 0 PST}
|
||||
{3669012000 -25200 1 PDT}
|
||||
{3686547600 -28800 0 PST}
|
||||
{3700461600 -25200 1 PDT}
|
||||
{3717997200 -28800 0 PST}
|
||||
{3731911200 -25200 1 PDT}
|
||||
{3750051600 -28800 0 PST}
|
||||
{3763360800 -25200 1 PDT}
|
||||
{3781501200 -28800 0 PST}
|
||||
{3794810400 -25200 1 PDT}
|
||||
{3812950800 -28800 0 PST}
|
||||
{3826260000 -25200 1 PDT}
|
||||
{3844400400 -28800 0 PST}
|
||||
{3858314400 -25200 1 PDT}
|
||||
{3875850000 -28800 0 PST}
|
||||
{3889764000 -25200 1 PDT}
|
||||
{3907299600 -28800 0 PST}
|
||||
{3921213600 -25200 1 PDT}
|
||||
{3939354000 -28800 0 PST}
|
||||
{3952663200 -25200 1 PDT}
|
||||
{3970803600 -28800 0 PST}
|
||||
{3984112800 -25200 1 PDT}
|
||||
{4002253200 -28800 0 PST}
|
||||
{4016167200 -25200 1 PDT}
|
||||
{4033702800 -28800 0 PST}
|
||||
{4047616800 -25200 1 PDT}
|
||||
{4065152400 -28800 0 PST}
|
||||
{4079066400 -25200 1 PDT}
|
||||
{4096602000 -28800 0 PST}
|
||||
}
|
|
@ -108,7 +108,7 @@ set TZData(:America/Santiago) {
|
|||
{1223784000 -10800 1 CLST}
|
||||
{1237086000 -14400 0 CLT}
|
||||
{1255233600 -10800 1 CLST}
|
||||
{1268535600 -14400 0 CLT}
|
||||
{1270350000 -14400 0 CLT}
|
||||
{1286683200 -10800 1 CLST}
|
||||
{1299985200 -14400 0 CLT}
|
||||
{1318132800 -10800 1 CLST}
|
||||
|
|
|
@ -101,184 +101,185 @@ set TZData(:America/Tijuana) {
|
|||
{1225011600 -28800 0 PST}
|
||||
{1238925600 -25200 1 PDT}
|
||||
{1256461200 -28800 0 PST}
|
||||
{1270375200 -25200 1 PDT}
|
||||
{1288515600 -28800 0 PST}
|
||||
{1301824800 -25200 1 PDT}
|
||||
{1319965200 -28800 0 PST}
|
||||
{1333274400 -25200 1 PDT}
|
||||
{1351414800 -28800 0 PST}
|
||||
{1365328800 -25200 1 PDT}
|
||||
{1382864400 -28800 0 PST}
|
||||
{1396778400 -25200 1 PDT}
|
||||
{1414314000 -28800 0 PST}
|
||||
{1428228000 -25200 1 PDT}
|
||||
{1445763600 -28800 0 PST}
|
||||
{1459677600 -25200 1 PDT}
|
||||
{1477818000 -28800 0 PST}
|
||||
{1491127200 -25200 1 PDT}
|
||||
{1509267600 -28800 0 PST}
|
||||
{1522576800 -25200 1 PDT}
|
||||
{1540717200 -28800 0 PST}
|
||||
{1554631200 -25200 1 PDT}
|
||||
{1572166800 -28800 0 PST}
|
||||
{1586080800 -25200 1 PDT}
|
||||
{1603616400 -28800 0 PST}
|
||||
{1617530400 -25200 1 PDT}
|
||||
{1635670800 -28800 0 PST}
|
||||
{1648980000 -25200 1 PDT}
|
||||
{1667120400 -28800 0 PST}
|
||||
{1680429600 -25200 1 PDT}
|
||||
{1698570000 -28800 0 PST}
|
||||
{1712484000 -25200 1 PDT}
|
||||
{1730019600 -28800 0 PST}
|
||||
{1743933600 -25200 1 PDT}
|
||||
{1761469200 -28800 0 PST}
|
||||
{1775383200 -25200 1 PDT}
|
||||
{1792918800 -28800 0 PST}
|
||||
{1806832800 -25200 1 PDT}
|
||||
{1824973200 -28800 0 PST}
|
||||
{1838282400 -25200 1 PDT}
|
||||
{1856422800 -28800 0 PST}
|
||||
{1869732000 -25200 1 PDT}
|
||||
{1887872400 -28800 0 PST}
|
||||
{1901786400 -25200 1 PDT}
|
||||
{1919322000 -28800 0 PST}
|
||||
{1933236000 -25200 1 PDT}
|
||||
{1950771600 -28800 0 PST}
|
||||
{1964685600 -25200 1 PDT}
|
||||
{1982826000 -28800 0 PST}
|
||||
{1996135200 -25200 1 PDT}
|
||||
{2014275600 -28800 0 PST}
|
||||
{2027584800 -25200 1 PDT}
|
||||
{2045725200 -28800 0 PST}
|
||||
{2059034400 -25200 1 PDT}
|
||||
{2077174800 -28800 0 PST}
|
||||
{2091088800 -25200 1 PDT}
|
||||
{2108624400 -28800 0 PST}
|
||||
{2122538400 -25200 1 PDT}
|
||||
{2140074000 -28800 0 PST}
|
||||
{2153988000 -25200 1 PDT}
|
||||
{2172128400 -28800 0 PST}
|
||||
{2185437600 -25200 1 PDT}
|
||||
{2203578000 -28800 0 PST}
|
||||
{2216887200 -25200 1 PDT}
|
||||
{2235027600 -28800 0 PST}
|
||||
{2248941600 -25200 1 PDT}
|
||||
{2266477200 -28800 0 PST}
|
||||
{2280391200 -25200 1 PDT}
|
||||
{2297926800 -28800 0 PST}
|
||||
{2311840800 -25200 1 PDT}
|
||||
{2329376400 -28800 0 PST}
|
||||
{2343290400 -25200 1 PDT}
|
||||
{2361430800 -28800 0 PST}
|
||||
{2374740000 -25200 1 PDT}
|
||||
{2392880400 -28800 0 PST}
|
||||
{2406189600 -25200 1 PDT}
|
||||
{2424330000 -28800 0 PST}
|
||||
{2438244000 -25200 1 PDT}
|
||||
{2455779600 -28800 0 PST}
|
||||
{2469693600 -25200 1 PDT}
|
||||
{2487229200 -28800 0 PST}
|
||||
{2501143200 -25200 1 PDT}
|
||||
{2519283600 -28800 0 PST}
|
||||
{2532592800 -25200 1 PDT}
|
||||
{2550733200 -28800 0 PST}
|
||||
{2564042400 -25200 1 PDT}
|
||||
{2582182800 -28800 0 PST}
|
||||
{2596096800 -25200 1 PDT}
|
||||
{2613632400 -28800 0 PST}
|
||||
{2627546400 -25200 1 PDT}
|
||||
{2645082000 -28800 0 PST}
|
||||
{2658996000 -25200 1 PDT}
|
||||
{2676531600 -28800 0 PST}
|
||||
{2690445600 -25200 1 PDT}
|
||||
{2708586000 -28800 0 PST}
|
||||
{2721895200 -25200 1 PDT}
|
||||
{2740035600 -28800 0 PST}
|
||||
{2753344800 -25200 1 PDT}
|
||||
{2771485200 -28800 0 PST}
|
||||
{2785399200 -25200 1 PDT}
|
||||
{2802934800 -28800 0 PST}
|
||||
{2816848800 -25200 1 PDT}
|
||||
{2834384400 -28800 0 PST}
|
||||
{2848298400 -25200 1 PDT}
|
||||
{2866438800 -28800 0 PST}
|
||||
{2879748000 -25200 1 PDT}
|
||||
{2897888400 -28800 0 PST}
|
||||
{2911197600 -25200 1 PDT}
|
||||
{2929338000 -28800 0 PST}
|
||||
{2942647200 -25200 1 PDT}
|
||||
{2960787600 -28800 0 PST}
|
||||
{2974701600 -25200 1 PDT}
|
||||
{2992237200 -28800 0 PST}
|
||||
{3006151200 -25200 1 PDT}
|
||||
{3023686800 -28800 0 PST}
|
||||
{3037600800 -25200 1 PDT}
|
||||
{3055741200 -28800 0 PST}
|
||||
{3069050400 -25200 1 PDT}
|
||||
{3087190800 -28800 0 PST}
|
||||
{3100500000 -25200 1 PDT}
|
||||
{3118640400 -28800 0 PST}
|
||||
{3132554400 -25200 1 PDT}
|
||||
{3150090000 -28800 0 PST}
|
||||
{3164004000 -25200 1 PDT}
|
||||
{3181539600 -28800 0 PST}
|
||||
{3195453600 -25200 1 PDT}
|
||||
{3212989200 -28800 0 PST}
|
||||
{3226903200 -25200 1 PDT}
|
||||
{3245043600 -28800 0 PST}
|
||||
{3258352800 -25200 1 PDT}
|
||||
{3276493200 -28800 0 PST}
|
||||
{3289802400 -25200 1 PDT}
|
||||
{3307942800 -28800 0 PST}
|
||||
{3321856800 -25200 1 PDT}
|
||||
{3339392400 -28800 0 PST}
|
||||
{3353306400 -25200 1 PDT}
|
||||
{3370842000 -28800 0 PST}
|
||||
{3384756000 -25200 1 PDT}
|
||||
{3402896400 -28800 0 PST}
|
||||
{3416205600 -25200 1 PDT}
|
||||
{3434346000 -28800 0 PST}
|
||||
{3447655200 -25200 1 PDT}
|
||||
{3465795600 -28800 0 PST}
|
||||
{3479709600 -25200 1 PDT}
|
||||
{3497245200 -28800 0 PST}
|
||||
{3511159200 -25200 1 PDT}
|
||||
{3528694800 -28800 0 PST}
|
||||
{3542608800 -25200 1 PDT}
|
||||
{3560144400 -28800 0 PST}
|
||||
{3574058400 -25200 1 PDT}
|
||||
{3592198800 -28800 0 PST}
|
||||
{3605508000 -25200 1 PDT}
|
||||
{3623648400 -28800 0 PST}
|
||||
{3636957600 -25200 1 PDT}
|
||||
{3655098000 -28800 0 PST}
|
||||
{3669012000 -25200 1 PDT}
|
||||
{3686547600 -28800 0 PST}
|
||||
{3700461600 -25200 1 PDT}
|
||||
{3717997200 -28800 0 PST}
|
||||
{3731911200 -25200 1 PDT}
|
||||
{3750051600 -28800 0 PST}
|
||||
{3763360800 -25200 1 PDT}
|
||||
{3781501200 -28800 0 PST}
|
||||
{3794810400 -25200 1 PDT}
|
||||
{3812950800 -28800 0 PST}
|
||||
{3826260000 -25200 1 PDT}
|
||||
{3844400400 -28800 0 PST}
|
||||
{3858314400 -25200 1 PDT}
|
||||
{3875850000 -28800 0 PST}
|
||||
{3889764000 -25200 1 PDT}
|
||||
{3907299600 -28800 0 PST}
|
||||
{3921213600 -25200 1 PDT}
|
||||
{3939354000 -28800 0 PST}
|
||||
{3952663200 -25200 1 PDT}
|
||||
{3970803600 -28800 0 PST}
|
||||
{3984112800 -25200 1 PDT}
|
||||
{4002253200 -28800 0 PST}
|
||||
{4016167200 -25200 1 PDT}
|
||||
{4033702800 -28800 0 PST}
|
||||
{4047616800 -25200 1 PDT}
|
||||
{4065152400 -28800 0 PST}
|
||||
{4079066400 -25200 1 PDT}
|
||||
{4096602000 -28800 0 PST}
|
||||
{1262332800 -28800 0 PST}
|
||||
{1268560800 -25200 1 PDT}
|
||||
{1289120400 -28800 0 PST}
|
||||
{1300010400 -25200 1 PDT}
|
||||
{1320570000 -28800 0 PST}
|
||||
{1331460000 -25200 1 PDT}
|
||||
{1352019600 -28800 0 PST}
|
||||
{1362909600 -25200 1 PDT}
|
||||
{1383469200 -28800 0 PST}
|
||||
{1394359200 -25200 1 PDT}
|
||||
{1414918800 -28800 0 PST}
|
||||
{1425808800 -25200 1 PDT}
|
||||
{1446368400 -28800 0 PST}
|
||||
{1457863200 -25200 1 PDT}
|
||||
{1478422800 -28800 0 PST}
|
||||
{1489312800 -25200 1 PDT}
|
||||
{1509872400 -28800 0 PST}
|
||||
{1520762400 -25200 1 PDT}
|
||||
{1541322000 -28800 0 PST}
|
||||
{1552212000 -25200 1 PDT}
|
||||
{1572771600 -28800 0 PST}
|
||||
{1583661600 -25200 1 PDT}
|
||||
{1604221200 -28800 0 PST}
|
||||
{1615716000 -25200 1 PDT}
|
||||
{1636275600 -28800 0 PST}
|
||||
{1647165600 -25200 1 PDT}
|
||||
{1667725200 -28800 0 PST}
|
||||
{1678615200 -25200 1 PDT}
|
||||
{1699174800 -28800 0 PST}
|
||||
{1710064800 -25200 1 PDT}
|
||||
{1730624400 -28800 0 PST}
|
||||
{1741514400 -25200 1 PDT}
|
||||
{1762074000 -28800 0 PST}
|
||||
{1772964000 -25200 1 PDT}
|
||||
{1793523600 -28800 0 PST}
|
||||
{1805018400 -25200 1 PDT}
|
||||
{1825578000 -28800 0 PST}
|
||||
{1836468000 -25200 1 PDT}
|
||||
{1857027600 -28800 0 PST}
|
||||
{1867917600 -25200 1 PDT}
|
||||
{1888477200 -28800 0 PST}
|
||||
{1899367200 -25200 1 PDT}
|
||||
{1919926800 -28800 0 PST}
|
||||
{1930816800 -25200 1 PDT}
|
||||
{1951376400 -28800 0 PST}
|
||||
{1962871200 -25200 1 PDT}
|
||||
{1983430800 -28800 0 PST}
|
||||
{1994320800 -25200 1 PDT}
|
||||
{2014880400 -28800 0 PST}
|
||||
{2025770400 -25200 1 PDT}
|
||||
{2046330000 -28800 0 PST}
|
||||
{2057220000 -25200 1 PDT}
|
||||
{2077779600 -28800 0 PST}
|
||||
{2088669600 -25200 1 PDT}
|
||||
{2109229200 -28800 0 PST}
|
||||
{2120119200 -25200 1 PDT}
|
||||
{2140678800 -28800 0 PST}
|
||||
{2152173600 -25200 1 PDT}
|
||||
{2172733200 -28800 0 PST}
|
||||
{2183623200 -25200 1 PDT}
|
||||
{2204182800 -28800 0 PST}
|
||||
{2215072800 -25200 1 PDT}
|
||||
{2235632400 -28800 0 PST}
|
||||
{2246522400 -25200 1 PDT}
|
||||
{2267082000 -28800 0 PST}
|
||||
{2277972000 -25200 1 PDT}
|
||||
{2298531600 -28800 0 PST}
|
||||
{2309421600 -25200 1 PDT}
|
||||
{2329981200 -28800 0 PST}
|
||||
{2341476000 -25200 1 PDT}
|
||||
{2362035600 -28800 0 PST}
|
||||
{2372925600 -25200 1 PDT}
|
||||
{2393485200 -28800 0 PST}
|
||||
{2404375200 -25200 1 PDT}
|
||||
{2424934800 -28800 0 PST}
|
||||
{2435824800 -25200 1 PDT}
|
||||
{2456384400 -28800 0 PST}
|
||||
{2467274400 -25200 1 PDT}
|
||||
{2487834000 -28800 0 PST}
|
||||
{2499328800 -25200 1 PDT}
|
||||
{2519888400 -28800 0 PST}
|
||||
{2530778400 -25200 1 PDT}
|
||||
{2551338000 -28800 0 PST}
|
||||
{2562228000 -25200 1 PDT}
|
||||
{2582787600 -28800 0 PST}
|
||||
{2593677600 -25200 1 PDT}
|
||||
{2614237200 -28800 0 PST}
|
||||
{2625127200 -25200 1 PDT}
|
||||
{2645686800 -28800 0 PST}
|
||||
{2656576800 -25200 1 PDT}
|
||||
{2677136400 -28800 0 PST}
|
||||
{2688631200 -25200 1 PDT}
|
||||
{2709190800 -28800 0 PST}
|
||||
{2720080800 -25200 1 PDT}
|
||||
{2740640400 -28800 0 PST}
|
||||
{2751530400 -25200 1 PDT}
|
||||
{2772090000 -28800 0 PST}
|
||||
{2782980000 -25200 1 PDT}
|
||||
{2803539600 -28800 0 PST}
|
||||
{2814429600 -25200 1 PDT}
|
||||
{2834989200 -28800 0 PST}
|
||||
{2846484000 -25200 1 PDT}
|
||||
{2867043600 -28800 0 PST}
|
||||
{2877933600 -25200 1 PDT}
|
||||
{2898493200 -28800 0 PST}
|
||||
{2909383200 -25200 1 PDT}
|
||||
{2929942800 -28800 0 PST}
|
||||
{2940832800 -25200 1 PDT}
|
||||
{2961392400 -28800 0 PST}
|
||||
{2972282400 -25200 1 PDT}
|
||||
{2992842000 -28800 0 PST}
|
||||
{3003732000 -25200 1 PDT}
|
||||
{3024291600 -28800 0 PST}
|
||||
{3035786400 -25200 1 PDT}
|
||||
{3056346000 -28800 0 PST}
|
||||
{3067236000 -25200 1 PDT}
|
||||
{3087795600 -28800 0 PST}
|
||||
{3098685600 -25200 1 PDT}
|
||||
{3119245200 -28800 0 PST}
|
||||
{3130135200 -25200 1 PDT}
|
||||
{3150694800 -28800 0 PST}
|
||||
{3161584800 -25200 1 PDT}
|
||||
{3182144400 -28800 0 PST}
|
||||
{3193034400 -25200 1 PDT}
|
||||
{3213594000 -28800 0 PST}
|
||||
{3225088800 -25200 1 PDT}
|
||||
{3245648400 -28800 0 PST}
|
||||
{3256538400 -25200 1 PDT}
|
||||
{3277098000 -28800 0 PST}
|
||||
{3287988000 -25200 1 PDT}
|
||||
{3308547600 -28800 0 PST}
|
||||
{3319437600 -25200 1 PDT}
|
||||
{3339997200 -28800 0 PST}
|
||||
{3350887200 -25200 1 PDT}
|
||||
{3371446800 -28800 0 PST}
|
||||
{3382941600 -25200 1 PDT}
|
||||
{3403501200 -28800 0 PST}
|
||||
{3414391200 -25200 1 PDT}
|
||||
{3434950800 -28800 0 PST}
|
||||
{3445840800 -25200 1 PDT}
|
||||
{3466400400 -28800 0 PST}
|
||||
{3477290400 -25200 1 PDT}
|
||||
{3497850000 -28800 0 PST}
|
||||
{3508740000 -25200 1 PDT}
|
||||
{3529299600 -28800 0 PST}
|
||||
{3540189600 -25200 1 PDT}
|
||||
{3560749200 -28800 0 PST}
|
||||
{3572244000 -25200 1 PDT}
|
||||
{3592803600 -28800 0 PST}
|
||||
{3603693600 -25200 1 PDT}
|
||||
{3624253200 -28800 0 PST}
|
||||
{3635143200 -25200 1 PDT}
|
||||
{3655702800 -28800 0 PST}
|
||||
{3666592800 -25200 1 PDT}
|
||||
{3687152400 -28800 0 PST}
|
||||
{3698042400 -25200 1 PDT}
|
||||
{3718602000 -28800 0 PST}
|
||||
{3730096800 -25200 1 PDT}
|
||||
{3750656400 -28800 0 PST}
|
||||
{3761546400 -25200 1 PDT}
|
||||
{3782106000 -28800 0 PST}
|
||||
{3792996000 -25200 1 PDT}
|
||||
{3813555600 -28800 0 PST}
|
||||
{3824445600 -25200 1 PDT}
|
||||
{3845005200 -28800 0 PST}
|
||||
{3855895200 -25200 1 PDT}
|
||||
{3876454800 -28800 0 PST}
|
||||
{3887344800 -25200 1 PDT}
|
||||
{3907904400 -28800 0 PST}
|
||||
{3919399200 -25200 1 PDT}
|
||||
{3939958800 -28800 0 PST}
|
||||
{3950848800 -25200 1 PDT}
|
||||
{3971408400 -28800 0 PST}
|
||||
{3982298400 -25200 1 PDT}
|
||||
{4002858000 -28800 0 PST}
|
||||
{4013748000 -25200 1 PDT}
|
||||
{4034307600 -28800 0 PST}
|
||||
{4045197600 -25200 1 PDT}
|
||||
{4065757200 -28800 0 PST}
|
||||
{4076647200 -25200 1 PDT}
|
||||
{4097206800 -28800 0 PST}
|
||||
}
|
||||
|
|
|
@ -3,4 +3,6 @@
|
|||
set TZData(:Antarctica/Casey) {
|
||||
{-9223372036854775808 0 0 zzz}
|
||||
{-31536000 28800 0 WST}
|
||||
{1255802400 39600 0 CAST}
|
||||
{1267714800 28800 0 WST}
|
||||
}
|
||||
|
|
|
@ -5,4 +5,6 @@ set TZData(:Antarctica/Davis) {
|
|||
{-409190400 25200 0 DAVT}
|
||||
{-163062000 0 0 zzz}
|
||||
{-28857600 25200 0 DAVT}
|
||||
{1255806000 18000 0 DAVT}
|
||||
{1268251200 25200 0 DAVT}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,102 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:Antarctica/Macquarie) {
|
||||
{-9223372036854775808 0 0 zzz}
|
||||
{-1861920000 36000 0 EST}
|
||||
{-1680508800 39600 1 EST}
|
||||
{-1669892400 39600 0 EST}
|
||||
{-1665392400 36000 0 EST}
|
||||
{-883641600 39600 1 EST}
|
||||
{-876128400 36000 0 EST}
|
||||
{-860400000 39600 1 EST}
|
||||
{-844678800 36000 0 EST}
|
||||
{-828345600 39600 1 EST}
|
||||
{-813229200 36000 0 EST}
|
||||
{-94730400 36000 0 EST}
|
||||
{-71136000 39600 1 EST}
|
||||
{-55411200 36000 0 EST}
|
||||
{-37267200 39600 1 EST}
|
||||
{-25776000 36000 0 EST}
|
||||
{-5817600 39600 1 EST}
|
||||
{5673600 36000 0 EST}
|
||||
{25632000 39600 1 EST}
|
||||
{37728000 36000 0 EST}
|
||||
{57686400 39600 1 EST}
|
||||
{67968000 36000 0 EST}
|
||||
{89136000 39600 1 EST}
|
||||
{100022400 36000 0 EST}
|
||||
{120585600 39600 1 EST}
|
||||
{131472000 36000 0 EST}
|
||||
{152035200 39600 1 EST}
|
||||
{162921600 36000 0 EST}
|
||||
{183484800 39600 1 EST}
|
||||
{194976000 36000 0 EST}
|
||||
{215539200 39600 1 EST}
|
||||
{226425600 36000 0 EST}
|
||||
{246988800 39600 1 EST}
|
||||
{257875200 36000 0 EST}
|
||||
{278438400 39600 1 EST}
|
||||
{289324800 36000 0 EST}
|
||||
{309888000 39600 1 EST}
|
||||
{320774400 36000 0 EST}
|
||||
{341337600 39600 1 EST}
|
||||
{352224000 36000 0 EST}
|
||||
{372787200 39600 1 EST}
|
||||
{386092800 36000 0 EST}
|
||||
{404841600 39600 1 EST}
|
||||
{417542400 36000 0 EST}
|
||||
{436291200 39600 1 EST}
|
||||
{447177600 36000 0 EST}
|
||||
{467740800 39600 1 EST}
|
||||
{478627200 36000 0 EST}
|
||||
{499190400 39600 1 EST}
|
||||
{510076800 36000 0 EST}
|
||||
{530035200 39600 1 EST}
|
||||
{542736000 36000 0 EST}
|
||||
{562089600 39600 1 EST}
|
||||
{574790400 36000 0 EST}
|
||||
{594144000 39600 1 EST}
|
||||
{606240000 36000 0 EST}
|
||||
{625593600 39600 1 EST}
|
||||
{637689600 36000 0 EST}
|
||||
{657043200 39600 1 EST}
|
||||
{670348800 36000 0 EST}
|
||||
{686678400 39600 1 EST}
|
||||
{701798400 36000 0 EST}
|
||||
{718128000 39600 1 EST}
|
||||
{733248000 36000 0 EST}
|
||||
{749577600 39600 1 EST}
|
||||
{764697600 36000 0 EST}
|
||||
{781027200 39600 1 EST}
|
||||
{796147200 36000 0 EST}
|
||||
{812476800 39600 1 EST}
|
||||
{828201600 36000 0 EST}
|
||||
{844531200 39600 1 EST}
|
||||
{859651200 36000 0 EST}
|
||||
{875980800 39600 1 EST}
|
||||
{891100800 36000 0 EST}
|
||||
{907430400 39600 1 EST}
|
||||
{922550400 36000 0 EST}
|
||||
{938880000 39600 1 EST}
|
||||
{954000000 36000 0 EST}
|
||||
{967305600 39600 1 EST}
|
||||
{985449600 36000 0 EST}
|
||||
{1002384000 39600 1 EST}
|
||||
{1017504000 36000 0 EST}
|
||||
{1033833600 39600 1 EST}
|
||||
{1048953600 36000 0 EST}
|
||||
{1065283200 39600 1 EST}
|
||||
{1080403200 36000 0 EST}
|
||||
{1096732800 39600 1 EST}
|
||||
{1111852800 36000 0 EST}
|
||||
{1128182400 39600 1 EST}
|
||||
{1143907200 36000 0 EST}
|
||||
{1159632000 39600 1 EST}
|
||||
{1174752000 36000 0 EST}
|
||||
{1191686400 39600 1 EST}
|
||||
{1207411200 36000 0 EST}
|
||||
{1223136000 39600 1 EST}
|
||||
{1238860800 36000 0 EST}
|
||||
{1254585600 39600 1 EST}
|
||||
{1270310400 39600 0 MIST}
|
||||
}
|
|
@ -3,4 +3,5 @@
|
|||
set TZData(:Antarctica/Mawson) {
|
||||
{-9223372036854775808 0 0 zzz}
|
||||
{-501206400 21600 0 MAWT}
|
||||
{1255809600 18000 0 MAWT}
|
||||
}
|
||||
|
|
|
@ -65,184 +65,185 @@ set TZData(:Asia/Anadyr) {
|
|||
{1224943200 43200 0 ANAT}
|
||||
{1238248800 46800 1 ANAST}
|
||||
{1256392800 43200 0 ANAT}
|
||||
{1269698400 46800 1 ANAST}
|
||||
{1288447200 43200 0 ANAT}
|
||||
{1301148000 46800 1 ANAST}
|
||||
{1319896800 43200 0 ANAT}
|
||||
{1332597600 46800 1 ANAST}
|
||||
{1351346400 43200 0 ANAT}
|
||||
{1364652000 46800 1 ANAST}
|
||||
{1382796000 43200 0 ANAT}
|
||||
{1396101600 46800 1 ANAST}
|
||||
{1414245600 43200 0 ANAT}
|
||||
{1427551200 46800 1 ANAST}
|
||||
{1445695200 43200 0 ANAT}
|
||||
{1459000800 46800 1 ANAST}
|
||||
{1477749600 43200 0 ANAT}
|
||||
{1490450400 46800 1 ANAST}
|
||||
{1509199200 43200 0 ANAT}
|
||||
{1521900000 46800 1 ANAST}
|
||||
{1540648800 43200 0 ANAT}
|
||||
{1553954400 46800 1 ANAST}
|
||||
{1572098400 43200 0 ANAT}
|
||||
{1585404000 46800 1 ANAST}
|
||||
{1603548000 43200 0 ANAT}
|
||||
{1616853600 46800 1 ANAST}
|
||||
{1635602400 43200 0 ANAT}
|
||||
{1648303200 46800 1 ANAST}
|
||||
{1667052000 43200 0 ANAT}
|
||||
{1679752800 46800 1 ANAST}
|
||||
{1698501600 43200 0 ANAT}
|
||||
{1711807200 46800 1 ANAST}
|
||||
{1729951200 43200 0 ANAT}
|
||||
{1743256800 46800 1 ANAST}
|
||||
{1761400800 43200 0 ANAT}
|
||||
{1774706400 46800 1 ANAST}
|
||||
{1792850400 43200 0 ANAT}
|
||||
{1806156000 46800 1 ANAST}
|
||||
{1824904800 43200 0 ANAT}
|
||||
{1837605600 46800 1 ANAST}
|
||||
{1856354400 43200 0 ANAT}
|
||||
{1869055200 46800 1 ANAST}
|
||||
{1887804000 43200 0 ANAT}
|
||||
{1901109600 46800 1 ANAST}
|
||||
{1919253600 43200 0 ANAT}
|
||||
{1932559200 46800 1 ANAST}
|
||||
{1950703200 43200 0 ANAT}
|
||||
{1964008800 46800 1 ANAST}
|
||||
{1982757600 43200 0 ANAT}
|
||||
{1995458400 46800 1 ANAST}
|
||||
{2014207200 43200 0 ANAT}
|
||||
{2026908000 46800 1 ANAST}
|
||||
{2045656800 43200 0 ANAT}
|
||||
{2058357600 46800 1 ANAST}
|
||||
{2077106400 43200 0 ANAT}
|
||||
{2090412000 46800 1 ANAST}
|
||||
{2108556000 43200 0 ANAT}
|
||||
{2121861600 46800 1 ANAST}
|
||||
{2140005600 43200 0 ANAT}
|
||||
{2153311200 46800 1 ANAST}
|
||||
{2172060000 43200 0 ANAT}
|
||||
{2184760800 46800 1 ANAST}
|
||||
{2203509600 43200 0 ANAT}
|
||||
{2216210400 46800 1 ANAST}
|
||||
{2234959200 43200 0 ANAT}
|
||||
{2248264800 46800 1 ANAST}
|
||||
{2266408800 43200 0 ANAT}
|
||||
{2279714400 46800 1 ANAST}
|
||||
{2297858400 43200 0 ANAT}
|
||||
{2311164000 46800 1 ANAST}
|
||||
{2329308000 43200 0 ANAT}
|
||||
{2342613600 46800 1 ANAST}
|
||||
{2361362400 43200 0 ANAT}
|
||||
{2374063200 46800 1 ANAST}
|
||||
{2392812000 43200 0 ANAT}
|
||||
{2405512800 46800 1 ANAST}
|
||||
{2424261600 43200 0 ANAT}
|
||||
{2437567200 46800 1 ANAST}
|
||||
{2455711200 43200 0 ANAT}
|
||||
{2469016800 46800 1 ANAST}
|
||||
{2487160800 43200 0 ANAT}
|
||||
{2500466400 46800 1 ANAST}
|
||||
{2519215200 43200 0 ANAT}
|
||||
{2531916000 46800 1 ANAST}
|
||||
{2550664800 43200 0 ANAT}
|
||||
{2563365600 46800 1 ANAST}
|
||||
{2582114400 43200 0 ANAT}
|
||||
{2595420000 46800 1 ANAST}
|
||||
{2613564000 43200 0 ANAT}
|
||||
{2626869600 46800 1 ANAST}
|
||||
{2645013600 43200 0 ANAT}
|
||||
{2658319200 46800 1 ANAST}
|
||||
{2676463200 43200 0 ANAT}
|
||||
{2689768800 46800 1 ANAST}
|
||||
{2708517600 43200 0 ANAT}
|
||||
{2721218400 46800 1 ANAST}
|
||||
{2739967200 43200 0 ANAT}
|
||||
{2752668000 46800 1 ANAST}
|
||||
{2771416800 43200 0 ANAT}
|
||||
{2784722400 46800 1 ANAST}
|
||||
{2802866400 43200 0 ANAT}
|
||||
{2816172000 46800 1 ANAST}
|
||||
{2834316000 43200 0 ANAT}
|
||||
{2847621600 46800 1 ANAST}
|
||||
{2866370400 43200 0 ANAT}
|
||||
{2879071200 46800 1 ANAST}
|
||||
{2897820000 43200 0 ANAT}
|
||||
{2910520800 46800 1 ANAST}
|
||||
{2929269600 43200 0 ANAT}
|
||||
{2941970400 46800 1 ANAST}
|
||||
{2960719200 43200 0 ANAT}
|
||||
{2974024800 46800 1 ANAST}
|
||||
{2992168800 43200 0 ANAT}
|
||||
{3005474400 46800 1 ANAST}
|
||||
{3023618400 43200 0 ANAT}
|
||||
{3036924000 46800 1 ANAST}
|
||||
{3055672800 43200 0 ANAT}
|
||||
{3068373600 46800 1 ANAST}
|
||||
{3087122400 43200 0 ANAT}
|
||||
{3099823200 46800 1 ANAST}
|
||||
{3118572000 43200 0 ANAT}
|
||||
{3131877600 46800 1 ANAST}
|
||||
{3150021600 43200 0 ANAT}
|
||||
{3163327200 46800 1 ANAST}
|
||||
{3181471200 43200 0 ANAT}
|
||||
{3194776800 46800 1 ANAST}
|
||||
{3212920800 43200 0 ANAT}
|
||||
{3226226400 46800 1 ANAST}
|
||||
{3244975200 43200 0 ANAT}
|
||||
{3257676000 46800 1 ANAST}
|
||||
{3276424800 43200 0 ANAT}
|
||||
{3289125600 46800 1 ANAST}
|
||||
{3307874400 43200 0 ANAT}
|
||||
{3321180000 46800 1 ANAST}
|
||||
{3339324000 43200 0 ANAT}
|
||||
{3352629600 46800 1 ANAST}
|
||||
{3370773600 43200 0 ANAT}
|
||||
{3384079200 46800 1 ANAST}
|
||||
{3402828000 43200 0 ANAT}
|
||||
{3415528800 46800 1 ANAST}
|
||||
{3434277600 43200 0 ANAT}
|
||||
{3446978400 46800 1 ANAST}
|
||||
{3465727200 43200 0 ANAT}
|
||||
{3479032800 46800 1 ANAST}
|
||||
{3497176800 43200 0 ANAT}
|
||||
{3510482400 46800 1 ANAST}
|
||||
{3528626400 43200 0 ANAT}
|
||||
{3541932000 46800 1 ANAST}
|
||||
{3560076000 43200 0 ANAT}
|
||||
{3573381600 46800 1 ANAST}
|
||||
{3592130400 43200 0 ANAT}
|
||||
{3604831200 46800 1 ANAST}
|
||||
{3623580000 43200 0 ANAT}
|
||||
{3636280800 46800 1 ANAST}
|
||||
{3655029600 43200 0 ANAT}
|
||||
{3668335200 46800 1 ANAST}
|
||||
{3686479200 43200 0 ANAT}
|
||||
{3699784800 46800 1 ANAST}
|
||||
{3717928800 43200 0 ANAT}
|
||||
{3731234400 46800 1 ANAST}
|
||||
{3749983200 43200 0 ANAT}
|
||||
{3762684000 46800 1 ANAST}
|
||||
{3781432800 43200 0 ANAT}
|
||||
{3794133600 46800 1 ANAST}
|
||||
{3812882400 43200 0 ANAT}
|
||||
{3825583200 46800 1 ANAST}
|
||||
{3844332000 43200 0 ANAT}
|
||||
{3857637600 46800 1 ANAST}
|
||||
{3875781600 43200 0 ANAT}
|
||||
{3889087200 46800 1 ANAST}
|
||||
{3907231200 43200 0 ANAT}
|
||||
{3920536800 46800 1 ANAST}
|
||||
{3939285600 43200 0 ANAT}
|
||||
{3951986400 46800 1 ANAST}
|
||||
{3970735200 43200 0 ANAT}
|
||||
{3983436000 46800 1 ANAST}
|
||||
{4002184800 43200 0 ANAT}
|
||||
{4015490400 46800 1 ANAST}
|
||||
{4033634400 43200 0 ANAT}
|
||||
{4046940000 46800 1 ANAST}
|
||||
{4065084000 43200 0 ANAT}
|
||||
{4078389600 46800 1 ANAST}
|
||||
{4096533600 43200 0 ANAT}
|
||||
{1269698400 39600 0 ANAMMTT}
|
||||
{1269702000 43200 1 ANAST}
|
||||
{1288450800 39600 0 ANAT}
|
||||
{1301151600 43200 1 ANAST}
|
||||
{1319900400 39600 0 ANAT}
|
||||
{1332601200 43200 1 ANAST}
|
||||
{1351350000 39600 0 ANAT}
|
||||
{1364655600 43200 1 ANAST}
|
||||
{1382799600 39600 0 ANAT}
|
||||
{1396105200 43200 1 ANAST}
|
||||
{1414249200 39600 0 ANAT}
|
||||
{1427554800 43200 1 ANAST}
|
||||
{1445698800 39600 0 ANAT}
|
||||
{1459004400 43200 1 ANAST}
|
||||
{1477753200 39600 0 ANAT}
|
||||
{1490454000 43200 1 ANAST}
|
||||
{1509202800 39600 0 ANAT}
|
||||
{1521903600 43200 1 ANAST}
|
||||
{1540652400 39600 0 ANAT}
|
||||
{1553958000 43200 1 ANAST}
|
||||
{1572102000 39600 0 ANAT}
|
||||
{1585407600 43200 1 ANAST}
|
||||
{1603551600 39600 0 ANAT}
|
||||
{1616857200 43200 1 ANAST}
|
||||
{1635606000 39600 0 ANAT}
|
||||
{1648306800 43200 1 ANAST}
|
||||
{1667055600 39600 0 ANAT}
|
||||
{1679756400 43200 1 ANAST}
|
||||
{1698505200 39600 0 ANAT}
|
||||
{1711810800 43200 1 ANAST}
|
||||
{1729954800 39600 0 ANAT}
|
||||
{1743260400 43200 1 ANAST}
|
||||
{1761404400 39600 0 ANAT}
|
||||
{1774710000 43200 1 ANAST}
|
||||
{1792854000 39600 0 ANAT}
|
||||
{1806159600 43200 1 ANAST}
|
||||
{1824908400 39600 0 ANAT}
|
||||
{1837609200 43200 1 ANAST}
|
||||
{1856358000 39600 0 ANAT}
|
||||
{1869058800 43200 1 ANAST}
|
||||
{1887807600 39600 0 ANAT}
|
||||
{1901113200 43200 1 ANAST}
|
||||
{1919257200 39600 0 ANAT}
|
||||
{1932562800 43200 1 ANAST}
|
||||
{1950706800 39600 0 ANAT}
|
||||
{1964012400 43200 1 ANAST}
|
||||
{1982761200 39600 0 ANAT}
|
||||
{1995462000 43200 1 ANAST}
|
||||
{2014210800 39600 0 ANAT}
|
||||
{2026911600 43200 1 ANAST}
|
||||
{2045660400 39600 0 ANAT}
|
||||
{2058361200 43200 1 ANAST}
|
||||
{2077110000 39600 0 ANAT}
|
||||
{2090415600 43200 1 ANAST}
|
||||
{2108559600 39600 0 ANAT}
|
||||
{2121865200 43200 1 ANAST}
|
||||
{2140009200 39600 0 ANAT}
|
||||
{2153314800 43200 1 ANAST}
|
||||
{2172063600 39600 0 ANAT}
|
||||
{2184764400 43200 1 ANAST}
|
||||
{2203513200 39600 0 ANAT}
|
||||
{2216214000 43200 1 ANAST}
|
||||
{2234962800 39600 0 ANAT}
|
||||
{2248268400 43200 1 ANAST}
|
||||
{2266412400 39600 0 ANAT}
|
||||
{2279718000 43200 1 ANAST}
|
||||
{2297862000 39600 0 ANAT}
|
||||
{2311167600 43200 1 ANAST}
|
||||
{2329311600 39600 0 ANAT}
|
||||
{2342617200 43200 1 ANAST}
|
||||
{2361366000 39600 0 ANAT}
|
||||
{2374066800 43200 1 ANAST}
|
||||
{2392815600 39600 0 ANAT}
|
||||
{2405516400 43200 1 ANAST}
|
||||
{2424265200 39600 0 ANAT}
|
||||
{2437570800 43200 1 ANAST}
|
||||
{2455714800 39600 0 ANAT}
|
||||
{2469020400 43200 1 ANAST}
|
||||
{2487164400 39600 0 ANAT}
|
||||
{2500470000 43200 1 ANAST}
|
||||
{2519218800 39600 0 ANAT}
|
||||
{2531919600 43200 1 ANAST}
|
||||
{2550668400 39600 0 ANAT}
|
||||
{2563369200 43200 1 ANAST}
|
||||
{2582118000 39600 0 ANAT}
|
||||
{2595423600 43200 1 ANAST}
|
||||
{2613567600 39600 0 ANAT}
|
||||
{2626873200 43200 1 ANAST}
|
||||
{2645017200 39600 0 ANAT}
|
||||
{2658322800 43200 1 ANAST}
|
||||
{2676466800 39600 0 ANAT}
|
||||
{2689772400 43200 1 ANAST}
|
||||
{2708521200 39600 0 ANAT}
|
||||
{2721222000 43200 1 ANAST}
|
||||
{2739970800 39600 0 ANAT}
|
||||
{2752671600 43200 1 ANAST}
|
||||
{2771420400 39600 0 ANAT}
|
||||
{2784726000 43200 1 ANAST}
|
||||
{2802870000 39600 0 ANAT}
|
||||
{2816175600 43200 1 ANAST}
|
||||
{2834319600 39600 0 ANAT}
|
||||
{2847625200 43200 1 ANAST}
|
||||
{2866374000 39600 0 ANAT}
|
||||
{2879074800 43200 1 ANAST}
|
||||
{2897823600 39600 0 ANAT}
|
||||
{2910524400 43200 1 ANAST}
|
||||
{2929273200 39600 0 ANAT}
|
||||
{2941974000 43200 1 ANAST}
|
||||
{2960722800 39600 0 ANAT}
|
||||
{2974028400 43200 1 ANAST}
|
||||
{2992172400 39600 0 ANAT}
|
||||
{3005478000 43200 1 ANAST}
|
||||
{3023622000 39600 0 ANAT}
|
||||
{3036927600 43200 1 ANAST}
|
||||
{3055676400 39600 0 ANAT}
|
||||
{3068377200 43200 1 ANAST}
|
||||
{3087126000 39600 0 ANAT}
|
||||
{3099826800 43200 1 ANAST}
|
||||
{3118575600 39600 0 ANAT}
|
||||
{3131881200 43200 1 ANAST}
|
||||
{3150025200 39600 0 ANAT}
|
||||
{3163330800 43200 1 ANAST}
|
||||
{3181474800 39600 0 ANAT}
|
||||
{3194780400 43200 1 ANAST}
|
||||
{3212924400 39600 0 ANAT}
|
||||
{3226230000 43200 1 ANAST}
|
||||
{3244978800 39600 0 ANAT}
|
||||
{3257679600 43200 1 ANAST}
|
||||
{3276428400 39600 0 ANAT}
|
||||
{3289129200 43200 1 ANAST}
|
||||
{3307878000 39600 0 ANAT}
|
||||
{3321183600 43200 1 ANAST}
|
||||
{3339327600 39600 0 ANAT}
|
||||
{3352633200 43200 1 ANAST}
|
||||
{3370777200 39600 0 ANAT}
|
||||
{3384082800 43200 1 ANAST}
|
||||
{3402831600 39600 0 ANAT}
|
||||
{3415532400 43200 1 ANAST}
|
||||
{3434281200 39600 0 ANAT}
|
||||
{3446982000 43200 1 ANAST}
|
||||
{3465730800 39600 0 ANAT}
|
||||
{3479036400 43200 1 ANAST}
|
||||
{3497180400 39600 0 ANAT}
|
||||
{3510486000 43200 1 ANAST}
|
||||
{3528630000 39600 0 ANAT}
|
||||
{3541935600 43200 1 ANAST}
|
||||
{3560079600 39600 0 ANAT}
|
||||
{3573385200 43200 1 ANAST}
|
||||
{3592134000 39600 0 ANAT}
|
||||
{3604834800 43200 1 ANAST}
|
||||
{3623583600 39600 0 ANAT}
|
||||
{3636284400 43200 1 ANAST}
|
||||
{3655033200 39600 0 ANAT}
|
||||
{3668338800 43200 1 ANAST}
|
||||
{3686482800 39600 0 ANAT}
|
||||
{3699788400 43200 1 ANAST}
|
||||
{3717932400 39600 0 ANAT}
|
||||
{3731238000 43200 1 ANAST}
|
||||
{3749986800 39600 0 ANAT}
|
||||
{3762687600 43200 1 ANAST}
|
||||
{3781436400 39600 0 ANAT}
|
||||
{3794137200 43200 1 ANAST}
|
||||
{3812886000 39600 0 ANAT}
|
||||
{3825586800 43200 1 ANAST}
|
||||
{3844335600 39600 0 ANAT}
|
||||
{3857641200 43200 1 ANAST}
|
||||
{3875785200 39600 0 ANAT}
|
||||
{3889090800 43200 1 ANAST}
|
||||
{3907234800 39600 0 ANAT}
|
||||
{3920540400 43200 1 ANAST}
|
||||
{3939289200 39600 0 ANAT}
|
||||
{3951990000 43200 1 ANAST}
|
||||
{3970738800 39600 0 ANAT}
|
||||
{3983439600 43200 1 ANAST}
|
||||
{4002188400 39600 0 ANAT}
|
||||
{4015494000 43200 1 ANAST}
|
||||
{4033638000 39600 0 ANAT}
|
||||
{4046943600 43200 1 ANAST}
|
||||
{4065087600 39600 0 ANAT}
|
||||
{4078393200 43200 1 ANAST}
|
||||
{4096537200 39600 0 ANAT}
|
||||
}
|
||||
|
|
|
@ -97,184 +97,184 @@ set TZData(:Asia/Damascus) {
|
|||
{1225486800 7200 0 EET}
|
||||
{1238104800 10800 1 EEST}
|
||||
{1256850000 7200 0 EET}
|
||||
{1269554400 10800 1 EEST}
|
||||
{1270159200 10800 1 EEST}
|
||||
{1288299600 7200 0 EET}
|
||||
{1301004000 10800 1 EEST}
|
||||
{1301608800 10800 1 EEST}
|
||||
{1319749200 7200 0 EET}
|
||||
{1333058400 10800 1 EEST}
|
||||
{1333663200 10800 1 EEST}
|
||||
{1351198800 7200 0 EET}
|
||||
{1364508000 10800 1 EEST}
|
||||
{1365112800 10800 1 EEST}
|
||||
{1382648400 7200 0 EET}
|
||||
{1395957600 10800 1 EEST}
|
||||
{1396562400 10800 1 EEST}
|
||||
{1414702800 7200 0 EET}
|
||||
{1427407200 10800 1 EEST}
|
||||
{1428012000 10800 1 EEST}
|
||||
{1446152400 7200 0 EET}
|
||||
{1458856800 10800 1 EEST}
|
||||
{1459461600 10800 1 EEST}
|
||||
{1477602000 7200 0 EET}
|
||||
{1490911200 10800 1 EEST}
|
||||
{1491516000 10800 1 EEST}
|
||||
{1509051600 7200 0 EET}
|
||||
{1522360800 10800 1 EEST}
|
||||
{1522965600 10800 1 EEST}
|
||||
{1540501200 7200 0 EET}
|
||||
{1553810400 10800 1 EEST}
|
||||
{1554415200 10800 1 EEST}
|
||||
{1571950800 7200 0 EET}
|
||||
{1585260000 10800 1 EEST}
|
||||
{1585864800 10800 1 EEST}
|
||||
{1604005200 7200 0 EET}
|
||||
{1616709600 10800 1 EEST}
|
||||
{1617314400 10800 1 EEST}
|
||||
{1635454800 7200 0 EET}
|
||||
{1648159200 10800 1 EEST}
|
||||
{1648764000 10800 1 EEST}
|
||||
{1666904400 7200 0 EET}
|
||||
{1680213600 10800 1 EEST}
|
||||
{1680818400 10800 1 EEST}
|
||||
{1698354000 7200 0 EET}
|
||||
{1711663200 10800 1 EEST}
|
||||
{1712268000 10800 1 EEST}
|
||||
{1729803600 7200 0 EET}
|
||||
{1743112800 10800 1 EEST}
|
||||
{1743717600 10800 1 EEST}
|
||||
{1761858000 7200 0 EET}
|
||||
{1774562400 10800 1 EEST}
|
||||
{1775167200 10800 1 EEST}
|
||||
{1793307600 7200 0 EET}
|
||||
{1806012000 10800 1 EEST}
|
||||
{1806616800 10800 1 EEST}
|
||||
{1824757200 7200 0 EET}
|
||||
{1838066400 10800 1 EEST}
|
||||
{1838671200 10800 1 EEST}
|
||||
{1856206800 7200 0 EET}
|
||||
{1869516000 10800 1 EEST}
|
||||
{1870120800 10800 1 EEST}
|
||||
{1887656400 7200 0 EET}
|
||||
{1900965600 10800 1 EEST}
|
||||
{1901570400 10800 1 EEST}
|
||||
{1919106000 7200 0 EET}
|
||||
{1932415200 10800 1 EEST}
|
||||
{1933020000 10800 1 EEST}
|
||||
{1951160400 7200 0 EET}
|
||||
{1963864800 10800 1 EEST}
|
||||
{1964469600 10800 1 EEST}
|
||||
{1982610000 7200 0 EET}
|
||||
{1995314400 10800 1 EEST}
|
||||
{1995919200 10800 1 EEST}
|
||||
{2014059600 7200 0 EET}
|
||||
{2027368800 10800 1 EEST}
|
||||
{2027973600 10800 1 EEST}
|
||||
{2045509200 7200 0 EET}
|
||||
{2058818400 10800 1 EEST}
|
||||
{2059423200 10800 1 EEST}
|
||||
{2076958800 7200 0 EET}
|
||||
{2090268000 10800 1 EEST}
|
||||
{2090872800 10800 1 EEST}
|
||||
{2109013200 7200 0 EET}
|
||||
{2121717600 10800 1 EEST}
|
||||
{2122322400 10800 1 EEST}
|
||||
{2140462800 7200 0 EET}
|
||||
{2153167200 10800 1 EEST}
|
||||
{2153772000 10800 1 EEST}
|
||||
{2171912400 7200 0 EET}
|
||||
{2184616800 10800 1 EEST}
|
||||
{2185221600 10800 1 EEST}
|
||||
{2203362000 7200 0 EET}
|
||||
{2216671200 10800 1 EEST}
|
||||
{2217276000 10800 1 EEST}
|
||||
{2234811600 7200 0 EET}
|
||||
{2248120800 10800 1 EEST}
|
||||
{2248725600 10800 1 EEST}
|
||||
{2266261200 7200 0 EET}
|
||||
{2279570400 10800 1 EEST}
|
||||
{2280175200 10800 1 EEST}
|
||||
{2298315600 7200 0 EET}
|
||||
{2311020000 10800 1 EEST}
|
||||
{2311624800 10800 1 EEST}
|
||||
{2329765200 7200 0 EET}
|
||||
{2342469600 10800 1 EEST}
|
||||
{2343074400 10800 1 EEST}
|
||||
{2361214800 7200 0 EET}
|
||||
{2374524000 10800 1 EEST}
|
||||
{2375128800 10800 1 EEST}
|
||||
{2392664400 7200 0 EET}
|
||||
{2405973600 10800 1 EEST}
|
||||
{2406578400 10800 1 EEST}
|
||||
{2424114000 7200 0 EET}
|
||||
{2437423200 10800 1 EEST}
|
||||
{2438028000 10800 1 EEST}
|
||||
{2455563600 7200 0 EET}
|
||||
{2468872800 10800 1 EEST}
|
||||
{2469477600 10800 1 EEST}
|
||||
{2487618000 7200 0 EET}
|
||||
{2500322400 10800 1 EEST}
|
||||
{2500927200 10800 1 EEST}
|
||||
{2519067600 7200 0 EET}
|
||||
{2531772000 10800 1 EEST}
|
||||
{2532376800 10800 1 EEST}
|
||||
{2550517200 7200 0 EET}
|
||||
{2563826400 10800 1 EEST}
|
||||
{2564431200 10800 1 EEST}
|
||||
{2581966800 7200 0 EET}
|
||||
{2595276000 10800 1 EEST}
|
||||
{2595880800 10800 1 EEST}
|
||||
{2613416400 7200 0 EET}
|
||||
{2626725600 10800 1 EEST}
|
||||
{2627330400 10800 1 EEST}
|
||||
{2645470800 7200 0 EET}
|
||||
{2658175200 10800 1 EEST}
|
||||
{2658780000 10800 1 EEST}
|
||||
{2676920400 7200 0 EET}
|
||||
{2689624800 10800 1 EEST}
|
||||
{2690229600 10800 1 EEST}
|
||||
{2708370000 7200 0 EET}
|
||||
{2721679200 10800 1 EEST}
|
||||
{2722284000 10800 1 EEST}
|
||||
{2739819600 7200 0 EET}
|
||||
{2753128800 10800 1 EEST}
|
||||
{2753733600 10800 1 EEST}
|
||||
{2771269200 7200 0 EET}
|
||||
{2784578400 10800 1 EEST}
|
||||
{2785183200 10800 1 EEST}
|
||||
{2802718800 7200 0 EET}
|
||||
{2816028000 10800 1 EEST}
|
||||
{2816632800 10800 1 EEST}
|
||||
{2834773200 7200 0 EET}
|
||||
{2847477600 10800 1 EEST}
|
||||
{2848082400 10800 1 EEST}
|
||||
{2866222800 7200 0 EET}
|
||||
{2878927200 10800 1 EEST}
|
||||
{2879532000 10800 1 EEST}
|
||||
{2897672400 7200 0 EET}
|
||||
{2910981600 10800 1 EEST}
|
||||
{2911586400 10800 1 EEST}
|
||||
{2929122000 7200 0 EET}
|
||||
{2942431200 10800 1 EEST}
|
||||
{2943036000 10800 1 EEST}
|
||||
{2960571600 7200 0 EET}
|
||||
{2973880800 10800 1 EEST}
|
||||
{2974485600 10800 1 EEST}
|
||||
{2992626000 7200 0 EET}
|
||||
{3005330400 10800 1 EEST}
|
||||
{3005935200 10800 1 EEST}
|
||||
{3024075600 7200 0 EET}
|
||||
{3036780000 10800 1 EEST}
|
||||
{3037384800 10800 1 EEST}
|
||||
{3055525200 7200 0 EET}
|
||||
{3068229600 10800 1 EEST}
|
||||
{3068834400 10800 1 EEST}
|
||||
{3086974800 7200 0 EET}
|
||||
{3100284000 10800 1 EEST}
|
||||
{3100888800 10800 1 EEST}
|
||||
{3118424400 7200 0 EET}
|
||||
{3131733600 10800 1 EEST}
|
||||
{3132338400 10800 1 EEST}
|
||||
{3149874000 7200 0 EET}
|
||||
{3163183200 10800 1 EEST}
|
||||
{3163788000 10800 1 EEST}
|
||||
{3181928400 7200 0 EET}
|
||||
{3194632800 10800 1 EEST}
|
||||
{3195237600 10800 1 EEST}
|
||||
{3213378000 7200 0 EET}
|
||||
{3226082400 10800 1 EEST}
|
||||
{3226687200 10800 1 EEST}
|
||||
{3244827600 7200 0 EET}
|
||||
{3258136800 10800 1 EEST}
|
||||
{3258741600 10800 1 EEST}
|
||||
{3276277200 7200 0 EET}
|
||||
{3289586400 10800 1 EEST}
|
||||
{3290191200 10800 1 EEST}
|
||||
{3307726800 7200 0 EET}
|
||||
{3321036000 10800 1 EEST}
|
||||
{3321640800 10800 1 EEST}
|
||||
{3339176400 7200 0 EET}
|
||||
{3352485600 10800 1 EEST}
|
||||
{3353090400 10800 1 EEST}
|
||||
{3371230800 7200 0 EET}
|
||||
{3383935200 10800 1 EEST}
|
||||
{3384540000 10800 1 EEST}
|
||||
{3402680400 7200 0 EET}
|
||||
{3415384800 10800 1 EEST}
|
||||
{3415989600 10800 1 EEST}
|
||||
{3434130000 7200 0 EET}
|
||||
{3447439200 10800 1 EEST}
|
||||
{3448044000 10800 1 EEST}
|
||||
{3465579600 7200 0 EET}
|
||||
{3478888800 10800 1 EEST}
|
||||
{3479493600 10800 1 EEST}
|
||||
{3497029200 7200 0 EET}
|
||||
{3510338400 10800 1 EEST}
|
||||
{3510943200 10800 1 EEST}
|
||||
{3529083600 7200 0 EET}
|
||||
{3541788000 10800 1 EEST}
|
||||
{3542392800 10800 1 EEST}
|
||||
{3560533200 7200 0 EET}
|
||||
{3573237600 10800 1 EEST}
|
||||
{3573842400 10800 1 EEST}
|
||||
{3591982800 7200 0 EET}
|
||||
{3605292000 10800 1 EEST}
|
||||
{3605896800 10800 1 EEST}
|
||||
{3623432400 7200 0 EET}
|
||||
{3636741600 10800 1 EEST}
|
||||
{3637346400 10800 1 EEST}
|
||||
{3654882000 7200 0 EET}
|
||||
{3668191200 10800 1 EEST}
|
||||
{3668796000 10800 1 EEST}
|
||||
{3686331600 7200 0 EET}
|
||||
{3699640800 10800 1 EEST}
|
||||
{3700245600 10800 1 EEST}
|
||||
{3718386000 7200 0 EET}
|
||||
{3731090400 10800 1 EEST}
|
||||
{3731695200 10800 1 EEST}
|
||||
{3749835600 7200 0 EET}
|
||||
{3762540000 10800 1 EEST}
|
||||
{3763144800 10800 1 EEST}
|
||||
{3781285200 7200 0 EET}
|
||||
{3794594400 10800 1 EEST}
|
||||
{3795199200 10800 1 EEST}
|
||||
{3812734800 7200 0 EET}
|
||||
{3826044000 10800 1 EEST}
|
||||
{3826648800 10800 1 EEST}
|
||||
{3844184400 7200 0 EET}
|
||||
{3857493600 10800 1 EEST}
|
||||
{3858098400 10800 1 EEST}
|
||||
{3876238800 7200 0 EET}
|
||||
{3888943200 10800 1 EEST}
|
||||
{3889548000 10800 1 EEST}
|
||||
{3907688400 7200 0 EET}
|
||||
{3920392800 10800 1 EEST}
|
||||
{3920997600 10800 1 EEST}
|
||||
{3939138000 7200 0 EET}
|
||||
{3951842400 10800 1 EEST}
|
||||
{3952447200 10800 1 EEST}
|
||||
{3970587600 7200 0 EET}
|
||||
{3983896800 10800 1 EEST}
|
||||
{3984501600 10800 1 EEST}
|
||||
{4002037200 7200 0 EET}
|
||||
{4015346400 10800 1 EEST}
|
||||
{4015951200 10800 1 EEST}
|
||||
{4033486800 7200 0 EET}
|
||||
{4046796000 10800 1 EEST}
|
||||
{4047400800 10800 1 EEST}
|
||||
{4065541200 7200 0 EET}
|
||||
{4078245600 10800 1 EEST}
|
||||
{4078850400 10800 1 EEST}
|
||||
{4096990800 7200 0 EET}
|
||||
}
|
||||
|
|
|
@ -8,5 +8,7 @@ set TZData(:Asia/Dhaka) {
|
|||
{-862637400 23400 0 BURT}
|
||||
{-576138600 21600 0 DACT}
|
||||
{38772000 21600 0 BDT}
|
||||
{1230746400 21600 0 BDT}
|
||||
{1245430800 25200 1 BDST}
|
||||
{1262278740 21600 0 BDT}
|
||||
}
|
||||
|
|
|
@ -92,184 +92,185 @@ set TZData(:Asia/Gaza) {
|
|||
{1219964400 7200 0 EET}
|
||||
{1238104800 10800 1 EEST}
|
||||
{1252018800 7200 0 EET}
|
||||
{1269554400 10800 1 EEST}
|
||||
{1283468400 7200 0 EET}
|
||||
{1301004000 10800 1 EEST}
|
||||
{1269640860 10800 1 EEST}
|
||||
{1281474000 7200 0 EET}
|
||||
{1283472000 7200 0 EET}
|
||||
{1301090460 10800 1 EEST}
|
||||
{1314918000 7200 0 EET}
|
||||
{1333058400 10800 1 EEST}
|
||||
{1333144860 10800 1 EEST}
|
||||
{1346972400 7200 0 EET}
|
||||
{1364508000 10800 1 EEST}
|
||||
{1364594460 10800 1 EEST}
|
||||
{1378422000 7200 0 EET}
|
||||
{1395957600 10800 1 EEST}
|
||||
{1396044060 10800 1 EEST}
|
||||
{1409871600 7200 0 EET}
|
||||
{1427407200 10800 1 EEST}
|
||||
{1427493660 10800 1 EEST}
|
||||
{1441321200 7200 0 EET}
|
||||
{1458856800 10800 1 EEST}
|
||||
{1458943260 10800 1 EEST}
|
||||
{1472770800 7200 0 EET}
|
||||
{1490911200 10800 1 EEST}
|
||||
{1490392860 10800 1 EEST}
|
||||
{1504220400 7200 0 EET}
|
||||
{1522360800 10800 1 EEST}
|
||||
{1522447260 10800 1 EEST}
|
||||
{1536274800 7200 0 EET}
|
||||
{1553810400 10800 1 EEST}
|
||||
{1553896860 10800 1 EEST}
|
||||
{1567724400 7200 0 EET}
|
||||
{1585260000 10800 1 EEST}
|
||||
{1585346460 10800 1 EEST}
|
||||
{1599174000 7200 0 EET}
|
||||
{1616709600 10800 1 EEST}
|
||||
{1616796060 10800 1 EEST}
|
||||
{1630623600 7200 0 EET}
|
||||
{1648159200 10800 1 EEST}
|
||||
{1648245660 10800 1 EEST}
|
||||
{1662073200 7200 0 EET}
|
||||
{1680213600 10800 1 EEST}
|
||||
{1679695260 10800 1 EEST}
|
||||
{1693522800 7200 0 EET}
|
||||
{1711663200 10800 1 EEST}
|
||||
{1711749660 10800 1 EEST}
|
||||
{1725577200 7200 0 EET}
|
||||
{1743112800 10800 1 EEST}
|
||||
{1743199260 10800 1 EEST}
|
||||
{1757026800 7200 0 EET}
|
||||
{1774562400 10800 1 EEST}
|
||||
{1774648860 10800 1 EEST}
|
||||
{1788476400 7200 0 EET}
|
||||
{1806012000 10800 1 EEST}
|
||||
{1806098460 10800 1 EEST}
|
||||
{1819926000 7200 0 EET}
|
||||
{1838066400 10800 1 EEST}
|
||||
{1837548060 10800 1 EEST}
|
||||
{1851375600 7200 0 EET}
|
||||
{1869516000 10800 1 EEST}
|
||||
{1869602460 10800 1 EEST}
|
||||
{1883430000 7200 0 EET}
|
||||
{1900965600 10800 1 EEST}
|
||||
{1901052060 10800 1 EEST}
|
||||
{1914879600 7200 0 EET}
|
||||
{1932415200 10800 1 EEST}
|
||||
{1932501660 10800 1 EEST}
|
||||
{1946329200 7200 0 EET}
|
||||
{1963864800 10800 1 EEST}
|
||||
{1963951260 10800 1 EEST}
|
||||
{1977778800 7200 0 EET}
|
||||
{1995314400 10800 1 EEST}
|
||||
{1995400860 10800 1 EEST}
|
||||
{2009228400 7200 0 EET}
|
||||
{2027368800 10800 1 EEST}
|
||||
{2026850460 10800 1 EEST}
|
||||
{2040678000 7200 0 EET}
|
||||
{2058818400 10800 1 EEST}
|
||||
{2058904860 10800 1 EEST}
|
||||
{2072732400 7200 0 EET}
|
||||
{2090268000 10800 1 EEST}
|
||||
{2090354460 10800 1 EEST}
|
||||
{2104182000 7200 0 EET}
|
||||
{2121717600 10800 1 EEST}
|
||||
{2121804060 10800 1 EEST}
|
||||
{2135631600 7200 0 EET}
|
||||
{2153167200 10800 1 EEST}
|
||||
{2153253660 10800 1 EEST}
|
||||
{2167081200 7200 0 EET}
|
||||
{2184616800 10800 1 EEST}
|
||||
{2184703260 10800 1 EEST}
|
||||
{2198530800 7200 0 EET}
|
||||
{2216671200 10800 1 EEST}
|
||||
{2216757660 10800 1 EEST}
|
||||
{2230585200 7200 0 EET}
|
||||
{2248120800 10800 1 EEST}
|
||||
{2248207260 10800 1 EEST}
|
||||
{2262034800 7200 0 EET}
|
||||
{2279570400 10800 1 EEST}
|
||||
{2279656860 10800 1 EEST}
|
||||
{2293484400 7200 0 EET}
|
||||
{2311020000 10800 1 EEST}
|
||||
{2311106460 10800 1 EEST}
|
||||
{2324934000 7200 0 EET}
|
||||
{2342469600 10800 1 EEST}
|
||||
{2342556060 10800 1 EEST}
|
||||
{2356383600 7200 0 EET}
|
||||
{2374524000 10800 1 EEST}
|
||||
{2374005660 10800 1 EEST}
|
||||
{2387833200 7200 0 EET}
|
||||
{2405973600 10800 1 EEST}
|
||||
{2406060060 10800 1 EEST}
|
||||
{2419887600 7200 0 EET}
|
||||
{2437423200 10800 1 EEST}
|
||||
{2437509660 10800 1 EEST}
|
||||
{2451337200 7200 0 EET}
|
||||
{2468872800 10800 1 EEST}
|
||||
{2468959260 10800 1 EEST}
|
||||
{2482786800 7200 0 EET}
|
||||
{2500322400 10800 1 EEST}
|
||||
{2500408860 10800 1 EEST}
|
||||
{2514236400 7200 0 EET}
|
||||
{2531772000 10800 1 EEST}
|
||||
{2531858460 10800 1 EEST}
|
||||
{2545686000 7200 0 EET}
|
||||
{2563826400 10800 1 EEST}
|
||||
{2563308060 10800 1 EEST}
|
||||
{2577135600 7200 0 EET}
|
||||
{2595276000 10800 1 EEST}
|
||||
{2595362460 10800 1 EEST}
|
||||
{2609190000 7200 0 EET}
|
||||
{2626725600 10800 1 EEST}
|
||||
{2626812060 10800 1 EEST}
|
||||
{2640639600 7200 0 EET}
|
||||
{2658175200 10800 1 EEST}
|
||||
{2658261660 10800 1 EEST}
|
||||
{2672089200 7200 0 EET}
|
||||
{2689624800 10800 1 EEST}
|
||||
{2689711260 10800 1 EEST}
|
||||
{2703538800 7200 0 EET}
|
||||
{2721679200 10800 1 EEST}
|
||||
{2721160860 10800 1 EEST}
|
||||
{2734988400 7200 0 EET}
|
||||
{2753128800 10800 1 EEST}
|
||||
{2753215260 10800 1 EEST}
|
||||
{2767042800 7200 0 EET}
|
||||
{2784578400 10800 1 EEST}
|
||||
{2784664860 10800 1 EEST}
|
||||
{2798492400 7200 0 EET}
|
||||
{2816028000 10800 1 EEST}
|
||||
{2816114460 10800 1 EEST}
|
||||
{2829942000 7200 0 EET}
|
||||
{2847477600 10800 1 EEST}
|
||||
{2847564060 10800 1 EEST}
|
||||
{2861391600 7200 0 EET}
|
||||
{2878927200 10800 1 EEST}
|
||||
{2879013660 10800 1 EEST}
|
||||
{2892841200 7200 0 EET}
|
||||
{2910981600 10800 1 EEST}
|
||||
{2910463260 10800 1 EEST}
|
||||
{2924290800 7200 0 EET}
|
||||
{2942431200 10800 1 EEST}
|
||||
{2942517660 10800 1 EEST}
|
||||
{2956345200 7200 0 EET}
|
||||
{2973880800 10800 1 EEST}
|
||||
{2973967260 10800 1 EEST}
|
||||
{2987794800 7200 0 EET}
|
||||
{3005330400 10800 1 EEST}
|
||||
{3005416860 10800 1 EEST}
|
||||
{3019244400 7200 0 EET}
|
||||
{3036780000 10800 1 EEST}
|
||||
{3036866460 10800 1 EEST}
|
||||
{3050694000 7200 0 EET}
|
||||
{3068229600 10800 1 EEST}
|
||||
{3068316060 10800 1 EEST}
|
||||
{3082143600 7200 0 EET}
|
||||
{3100284000 10800 1 EEST}
|
||||
{3100370460 10800 1 EEST}
|
||||
{3114198000 7200 0 EET}
|
||||
{3131733600 10800 1 EEST}
|
||||
{3131820060 10800 1 EEST}
|
||||
{3145647600 7200 0 EET}
|
||||
{3163183200 10800 1 EEST}
|
||||
{3163269660 10800 1 EEST}
|
||||
{3177097200 7200 0 EET}
|
||||
{3194632800 10800 1 EEST}
|
||||
{3194719260 10800 1 EEST}
|
||||
{3208546800 7200 0 EET}
|
||||
{3226082400 10800 1 EEST}
|
||||
{3226168860 10800 1 EEST}
|
||||
{3239996400 7200 0 EET}
|
||||
{3258136800 10800 1 EEST}
|
||||
{3257618460 10800 1 EEST}
|
||||
{3271446000 7200 0 EET}
|
||||
{3289586400 10800 1 EEST}
|
||||
{3289672860 10800 1 EEST}
|
||||
{3303500400 7200 0 EET}
|
||||
{3321036000 10800 1 EEST}
|
||||
{3321122460 10800 1 EEST}
|
||||
{3334950000 7200 0 EET}
|
||||
{3352485600 10800 1 EEST}
|
||||
{3352572060 10800 1 EEST}
|
||||
{3366399600 7200 0 EET}
|
||||
{3383935200 10800 1 EEST}
|
||||
{3384021660 10800 1 EEST}
|
||||
{3397849200 7200 0 EET}
|
||||
{3415384800 10800 1 EEST}
|
||||
{3415471260 10800 1 EEST}
|
||||
{3429298800 7200 0 EET}
|
||||
{3447439200 10800 1 EEST}
|
||||
{3446920860 10800 1 EEST}
|
||||
{3460748400 7200 0 EET}
|
||||
{3478888800 10800 1 EEST}
|
||||
{3478975260 10800 1 EEST}
|
||||
{3492802800 7200 0 EET}
|
||||
{3510338400 10800 1 EEST}
|
||||
{3510424860 10800 1 EEST}
|
||||
{3524252400 7200 0 EET}
|
||||
{3541788000 10800 1 EEST}
|
||||
{3541874460 10800 1 EEST}
|
||||
{3555702000 7200 0 EET}
|
||||
{3573237600 10800 1 EEST}
|
||||
{3573324060 10800 1 EEST}
|
||||
{3587151600 7200 0 EET}
|
||||
{3605292000 10800 1 EEST}
|
||||
{3604773660 10800 1 EEST}
|
||||
{3618601200 7200 0 EET}
|
||||
{3636741600 10800 1 EEST}
|
||||
{3636828060 10800 1 EEST}
|
||||
{3650655600 7200 0 EET}
|
||||
{3668191200 10800 1 EEST}
|
||||
{3668277660 10800 1 EEST}
|
||||
{3682105200 7200 0 EET}
|
||||
{3699640800 10800 1 EEST}
|
||||
{3699727260 10800 1 EEST}
|
||||
{3713554800 7200 0 EET}
|
||||
{3731090400 10800 1 EEST}
|
||||
{3731176860 10800 1 EEST}
|
||||
{3745004400 7200 0 EET}
|
||||
{3762540000 10800 1 EEST}
|
||||
{3762626460 10800 1 EEST}
|
||||
{3776454000 7200 0 EET}
|
||||
{3794594400 10800 1 EEST}
|
||||
{3794076060 10800 1 EEST}
|
||||
{3807903600 7200 0 EET}
|
||||
{3826044000 10800 1 EEST}
|
||||
{3826130460 10800 1 EEST}
|
||||
{3839958000 7200 0 EET}
|
||||
{3857493600 10800 1 EEST}
|
||||
{3857580060 10800 1 EEST}
|
||||
{3871407600 7200 0 EET}
|
||||
{3888943200 10800 1 EEST}
|
||||
{3889029660 10800 1 EEST}
|
||||
{3902857200 7200 0 EET}
|
||||
{3920392800 10800 1 EEST}
|
||||
{3920479260 10800 1 EEST}
|
||||
{3934306800 7200 0 EET}
|
||||
{3951842400 10800 1 EEST}
|
||||
{3951928860 10800 1 EEST}
|
||||
{3965756400 7200 0 EET}
|
||||
{3983896800 10800 1 EEST}
|
||||
{3983983260 10800 1 EEST}
|
||||
{3997810800 7200 0 EET}
|
||||
{4015346400 10800 1 EEST}
|
||||
{4015432860 10800 1 EEST}
|
||||
{4029260400 7200 0 EET}
|
||||
{4046796000 10800 1 EEST}
|
||||
{4046882460 10800 1 EEST}
|
||||
{4060710000 7200 0 EET}
|
||||
{4078245600 10800 1 EEST}
|
||||
{4078332060 10800 1 EEST}
|
||||
{4092159600 7200 0 EET}
|
||||
}
|
||||
|
|
|
@ -64,184 +64,185 @@ set TZData(:Asia/Kamchatka) {
|
|||
{1224943200 43200 0 PETT}
|
||||
{1238248800 46800 1 PETST}
|
||||
{1256392800 43200 0 PETT}
|
||||
{1269698400 46800 1 PETST}
|
||||
{1288447200 43200 0 PETT}
|
||||
{1301148000 46800 1 PETST}
|
||||
{1319896800 43200 0 PETT}
|
||||
{1332597600 46800 1 PETST}
|
||||
{1351346400 43200 0 PETT}
|
||||
{1364652000 46800 1 PETST}
|
||||
{1382796000 43200 0 PETT}
|
||||
{1396101600 46800 1 PETST}
|
||||
{1414245600 43200 0 PETT}
|
||||
{1427551200 46800 1 PETST}
|
||||
{1445695200 43200 0 PETT}
|
||||
{1459000800 46800 1 PETST}
|
||||
{1477749600 43200 0 PETT}
|
||||
{1490450400 46800 1 PETST}
|
||||
{1509199200 43200 0 PETT}
|
||||
{1521900000 46800 1 PETST}
|
||||
{1540648800 43200 0 PETT}
|
||||
{1553954400 46800 1 PETST}
|
||||
{1572098400 43200 0 PETT}
|
||||
{1585404000 46800 1 PETST}
|
||||
{1603548000 43200 0 PETT}
|
||||
{1616853600 46800 1 PETST}
|
||||
{1635602400 43200 0 PETT}
|
||||
{1648303200 46800 1 PETST}
|
||||
{1667052000 43200 0 PETT}
|
||||
{1679752800 46800 1 PETST}
|
||||
{1698501600 43200 0 PETT}
|
||||
{1711807200 46800 1 PETST}
|
||||
{1729951200 43200 0 PETT}
|
||||
{1743256800 46800 1 PETST}
|
||||
{1761400800 43200 0 PETT}
|
||||
{1774706400 46800 1 PETST}
|
||||
{1792850400 43200 0 PETT}
|
||||
{1806156000 46800 1 PETST}
|
||||
{1824904800 43200 0 PETT}
|
||||
{1837605600 46800 1 PETST}
|
||||
{1856354400 43200 0 PETT}
|
||||
{1869055200 46800 1 PETST}
|
||||
{1887804000 43200 0 PETT}
|
||||
{1901109600 46800 1 PETST}
|
||||
{1919253600 43200 0 PETT}
|
||||
{1932559200 46800 1 PETST}
|
||||
{1950703200 43200 0 PETT}
|
||||
{1964008800 46800 1 PETST}
|
||||
{1982757600 43200 0 PETT}
|
||||
{1995458400 46800 1 PETST}
|
||||
{2014207200 43200 0 PETT}
|
||||
{2026908000 46800 1 PETST}
|
||||
{2045656800 43200 0 PETT}
|
||||
{2058357600 46800 1 PETST}
|
||||
{2077106400 43200 0 PETT}
|
||||
{2090412000 46800 1 PETST}
|
||||
{2108556000 43200 0 PETT}
|
||||
{2121861600 46800 1 PETST}
|
||||
{2140005600 43200 0 PETT}
|
||||
{2153311200 46800 1 PETST}
|
||||
{2172060000 43200 0 PETT}
|
||||
{2184760800 46800 1 PETST}
|
||||
{2203509600 43200 0 PETT}
|
||||
{2216210400 46800 1 PETST}
|
||||
{2234959200 43200 0 PETT}
|
||||
{2248264800 46800 1 PETST}
|
||||
{2266408800 43200 0 PETT}
|
||||
{2279714400 46800 1 PETST}
|
||||
{2297858400 43200 0 PETT}
|
||||
{2311164000 46800 1 PETST}
|
||||
{2329308000 43200 0 PETT}
|
||||
{2342613600 46800 1 PETST}
|
||||
{2361362400 43200 0 PETT}
|
||||
{2374063200 46800 1 PETST}
|
||||
{2392812000 43200 0 PETT}
|
||||
{2405512800 46800 1 PETST}
|
||||
{2424261600 43200 0 PETT}
|
||||
{2437567200 46800 1 PETST}
|
||||
{2455711200 43200 0 PETT}
|
||||
{2469016800 46800 1 PETST}
|
||||
{2487160800 43200 0 PETT}
|
||||
{2500466400 46800 1 PETST}
|
||||
{2519215200 43200 0 PETT}
|
||||
{2531916000 46800 1 PETST}
|
||||
{2550664800 43200 0 PETT}
|
||||
{2563365600 46800 1 PETST}
|
||||
{2582114400 43200 0 PETT}
|
||||
{2595420000 46800 1 PETST}
|
||||
{2613564000 43200 0 PETT}
|
||||
{2626869600 46800 1 PETST}
|
||||
{2645013600 43200 0 PETT}
|
||||
{2658319200 46800 1 PETST}
|
||||
{2676463200 43200 0 PETT}
|
||||
{2689768800 46800 1 PETST}
|
||||
{2708517600 43200 0 PETT}
|
||||
{2721218400 46800 1 PETST}
|
||||
{2739967200 43200 0 PETT}
|
||||
{2752668000 46800 1 PETST}
|
||||
{2771416800 43200 0 PETT}
|
||||
{2784722400 46800 1 PETST}
|
||||
{2802866400 43200 0 PETT}
|
||||
{2816172000 46800 1 PETST}
|
||||
{2834316000 43200 0 PETT}
|
||||
{2847621600 46800 1 PETST}
|
||||
{2866370400 43200 0 PETT}
|
||||
{2879071200 46800 1 PETST}
|
||||
{2897820000 43200 0 PETT}
|
||||
{2910520800 46800 1 PETST}
|
||||
{2929269600 43200 0 PETT}
|
||||
{2941970400 46800 1 PETST}
|
||||
{2960719200 43200 0 PETT}
|
||||
{2974024800 46800 1 PETST}
|
||||
{2992168800 43200 0 PETT}
|
||||
{3005474400 46800 1 PETST}
|
||||
{3023618400 43200 0 PETT}
|
||||
{3036924000 46800 1 PETST}
|
||||
{3055672800 43200 0 PETT}
|
||||
{3068373600 46800 1 PETST}
|
||||
{3087122400 43200 0 PETT}
|
||||
{3099823200 46800 1 PETST}
|
||||
{3118572000 43200 0 PETT}
|
||||
{3131877600 46800 1 PETST}
|
||||
{3150021600 43200 0 PETT}
|
||||
{3163327200 46800 1 PETST}
|
||||
{3181471200 43200 0 PETT}
|
||||
{3194776800 46800 1 PETST}
|
||||
{3212920800 43200 0 PETT}
|
||||
{3226226400 46800 1 PETST}
|
||||
{3244975200 43200 0 PETT}
|
||||
{3257676000 46800 1 PETST}
|
||||
{3276424800 43200 0 PETT}
|
||||
{3289125600 46800 1 PETST}
|
||||
{3307874400 43200 0 PETT}
|
||||
{3321180000 46800 1 PETST}
|
||||
{3339324000 43200 0 PETT}
|
||||
{3352629600 46800 1 PETST}
|
||||
{3370773600 43200 0 PETT}
|
||||
{3384079200 46800 1 PETST}
|
||||
{3402828000 43200 0 PETT}
|
||||
{3415528800 46800 1 PETST}
|
||||
{3434277600 43200 0 PETT}
|
||||
{3446978400 46800 1 PETST}
|
||||
{3465727200 43200 0 PETT}
|
||||
{3479032800 46800 1 PETST}
|
||||
{3497176800 43200 0 PETT}
|
||||
{3510482400 46800 1 PETST}
|
||||
{3528626400 43200 0 PETT}
|
||||
{3541932000 46800 1 PETST}
|
||||
{3560076000 43200 0 PETT}
|
||||
{3573381600 46800 1 PETST}
|
||||
{3592130400 43200 0 PETT}
|
||||
{3604831200 46800 1 PETST}
|
||||
{3623580000 43200 0 PETT}
|
||||
{3636280800 46800 1 PETST}
|
||||
{3655029600 43200 0 PETT}
|
||||
{3668335200 46800 1 PETST}
|
||||
{3686479200 43200 0 PETT}
|
||||
{3699784800 46800 1 PETST}
|
||||
{3717928800 43200 0 PETT}
|
||||
{3731234400 46800 1 PETST}
|
||||
{3749983200 43200 0 PETT}
|
||||
{3762684000 46800 1 PETST}
|
||||
{3781432800 43200 0 PETT}
|
||||
{3794133600 46800 1 PETST}
|
||||
{3812882400 43200 0 PETT}
|
||||
{3825583200 46800 1 PETST}
|
||||
{3844332000 43200 0 PETT}
|
||||
{3857637600 46800 1 PETST}
|
||||
{3875781600 43200 0 PETT}
|
||||
{3889087200 46800 1 PETST}
|
||||
{3907231200 43200 0 PETT}
|
||||
{3920536800 46800 1 PETST}
|
||||
{3939285600 43200 0 PETT}
|
||||
{3951986400 46800 1 PETST}
|
||||
{3970735200 43200 0 PETT}
|
||||
{3983436000 46800 1 PETST}
|
||||
{4002184800 43200 0 PETT}
|
||||
{4015490400 46800 1 PETST}
|
||||
{4033634400 43200 0 PETT}
|
||||
{4046940000 46800 1 PETST}
|
||||
{4065084000 43200 0 PETT}
|
||||
{4078389600 46800 1 PETST}
|
||||
{4096533600 43200 0 PETT}
|
||||
{1269698400 39600 0 PETMMTT}
|
||||
{1269702000 43200 1 PETST}
|
||||
{1288450800 39600 0 PETT}
|
||||
{1301151600 43200 1 PETST}
|
||||
{1319900400 39600 0 PETT}
|
||||
{1332601200 43200 1 PETST}
|
||||
{1351350000 39600 0 PETT}
|
||||
{1364655600 43200 1 PETST}
|
||||
{1382799600 39600 0 PETT}
|
||||
{1396105200 43200 1 PETST}
|
||||
{1414249200 39600 0 PETT}
|
||||
{1427554800 43200 1 PETST}
|
||||
{1445698800 39600 0 PETT}
|
||||
{1459004400 43200 1 PETST}
|
||||
{1477753200 39600 0 PETT}
|
||||
{1490454000 43200 1 PETST}
|
||||
{1509202800 39600 0 PETT}
|
||||
{1521903600 43200 1 PETST}
|
||||
{1540652400 39600 0 PETT}
|
||||
{1553958000 43200 1 PETST}
|
||||
{1572102000 39600 0 PETT}
|
||||
{1585407600 43200 1 PETST}
|
||||
{1603551600 39600 0 PETT}
|
||||
{1616857200 43200 1 PETST}
|
||||
{1635606000 39600 0 PETT}
|
||||
{1648306800 43200 1 PETST}
|
||||
{1667055600 39600 0 PETT}
|
||||
{1679756400 43200 1 PETST}
|
||||
{1698505200 39600 0 PETT}
|
||||
{1711810800 43200 1 PETST}
|
||||
{1729954800 39600 0 PETT}
|
||||
{1743260400 43200 1 PETST}
|
||||
{1761404400 39600 0 PETT}
|
||||
{1774710000 43200 1 PETST}
|
||||
{1792854000 39600 0 PETT}
|
||||
{1806159600 43200 1 PETST}
|
||||
{1824908400 39600 0 PETT}
|
||||
{1837609200 43200 1 PETST}
|
||||
{1856358000 39600 0 PETT}
|
||||
{1869058800 43200 1 PETST}
|
||||
{1887807600 39600 0 PETT}
|
||||
{1901113200 43200 1 PETST}
|
||||
{1919257200 39600 0 PETT}
|
||||
{1932562800 43200 1 PETST}
|
||||
{1950706800 39600 0 PETT}
|
||||
{1964012400 43200 1 PETST}
|
||||
{1982761200 39600 0 PETT}
|
||||
{1995462000 43200 1 PETST}
|
||||
{2014210800 39600 0 PETT}
|
||||
{2026911600 43200 1 PETST}
|
||||
{2045660400 39600 0 PETT}
|
||||
{2058361200 43200 1 PETST}
|
||||
{2077110000 39600 0 PETT}
|
||||
{2090415600 43200 1 PETST}
|
||||
{2108559600 39600 0 PETT}
|
||||
{2121865200 43200 1 PETST}
|
||||
{2140009200 39600 0 PETT}
|
||||
{2153314800 43200 1 PETST}
|
||||
{2172063600 39600 0 PETT}
|
||||
{2184764400 43200 1 PETST}
|
||||
{2203513200 39600 0 PETT}
|
||||
{2216214000 43200 1 PETST}
|
||||
{2234962800 39600 0 PETT}
|
||||
{2248268400 43200 1 PETST}
|
||||
{2266412400 39600 0 PETT}
|
||||
{2279718000 43200 1 PETST}
|
||||
{2297862000 39600 0 PETT}
|
||||
{2311167600 43200 1 PETST}
|
||||
{2329311600 39600 0 PETT}
|
||||
{2342617200 43200 1 PETST}
|
||||
{2361366000 39600 0 PETT}
|
||||
{2374066800 43200 1 PETST}
|
||||
{2392815600 39600 0 PETT}
|
||||
{2405516400 43200 1 PETST}
|
||||
{2424265200 39600 0 PETT}
|
||||
{2437570800 43200 1 PETST}
|
||||
{2455714800 39600 0 PETT}
|
||||
{2469020400 43200 1 PETST}
|
||||
{2487164400 39600 0 PETT}
|
||||
{2500470000 43200 1 PETST}
|
||||
{2519218800 39600 0 PETT}
|
||||
{2531919600 43200 1 PETST}
|
||||
{2550668400 39600 0 PETT}
|
||||
{2563369200 43200 1 PETST}
|
||||
{2582118000 39600 0 PETT}
|
||||
{2595423600 43200 1 PETST}
|
||||
{2613567600 39600 0 PETT}
|
||||
{2626873200 43200 1 PETST}
|
||||
{2645017200 39600 0 PETT}
|
||||
{2658322800 43200 1 PETST}
|
||||
{2676466800 39600 0 PETT}
|
||||
{2689772400 43200 1 PETST}
|
||||
{2708521200 39600 0 PETT}
|
||||
{2721222000 43200 1 PETST}
|
||||
{2739970800 39600 0 PETT}
|
||||
{2752671600 43200 1 PETST}
|
||||
{2771420400 39600 0 PETT}
|
||||
{2784726000 43200 1 PETST}
|
||||
{2802870000 39600 0 PETT}
|
||||
{2816175600 43200 1 PETST}
|
||||
{2834319600 39600 0 PETT}
|
||||
{2847625200 43200 1 PETST}
|
||||
{2866374000 39600 0 PETT}
|
||||
{2879074800 43200 1 PETST}
|
||||
{2897823600 39600 0 PETT}
|
||||
{2910524400 43200 1 PETST}
|
||||
{2929273200 39600 0 PETT}
|
||||
{2941974000 43200 1 PETST}
|
||||
{2960722800 39600 0 PETT}
|
||||
{2974028400 43200 1 PETST}
|
||||
{2992172400 39600 0 PETT}
|
||||
{3005478000 43200 1 PETST}
|
||||
{3023622000 39600 0 PETT}
|
||||
{3036927600 43200 1 PETST}
|
||||
{3055676400 39600 0 PETT}
|
||||
{3068377200 43200 1 PETST}
|
||||
{3087126000 39600 0 PETT}
|
||||
{3099826800 43200 1 PETST}
|
||||
{3118575600 39600 0 PETT}
|
||||
{3131881200 43200 1 PETST}
|
||||
{3150025200 39600 0 PETT}
|
||||
{3163330800 43200 1 PETST}
|
||||
{3181474800 39600 0 PETT}
|
||||
{3194780400 43200 1 PETST}
|
||||
{3212924400 39600 0 PETT}
|
||||
{3226230000 43200 1 PETST}
|
||||
{3244978800 39600 0 PETT}
|
||||
{3257679600 43200 1 PETST}
|
||||
{3276428400 39600 0 PETT}
|
||||
{3289129200 43200 1 PETST}
|
||||
{3307878000 39600 0 PETT}
|
||||
{3321183600 43200 1 PETST}
|
||||
{3339327600 39600 0 PETT}
|
||||
{3352633200 43200 1 PETST}
|
||||
{3370777200 39600 0 PETT}
|
||||
{3384082800 43200 1 PETST}
|
||||
{3402831600 39600 0 PETT}
|
||||
{3415532400 43200 1 PETST}
|
||||
{3434281200 39600 0 PETT}
|
||||
{3446982000 43200 1 PETST}
|
||||
{3465730800 39600 0 PETT}
|
||||
{3479036400 43200 1 PETST}
|
||||
{3497180400 39600 0 PETT}
|
||||
{3510486000 43200 1 PETST}
|
||||
{3528630000 39600 0 PETT}
|
||||
{3541935600 43200 1 PETST}
|
||||
{3560079600 39600 0 PETT}
|
||||
{3573385200 43200 1 PETST}
|
||||
{3592134000 39600 0 PETT}
|
||||
{3604834800 43200 1 PETST}
|
||||
{3623583600 39600 0 PETT}
|
||||
{3636284400 43200 1 PETST}
|
||||
{3655033200 39600 0 PETT}
|
||||
{3668338800 43200 1 PETST}
|
||||
{3686482800 39600 0 PETT}
|
||||
{3699788400 43200 1 PETST}
|
||||
{3717932400 39600 0 PETT}
|
||||
{3731238000 43200 1 PETST}
|
||||
{3749986800 39600 0 PETT}
|
||||
{3762687600 43200 1 PETST}
|
||||
{3781436400 39600 0 PETT}
|
||||
{3794137200 43200 1 PETST}
|
||||
{3812886000 39600 0 PETT}
|
||||
{3825586800 43200 1 PETST}
|
||||
{3844335600 39600 0 PETT}
|
||||
{3857641200 43200 1 PETST}
|
||||
{3875785200 39600 0 PETT}
|
||||
{3889090800 43200 1 PETST}
|
||||
{3907234800 39600 0 PETT}
|
||||
{3920540400 43200 1 PETST}
|
||||
{3939289200 39600 0 PETT}
|
||||
{3951990000 43200 1 PETST}
|
||||
{3970738800 39600 0 PETT}
|
||||
{3983439600 43200 1 PETST}
|
||||
{4002188400 39600 0 PETT}
|
||||
{4015494000 43200 1 PETST}
|
||||
{4033638000 39600 0 PETT}
|
||||
{4046943600 43200 1 PETST}
|
||||
{4065087600 39600 0 PETT}
|
||||
{4078393200 43200 1 PETST}
|
||||
{4096537200 39600 0 PETT}
|
||||
}
|
||||
|
|
|
@ -13,184 +13,4 @@ set TZData(:Asia/Karachi) {
|
|||
{1225476000 18000 0 PKT}
|
||||
{1239735600 21600 1 PKST}
|
||||
{1257012000 18000 0 PKT}
|
||||
{1271271600 21600 1 PKST}
|
||||
{1288548000 18000 0 PKT}
|
||||
{1302807600 21600 1 PKST}
|
||||
{1320084000 18000 0 PKT}
|
||||
{1334430000 21600 1 PKST}
|
||||
{1351706400 18000 0 PKT}
|
||||
{1365966000 21600 1 PKST}
|
||||
{1383242400 18000 0 PKT}
|
||||
{1397502000 21600 1 PKST}
|
||||
{1414778400 18000 0 PKT}
|
||||
{1429038000 21600 1 PKST}
|
||||
{1446314400 18000 0 PKT}
|
||||
{1460660400 21600 1 PKST}
|
||||
{1477936800 18000 0 PKT}
|
||||
{1492196400 21600 1 PKST}
|
||||
{1509472800 18000 0 PKT}
|
||||
{1523732400 21600 1 PKST}
|
||||
{1541008800 18000 0 PKT}
|
||||
{1555268400 21600 1 PKST}
|
||||
{1572544800 18000 0 PKT}
|
||||
{1586890800 21600 1 PKST}
|
||||
{1604167200 18000 0 PKT}
|
||||
{1618426800 21600 1 PKST}
|
||||
{1635703200 18000 0 PKT}
|
||||
{1649962800 21600 1 PKST}
|
||||
{1667239200 18000 0 PKT}
|
||||
{1681498800 21600 1 PKST}
|
||||
{1698775200 18000 0 PKT}
|
||||
{1713121200 21600 1 PKST}
|
||||
{1730397600 18000 0 PKT}
|
||||
{1744657200 21600 1 PKST}
|
||||
{1761933600 18000 0 PKT}
|
||||
{1776193200 21600 1 PKST}
|
||||
{1793469600 18000 0 PKT}
|
||||
{1807729200 21600 1 PKST}
|
||||
{1825005600 18000 0 PKT}
|
||||
{1839351600 21600 1 PKST}
|
||||
{1856628000 18000 0 PKT}
|
||||
{1870887600 21600 1 PKST}
|
||||
{1888164000 18000 0 PKT}
|
||||
{1902423600 21600 1 PKST}
|
||||
{1919700000 18000 0 PKT}
|
||||
{1933959600 21600 1 PKST}
|
||||
{1951236000 18000 0 PKT}
|
||||
{1965582000 21600 1 PKST}
|
||||
{1982858400 18000 0 PKT}
|
||||
{1997118000 21600 1 PKST}
|
||||
{2014394400 18000 0 PKT}
|
||||
{2028654000 21600 1 PKST}
|
||||
{2045930400 18000 0 PKT}
|
||||
{2060190000 21600 1 PKST}
|
||||
{2077466400 18000 0 PKT}
|
||||
{2091812400 21600 1 PKST}
|
||||
{2109088800 18000 0 PKT}
|
||||
{2123348400 21600 1 PKST}
|
||||
{2140624800 18000 0 PKT}
|
||||
{2154884400 21600 1 PKST}
|
||||
{2172160800 18000 0 PKT}
|
||||
{2186420400 21600 1 PKST}
|
||||
{2203696800 18000 0 PKT}
|
||||
{2218042800 21600 1 PKST}
|
||||
{2235319200 18000 0 PKT}
|
||||
{2249578800 21600 1 PKST}
|
||||
{2266855200 18000 0 PKT}
|
||||
{2281114800 21600 1 PKST}
|
||||
{2298391200 18000 0 PKT}
|
||||
{2312650800 21600 1 PKST}
|
||||
{2329927200 18000 0 PKT}
|
||||
{2344273200 21600 1 PKST}
|
||||
{2361549600 18000 0 PKT}
|
||||
{2375809200 21600 1 PKST}
|
||||
{2393085600 18000 0 PKT}
|
||||
{2407345200 21600 1 PKST}
|
||||
{2424621600 18000 0 PKT}
|
||||
{2438881200 21600 1 PKST}
|
||||
{2456157600 18000 0 PKT}
|
||||
{2470503600 21600 1 PKST}
|
||||
{2487780000 18000 0 PKT}
|
||||
{2502039600 21600 1 PKST}
|
||||
{2519316000 18000 0 PKT}
|
||||
{2533575600 21600 1 PKST}
|
||||
{2550852000 18000 0 PKT}
|
||||
{2565111600 21600 1 PKST}
|
||||
{2582388000 18000 0 PKT}
|
||||
{2596734000 21600 1 PKST}
|
||||
{2614010400 18000 0 PKT}
|
||||
{2628270000 21600 1 PKST}
|
||||
{2645546400 18000 0 PKT}
|
||||
{2659806000 21600 1 PKST}
|
||||
{2677082400 18000 0 PKT}
|
||||
{2691342000 21600 1 PKST}
|
||||
{2708618400 18000 0 PKT}
|
||||
{2722964400 21600 1 PKST}
|
||||
{2740240800 18000 0 PKT}
|
||||
{2754500400 21600 1 PKST}
|
||||
{2771776800 18000 0 PKT}
|
||||
{2786036400 21600 1 PKST}
|
||||
{2803312800 18000 0 PKT}
|
||||
{2817572400 21600 1 PKST}
|
||||
{2834848800 18000 0 PKT}
|
||||
{2849194800 21600 1 PKST}
|
||||
{2866471200 18000 0 PKT}
|
||||
{2880730800 21600 1 PKST}
|
||||
{2898007200 18000 0 PKT}
|
||||
{2912266800 21600 1 PKST}
|
||||
{2929543200 18000 0 PKT}
|
||||
{2943802800 21600 1 PKST}
|
||||
{2961079200 18000 0 PKT}
|
||||
{2975425200 21600 1 PKST}
|
||||
{2992701600 18000 0 PKT}
|
||||
{3006961200 21600 1 PKST}
|
||||
{3024237600 18000 0 PKT}
|
||||
{3038497200 21600 1 PKST}
|
||||
{3055773600 18000 0 PKT}
|
||||
{3070033200 21600 1 PKST}
|
||||
{3087309600 18000 0 PKT}
|
||||
{3101655600 21600 1 PKST}
|
||||
{3118932000 18000 0 PKT}
|
||||
{3133191600 21600 1 PKST}
|
||||
{3150468000 18000 0 PKT}
|
||||
{3164727600 21600 1 PKST}
|
||||
{3182004000 18000 0 PKT}
|
||||
{3196263600 21600 1 PKST}
|
||||
{3213540000 18000 0 PKT}
|
||||
{3227886000 21600 1 PKST}
|
||||
{3245162400 18000 0 PKT}
|
||||
{3259422000 21600 1 PKST}
|
||||
{3276698400 18000 0 PKT}
|
||||
{3290958000 21600 1 PKST}
|
||||
{3308234400 18000 0 PKT}
|
||||
{3322494000 21600 1 PKST}
|
||||
{3339770400 18000 0 PKT}
|
||||
{3354116400 21600 1 PKST}
|
||||
{3371392800 18000 0 PKT}
|
||||
{3385652400 21600 1 PKST}
|
||||
{3402928800 18000 0 PKT}
|
||||
{3417188400 21600 1 PKST}
|
||||
{3434464800 18000 0 PKT}
|
||||
{3448724400 21600 1 PKST}
|
||||
{3466000800 18000 0 PKT}
|
||||
{3480346800 21600 1 PKST}
|
||||
{3497623200 18000 0 PKT}
|
||||
{3511882800 21600 1 PKST}
|
||||
{3529159200 18000 0 PKT}
|
||||
{3543418800 21600 1 PKST}
|
||||
{3560695200 18000 0 PKT}
|
||||
{3574954800 21600 1 PKST}
|
||||
{3592231200 18000 0 PKT}
|
||||
{3606577200 21600 1 PKST}
|
||||
{3623853600 18000 0 PKT}
|
||||
{3638113200 21600 1 PKST}
|
||||
{3655389600 18000 0 PKT}
|
||||
{3669649200 21600 1 PKST}
|
||||
{3686925600 18000 0 PKT}
|
||||
{3701185200 21600 1 PKST}
|
||||
{3718461600 18000 0 PKT}
|
||||
{3732807600 21600 1 PKST}
|
||||
{3750084000 18000 0 PKT}
|
||||
{3764343600 21600 1 PKST}
|
||||
{3781620000 18000 0 PKT}
|
||||
{3795879600 21600 1 PKST}
|
||||
{3813156000 18000 0 PKT}
|
||||
{3827415600 21600 1 PKST}
|
||||
{3844692000 18000 0 PKT}
|
||||
{3859038000 21600 1 PKST}
|
||||
{3876314400 18000 0 PKT}
|
||||
{3890574000 21600 1 PKST}
|
||||
{3907850400 18000 0 PKT}
|
||||
{3922110000 21600 1 PKST}
|
||||
{3939386400 18000 0 PKT}
|
||||
{3953646000 21600 1 PKST}
|
||||
{3970922400 18000 0 PKT}
|
||||
{3985268400 21600 1 PKST}
|
||||
{4002544800 18000 0 PKT}
|
||||
{4016804400 21600 1 PKST}
|
||||
{4034080800 18000 0 PKT}
|
||||
{4048340400 21600 1 PKST}
|
||||
{4065616800 18000 0 PKT}
|
||||
{4079876400 21600 1 PKST}
|
||||
{4097152800 18000 0 PKT}
|
||||
}
|
||||
|
|
|
@ -41,6 +41,6 @@ set TZData(:Asia/Taipei) {
|
|||
{149785200 28800 0 CST}
|
||||
{165513600 32400 1 CDT}
|
||||
{181321200 28800 0 CST}
|
||||
{331142400 32400 1 CDT}
|
||||
{339087600 28800 0 CST}
|
||||
{299520000 32400 1 CDT}
|
||||
{307465200 28800 0 CST}
|
||||
}
|
||||
|
|
|
@ -6,11 +6,11 @@ set TZData(:Europe/Helsinki) {
|
|||
{-1535938792 7200 0 EET}
|
||||
{-875671200 10800 1 EEST}
|
||||
{-859863600 7200 0 EET}
|
||||
{354672000 7200 0 EET}
|
||||
{354675600 10800 1 EEST}
|
||||
{370400400 7200 0 EET}
|
||||
{386125200 10800 1 EEST}
|
||||
{401850000 7200 0 EET}
|
||||
{354672000 10800 1 EEST}
|
||||
{370396800 7200 0 EET}
|
||||
{386121600 10800 1 EEST}
|
||||
{401846400 7200 0 EET}
|
||||
{410220000 7200 0 EET}
|
||||
{417574800 10800 1 EEST}
|
||||
{433299600 7200 0 EET}
|
||||
{449024400 10800 1 EEST}
|
||||
|
|
|
@ -66,184 +66,185 @@ set TZData(:Europe/Samara) {
|
|||
{1224972000 14400 0 SAMT}
|
||||
{1238277600 18000 1 SAMST}
|
||||
{1256421600 14400 0 SAMT}
|
||||
{1269727200 18000 1 SAMST}
|
||||
{1288476000 14400 0 SAMT}
|
||||
{1301176800 18000 1 SAMST}
|
||||
{1319925600 14400 0 SAMT}
|
||||
{1332626400 18000 1 SAMST}
|
||||
{1351375200 14400 0 SAMT}
|
||||
{1364680800 18000 1 SAMST}
|
||||
{1382824800 14400 0 SAMT}
|
||||
{1396130400 18000 1 SAMST}
|
||||
{1414274400 14400 0 SAMT}
|
||||
{1427580000 18000 1 SAMST}
|
||||
{1445724000 14400 0 SAMT}
|
||||
{1459029600 18000 1 SAMST}
|
||||
{1477778400 14400 0 SAMT}
|
||||
{1490479200 18000 1 SAMST}
|
||||
{1509228000 14400 0 SAMT}
|
||||
{1521928800 18000 1 SAMST}
|
||||
{1540677600 14400 0 SAMT}
|
||||
{1553983200 18000 1 SAMST}
|
||||
{1572127200 14400 0 SAMT}
|
||||
{1585432800 18000 1 SAMST}
|
||||
{1603576800 14400 0 SAMT}
|
||||
{1616882400 18000 1 SAMST}
|
||||
{1635631200 14400 0 SAMT}
|
||||
{1648332000 18000 1 SAMST}
|
||||
{1667080800 14400 0 SAMT}
|
||||
{1679781600 18000 1 SAMST}
|
||||
{1698530400 14400 0 SAMT}
|
||||
{1711836000 18000 1 SAMST}
|
||||
{1729980000 14400 0 SAMT}
|
||||
{1743285600 18000 1 SAMST}
|
||||
{1761429600 14400 0 SAMT}
|
||||
{1774735200 18000 1 SAMST}
|
||||
{1792879200 14400 0 SAMT}
|
||||
{1806184800 18000 1 SAMST}
|
||||
{1824933600 14400 0 SAMT}
|
||||
{1837634400 18000 1 SAMST}
|
||||
{1856383200 14400 0 SAMT}
|
||||
{1869084000 18000 1 SAMST}
|
||||
{1887832800 14400 0 SAMT}
|
||||
{1901138400 18000 1 SAMST}
|
||||
{1919282400 14400 0 SAMT}
|
||||
{1932588000 18000 1 SAMST}
|
||||
{1950732000 14400 0 SAMT}
|
||||
{1964037600 18000 1 SAMST}
|
||||
{1982786400 14400 0 SAMT}
|
||||
{1995487200 18000 1 SAMST}
|
||||
{2014236000 14400 0 SAMT}
|
||||
{2026936800 18000 1 SAMST}
|
||||
{2045685600 14400 0 SAMT}
|
||||
{2058386400 18000 1 SAMST}
|
||||
{2077135200 14400 0 SAMT}
|
||||
{2090440800 18000 1 SAMST}
|
||||
{2108584800 14400 0 SAMT}
|
||||
{2121890400 18000 1 SAMST}
|
||||
{2140034400 14400 0 SAMT}
|
||||
{2153340000 18000 1 SAMST}
|
||||
{2172088800 14400 0 SAMT}
|
||||
{2184789600 18000 1 SAMST}
|
||||
{2203538400 14400 0 SAMT}
|
||||
{2216239200 18000 1 SAMST}
|
||||
{2234988000 14400 0 SAMT}
|
||||
{2248293600 18000 1 SAMST}
|
||||
{2266437600 14400 0 SAMT}
|
||||
{2279743200 18000 1 SAMST}
|
||||
{2297887200 14400 0 SAMT}
|
||||
{2311192800 18000 1 SAMST}
|
||||
{2329336800 14400 0 SAMT}
|
||||
{2342642400 18000 1 SAMST}
|
||||
{2361391200 14400 0 SAMT}
|
||||
{2374092000 18000 1 SAMST}
|
||||
{2392840800 14400 0 SAMT}
|
||||
{2405541600 18000 1 SAMST}
|
||||
{2424290400 14400 0 SAMT}
|
||||
{2437596000 18000 1 SAMST}
|
||||
{2455740000 14400 0 SAMT}
|
||||
{2469045600 18000 1 SAMST}
|
||||
{2487189600 14400 0 SAMT}
|
||||
{2500495200 18000 1 SAMST}
|
||||
{2519244000 14400 0 SAMT}
|
||||
{2531944800 18000 1 SAMST}
|
||||
{2550693600 14400 0 SAMT}
|
||||
{2563394400 18000 1 SAMST}
|
||||
{2582143200 14400 0 SAMT}
|
||||
{2595448800 18000 1 SAMST}
|
||||
{2613592800 14400 0 SAMT}
|
||||
{2626898400 18000 1 SAMST}
|
||||
{2645042400 14400 0 SAMT}
|
||||
{2658348000 18000 1 SAMST}
|
||||
{2676492000 14400 0 SAMT}
|
||||
{2689797600 18000 1 SAMST}
|
||||
{2708546400 14400 0 SAMT}
|
||||
{2721247200 18000 1 SAMST}
|
||||
{2739996000 14400 0 SAMT}
|
||||
{2752696800 18000 1 SAMST}
|
||||
{2771445600 14400 0 SAMT}
|
||||
{2784751200 18000 1 SAMST}
|
||||
{2802895200 14400 0 SAMT}
|
||||
{2816200800 18000 1 SAMST}
|
||||
{2834344800 14400 0 SAMT}
|
||||
{2847650400 18000 1 SAMST}
|
||||
{2866399200 14400 0 SAMT}
|
||||
{2879100000 18000 1 SAMST}
|
||||
{2897848800 14400 0 SAMT}
|
||||
{2910549600 18000 1 SAMST}
|
||||
{2929298400 14400 0 SAMT}
|
||||
{2941999200 18000 1 SAMST}
|
||||
{2960748000 14400 0 SAMT}
|
||||
{2974053600 18000 1 SAMST}
|
||||
{2992197600 14400 0 SAMT}
|
||||
{3005503200 18000 1 SAMST}
|
||||
{3023647200 14400 0 SAMT}
|
||||
{3036952800 18000 1 SAMST}
|
||||
{3055701600 14400 0 SAMT}
|
||||
{3068402400 18000 1 SAMST}
|
||||
{3087151200 14400 0 SAMT}
|
||||
{3099852000 18000 1 SAMST}
|
||||
{3118600800 14400 0 SAMT}
|
||||
{3131906400 18000 1 SAMST}
|
||||
{3150050400 14400 0 SAMT}
|
||||
{3163356000 18000 1 SAMST}
|
||||
{3181500000 14400 0 SAMT}
|
||||
{3194805600 18000 1 SAMST}
|
||||
{3212949600 14400 0 SAMT}
|
||||
{3226255200 18000 1 SAMST}
|
||||
{3245004000 14400 0 SAMT}
|
||||
{3257704800 18000 1 SAMST}
|
||||
{3276453600 14400 0 SAMT}
|
||||
{3289154400 18000 1 SAMST}
|
||||
{3307903200 14400 0 SAMT}
|
||||
{3321208800 18000 1 SAMST}
|
||||
{3339352800 14400 0 SAMT}
|
||||
{3352658400 18000 1 SAMST}
|
||||
{3370802400 14400 0 SAMT}
|
||||
{3384108000 18000 1 SAMST}
|
||||
{3402856800 14400 0 SAMT}
|
||||
{3415557600 18000 1 SAMST}
|
||||
{3434306400 14400 0 SAMT}
|
||||
{3447007200 18000 1 SAMST}
|
||||
{3465756000 14400 0 SAMT}
|
||||
{3479061600 18000 1 SAMST}
|
||||
{3497205600 14400 0 SAMT}
|
||||
{3510511200 18000 1 SAMST}
|
||||
{3528655200 14400 0 SAMT}
|
||||
{3541960800 18000 1 SAMST}
|
||||
{3560104800 14400 0 SAMT}
|
||||
{3573410400 18000 1 SAMST}
|
||||
{3592159200 14400 0 SAMT}
|
||||
{3604860000 18000 1 SAMST}
|
||||
{3623608800 14400 0 SAMT}
|
||||
{3636309600 18000 1 SAMST}
|
||||
{3655058400 14400 0 SAMT}
|
||||
{3668364000 18000 1 SAMST}
|
||||
{3686508000 14400 0 SAMT}
|
||||
{3699813600 18000 1 SAMST}
|
||||
{3717957600 14400 0 SAMT}
|
||||
{3731263200 18000 1 SAMST}
|
||||
{3750012000 14400 0 SAMT}
|
||||
{3762712800 18000 1 SAMST}
|
||||
{3781461600 14400 0 SAMT}
|
||||
{3794162400 18000 1 SAMST}
|
||||
{3812911200 14400 0 SAMT}
|
||||
{3825612000 18000 1 SAMST}
|
||||
{3844360800 14400 0 SAMT}
|
||||
{3857666400 18000 1 SAMST}
|
||||
{3875810400 14400 0 SAMT}
|
||||
{3889116000 18000 1 SAMST}
|
||||
{3907260000 14400 0 SAMT}
|
||||
{3920565600 18000 1 SAMST}
|
||||
{3939314400 14400 0 SAMT}
|
||||
{3952015200 18000 1 SAMST}
|
||||
{3970764000 14400 0 SAMT}
|
||||
{3983464800 18000 1 SAMST}
|
||||
{4002213600 14400 0 SAMT}
|
||||
{4015519200 18000 1 SAMST}
|
||||
{4033663200 14400 0 SAMT}
|
||||
{4046968800 18000 1 SAMST}
|
||||
{4065112800 14400 0 SAMT}
|
||||
{4078418400 18000 1 SAMST}
|
||||
{4096562400 14400 0 SAMT}
|
||||
{1269727200 10800 0 SAMMMTT}
|
||||
{1269730800 14400 1 SAMST}
|
||||
{1288479600 10800 0 SAMT}
|
||||
{1301180400 14400 1 SAMST}
|
||||
{1319929200 10800 0 SAMT}
|
||||
{1332630000 14400 1 SAMST}
|
||||
{1351378800 10800 0 SAMT}
|
||||
{1364684400 14400 1 SAMST}
|
||||
{1382828400 10800 0 SAMT}
|
||||
{1396134000 14400 1 SAMST}
|
||||
{1414278000 10800 0 SAMT}
|
||||
{1427583600 14400 1 SAMST}
|
||||
{1445727600 10800 0 SAMT}
|
||||
{1459033200 14400 1 SAMST}
|
||||
{1477782000 10800 0 SAMT}
|
||||
{1490482800 14400 1 SAMST}
|
||||
{1509231600 10800 0 SAMT}
|
||||
{1521932400 14400 1 SAMST}
|
||||
{1540681200 10800 0 SAMT}
|
||||
{1553986800 14400 1 SAMST}
|
||||
{1572130800 10800 0 SAMT}
|
||||
{1585436400 14400 1 SAMST}
|
||||
{1603580400 10800 0 SAMT}
|
||||
{1616886000 14400 1 SAMST}
|
||||
{1635634800 10800 0 SAMT}
|
||||
{1648335600 14400 1 SAMST}
|
||||
{1667084400 10800 0 SAMT}
|
||||
{1679785200 14400 1 SAMST}
|
||||
{1698534000 10800 0 SAMT}
|
||||
{1711839600 14400 1 SAMST}
|
||||
{1729983600 10800 0 SAMT}
|
||||
{1743289200 14400 1 SAMST}
|
||||
{1761433200 10800 0 SAMT}
|
||||
{1774738800 14400 1 SAMST}
|
||||
{1792882800 10800 0 SAMT}
|
||||
{1806188400 14400 1 SAMST}
|
||||
{1824937200 10800 0 SAMT}
|
||||
{1837638000 14400 1 SAMST}
|
||||
{1856386800 10800 0 SAMT}
|
||||
{1869087600 14400 1 SAMST}
|
||||
{1887836400 10800 0 SAMT}
|
||||
{1901142000 14400 1 SAMST}
|
||||
{1919286000 10800 0 SAMT}
|
||||
{1932591600 14400 1 SAMST}
|
||||
{1950735600 10800 0 SAMT}
|
||||
{1964041200 14400 1 SAMST}
|
||||
{1982790000 10800 0 SAMT}
|
||||
{1995490800 14400 1 SAMST}
|
||||
{2014239600 10800 0 SAMT}
|
||||
{2026940400 14400 1 SAMST}
|
||||
{2045689200 10800 0 SAMT}
|
||||
{2058390000 14400 1 SAMST}
|
||||
{2077138800 10800 0 SAMT}
|
||||
{2090444400 14400 1 SAMST}
|
||||
{2108588400 10800 0 SAMT}
|
||||
{2121894000 14400 1 SAMST}
|
||||
{2140038000 10800 0 SAMT}
|
||||
{2153343600 14400 1 SAMST}
|
||||
{2172092400 10800 0 SAMT}
|
||||
{2184793200 14400 1 SAMST}
|
||||
{2203542000 10800 0 SAMT}
|
||||
{2216242800 14400 1 SAMST}
|
||||
{2234991600 10800 0 SAMT}
|
||||
{2248297200 14400 1 SAMST}
|
||||
{2266441200 10800 0 SAMT}
|
||||
{2279746800 14400 1 SAMST}
|
||||
{2297890800 10800 0 SAMT}
|
||||
{2311196400 14400 1 SAMST}
|
||||
{2329340400 10800 0 SAMT}
|
||||
{2342646000 14400 1 SAMST}
|
||||
{2361394800 10800 0 SAMT}
|
||||
{2374095600 14400 1 SAMST}
|
||||
{2392844400 10800 0 SAMT}
|
||||
{2405545200 14400 1 SAMST}
|
||||
{2424294000 10800 0 SAMT}
|
||||
{2437599600 14400 1 SAMST}
|
||||
{2455743600 10800 0 SAMT}
|
||||
{2469049200 14400 1 SAMST}
|
||||
{2487193200 10800 0 SAMT}
|
||||
{2500498800 14400 1 SAMST}
|
||||
{2519247600 10800 0 SAMT}
|
||||
{2531948400 14400 1 SAMST}
|
||||
{2550697200 10800 0 SAMT}
|
||||
{2563398000 14400 1 SAMST}
|
||||
{2582146800 10800 0 SAMT}
|
||||
{2595452400 14400 1 SAMST}
|
||||
{2613596400 10800 0 SAMT}
|
||||
{2626902000 14400 1 SAMST}
|
||||
{2645046000 10800 0 SAMT}
|
||||
{2658351600 14400 1 SAMST}
|
||||
{2676495600 10800 0 SAMT}
|
||||
{2689801200 14400 1 SAMST}
|
||||
{2708550000 10800 0 SAMT}
|
||||
{2721250800 14400 1 SAMST}
|
||||
{2739999600 10800 0 SAMT}
|
||||
{2752700400 14400 1 SAMST}
|
||||
{2771449200 10800 0 SAMT}
|
||||
{2784754800 14400 1 SAMST}
|
||||
{2802898800 10800 0 SAMT}
|
||||
{2816204400 14400 1 SAMST}
|
||||
{2834348400 10800 0 SAMT}
|
||||
{2847654000 14400 1 SAMST}
|
||||
{2866402800 10800 0 SAMT}
|
||||
{2879103600 14400 1 SAMST}
|
||||
{2897852400 10800 0 SAMT}
|
||||
{2910553200 14400 1 SAMST}
|
||||
{2929302000 10800 0 SAMT}
|
||||
{2942002800 14400 1 SAMST}
|
||||
{2960751600 10800 0 SAMT}
|
||||
{2974057200 14400 1 SAMST}
|
||||
{2992201200 10800 0 SAMT}
|
||||
{3005506800 14400 1 SAMST}
|
||||
{3023650800 10800 0 SAMT}
|
||||
{3036956400 14400 1 SAMST}
|
||||
{3055705200 10800 0 SAMT}
|
||||
{3068406000 14400 1 SAMST}
|
||||
{3087154800 10800 0 SAMT}
|
||||
{3099855600 14400 1 SAMST}
|
||||
{3118604400 10800 0 SAMT}
|
||||
{3131910000 14400 1 SAMST}
|
||||
{3150054000 10800 0 SAMT}
|
||||
{3163359600 14400 1 SAMST}
|
||||
{3181503600 10800 0 SAMT}
|
||||
{3194809200 14400 1 SAMST}
|
||||
{3212953200 10800 0 SAMT}
|
||||
{3226258800 14400 1 SAMST}
|
||||
{3245007600 10800 0 SAMT}
|
||||
{3257708400 14400 1 SAMST}
|
||||
{3276457200 10800 0 SAMT}
|
||||
{3289158000 14400 1 SAMST}
|
||||
{3307906800 10800 0 SAMT}
|
||||
{3321212400 14400 1 SAMST}
|
||||
{3339356400 10800 0 SAMT}
|
||||
{3352662000 14400 1 SAMST}
|
||||
{3370806000 10800 0 SAMT}
|
||||
{3384111600 14400 1 SAMST}
|
||||
{3402860400 10800 0 SAMT}
|
||||
{3415561200 14400 1 SAMST}
|
||||
{3434310000 10800 0 SAMT}
|
||||
{3447010800 14400 1 SAMST}
|
||||
{3465759600 10800 0 SAMT}
|
||||
{3479065200 14400 1 SAMST}
|
||||
{3497209200 10800 0 SAMT}
|
||||
{3510514800 14400 1 SAMST}
|
||||
{3528658800 10800 0 SAMT}
|
||||
{3541964400 14400 1 SAMST}
|
||||
{3560108400 10800 0 SAMT}
|
||||
{3573414000 14400 1 SAMST}
|
||||
{3592162800 10800 0 SAMT}
|
||||
{3604863600 14400 1 SAMST}
|
||||
{3623612400 10800 0 SAMT}
|
||||
{3636313200 14400 1 SAMST}
|
||||
{3655062000 10800 0 SAMT}
|
||||
{3668367600 14400 1 SAMST}
|
||||
{3686511600 10800 0 SAMT}
|
||||
{3699817200 14400 1 SAMST}
|
||||
{3717961200 10800 0 SAMT}
|
||||
{3731266800 14400 1 SAMST}
|
||||
{3750015600 10800 0 SAMT}
|
||||
{3762716400 14400 1 SAMST}
|
||||
{3781465200 10800 0 SAMT}
|
||||
{3794166000 14400 1 SAMST}
|
||||
{3812914800 10800 0 SAMT}
|
||||
{3825615600 14400 1 SAMST}
|
||||
{3844364400 10800 0 SAMT}
|
||||
{3857670000 14400 1 SAMST}
|
||||
{3875814000 10800 0 SAMT}
|
||||
{3889119600 14400 1 SAMST}
|
||||
{3907263600 10800 0 SAMT}
|
||||
{3920569200 14400 1 SAMST}
|
||||
{3939318000 10800 0 SAMT}
|
||||
{3952018800 14400 1 SAMST}
|
||||
{3970767600 10800 0 SAMT}
|
||||
{3983468400 14400 1 SAMST}
|
||||
{4002217200 10800 0 SAMT}
|
||||
{4015522800 14400 1 SAMST}
|
||||
{4033666800 10800 0 SAMT}
|
||||
{4046972400 14400 1 SAMST}
|
||||
{4065116400 10800 0 SAMT}
|
||||
{4078422000 14400 1 SAMST}
|
||||
{4096566000 10800 0 SAMT}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,6 @@ set TZData(:Pacific/Apia) {
|
|||
{-2855737984 -41216 0 LMT}
|
||||
{-1861878784 -41400 0 SAMT}
|
||||
{-631110600 -39600 0 WST}
|
||||
{1254654000 -36000 1 WSDT}
|
||||
{1269770400 -39600 0 WST}
|
||||
{1285498800 -36000 1 WSDT}
|
||||
{1301824800 -39600 0 WST}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:Pacific/Chuuk) {
|
||||
{-9223372036854775808 36428 0 LMT}
|
||||
{-2177489228 36000 0 CHUT}
|
||||
}
|
|
@ -92,7 +92,7 @@ set TZData(:Pacific/Easter) {
|
|||
{1223784000 -18000 1 EASST}
|
||||
{1237086000 -21600 0 EAST}
|
||||
{1255233600 -18000 1 EASST}
|
||||
{1268535600 -21600 0 EAST}
|
||||
{1270350000 -21600 0 EAST}
|
||||
{1286683200 -18000 1 EASST}
|
||||
{1299985200 -21600 0 EAST}
|
||||
{1318132800 -18000 1 EASST}
|
||||
|
|
|
@ -7,4 +7,8 @@ set TZData(:Pacific/Fiji) {
|
|||
{920124000 43200 0 FJT}
|
||||
{941896800 46800 1 FJST}
|
||||
{951573600 43200 0 FJT}
|
||||
{1259416800 46800 1 FJST}
|
||||
{1269698400 43200 0 FJT}
|
||||
{1287842400 46800 1 FJST}
|
||||
{1301148000 43200 0 FJT}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:Pacific/Pohnpei) {
|
||||
{-9223372036854775808 37972 0 LMT}
|
||||
{-2177490772 39600 0 PONT}
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:Pacific/Ponape) {
|
||||
{-9223372036854775808 37972 0 LMT}
|
||||
{-2177490772 39600 0 PONT}
|
||||
if {![info exists TZData(Pacific/Pohnpei)]} {
|
||||
LoadTimeZoneFile Pacific/Pohnpei
|
||||
}
|
||||
set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei)
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
|
||||
set TZData(:Pacific/Truk) {
|
||||
{-9223372036854775808 36428 0 LMT}
|
||||
{-2177489228 36000 0 TRUT}
|
||||
if {![info exists TZData(Pacific/Chuuk)]} {
|
||||
LoadTimeZoneFile Pacific/Chuuk
|
||||
}
|
||||
set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# created by tools/tclZIC.tcl - do not edit
|
||||
if {![info exists TZData(Pacific/Truk)]} {
|
||||
LoadTimeZoneFile Pacific/Truk
|
||||
if {![info exists TZData(Pacific/Chuuk)]} {
|
||||
LoadTimeZoneFile Pacific/Chuuk
|
||||
}
|
||||
set TZData(:Pacific/Yap) $TZData(:Pacific/Truk)
|
||||
set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk)
|
||||
|
|
|
@ -103,7 +103,12 @@ proc ::platform::generic {} {
|
|||
}
|
||||
sunos {
|
||||
set plat solaris
|
||||
if {![string match "ia64*" $cpu]} {
|
||||
if {[string match "ix86" $cpu]} {
|
||||
if {$tcl_platform(wordSize) == 8} {
|
||||
set cpu x86_64
|
||||
}
|
||||
} elseif {![string match "ia64*" $cpu]} {
|
||||
# sparc
|
||||
if {$tcl_platform(wordSize) == 8} {
|
||||
append cpu 64
|
||||
}
|
||||
|
@ -175,10 +180,30 @@ proc ::platform::identify {} {
|
|||
|
||||
set v unknown
|
||||
|
||||
if {[file exists /lib64] && [file isdirectory /lib64]} {
|
||||
set base /lib64
|
||||
} else {
|
||||
set base /lib
|
||||
# Determine in which directory to look. /lib, or /lib64.
|
||||
# For that we use the tcl_platform(wordSize).
|
||||
#
|
||||
# We could use the 'cpu' info, per the equivalence below,
|
||||
# that however would be restricted to intel. And this may
|
||||
# be a arm, mips, etc. system. The wordsize is more
|
||||
# fundamental.
|
||||
#
|
||||
# ix86 <=> (wordSize == 4) <=> 32 bit ==> /lib
|
||||
# x86_64 <=> (wordSize == 8) <=> 64 bit ==> /lib64
|
||||
#
|
||||
# Do not look into /lib64 even if present, if the cpu
|
||||
# doesn't fit.
|
||||
|
||||
switch -exact -- $tcl_platform(wordSize) {
|
||||
4 {
|
||||
set base /lib
|
||||
}
|
||||
8 {
|
||||
set base /lib64
|
||||
}
|
||||
default {
|
||||
return -code error "Bad wordSize $tcl_platform(wordSize), expected 4 or 8"
|
||||
}
|
||||
}
|
||||
|
||||
set libclist [lsort [glob -nocomplain -directory $base libc*]]
|
||||
|
@ -256,6 +281,13 @@ proc ::platform::patterns {id} {
|
|||
macosx*-* {
|
||||
# 10.5+
|
||||
if {[regexp {macosx([^-]*)-(.*)} $id -> v cpu]} {
|
||||
|
||||
switch -exact -- $cpu {
|
||||
ix86 -
|
||||
x86_64 { set alt i386-x86_64 }
|
||||
default { set alt {} }
|
||||
}
|
||||
|
||||
if {$v ne ""} {
|
||||
foreach {major minor} [split $v .] break
|
||||
|
||||
|
@ -264,22 +296,34 @@ proc ::platform::patterns {id} {
|
|||
for {set j $minor} {$j >= 5} {incr j -1} {
|
||||
lappend res macosx${major}.${j}-${cpu}
|
||||
lappend res macosx${major}.${j}-universal
|
||||
if {$alt ne {}} {
|
||||
lappend res macosx${major}.${j}-$alt
|
||||
}
|
||||
}
|
||||
|
||||
# Add unversioned patterns for 10.3/10.4 builds.
|
||||
lappend res macosx-${cpu}
|
||||
lappend res macosx-universal
|
||||
if {$alt ne {}} {
|
||||
lappend res macosx-$alt
|
||||
}
|
||||
} else {
|
||||
lappend res macosx-universal
|
||||
if {$alt ne {}} {
|
||||
lappend res macosx-$alt
|
||||
}
|
||||
}
|
||||
} else {
|
||||
lappend res macosx-universal
|
||||
}
|
||||
}
|
||||
macosx-powerpc -
|
||||
macosx-ix86 {
|
||||
macosx-powerpc {
|
||||
lappend res macosx-universal
|
||||
}
|
||||
macosx-x86_64 -
|
||||
macosx-ix86 {
|
||||
lappend res macosx-universal macosx-i386-x86_64
|
||||
}
|
||||
}
|
||||
lappend res tcl ; # Pure tcl packages are always compatible.
|
||||
return $res
|
||||
|
@ -289,7 +333,7 @@ proc ::platform::patterns {id} {
|
|||
# ### ### ### ######### ######### #########
|
||||
## Ready
|
||||
|
||||
package provide platform 1.0.5
|
||||
package provide platform 1.0.9
|
||||
|
||||
# ### ### ### ######### ######### #########
|
||||
## Demo application
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
# -*- tcl -*-
|
||||
# ### ### ### ######### ######### #########
|
||||
## Overview
|
||||
|
@ -104,8 +105,10 @@ proc ::platform::shell::LOCATE {bv ov} {
|
|||
# here. If the found package is wrapped we copy the code somewhere
|
||||
# where the spawned shell will be able to read it.
|
||||
|
||||
# Note: This code depends on the form of the 'provide' command
|
||||
# generated by tm.tcl. Keep them in sync. See Bug 2255235.
|
||||
# This code is brittle, it needs has to adapt to whatever changes
|
||||
# are made to the TM code, i.e. the provide statement generated by
|
||||
# tm.tcl
|
||||
|
||||
set pl [package ifneeded platform [package require platform]]
|
||||
set base [lindex $pl end]
|
||||
|
||||
|
|
|
@ -0,0 +1,513 @@
|
|||
# msgcat.tcl --
|
||||
#
|
||||
# This file defines various procedures which implement a
|
||||
# message catalog facility for Tcl programs. It should be
|
||||
# loaded with the command "package require msgcat".
|
||||
#
|
||||
# Copyright (c) 1998-2000 by Ajuba Solutions.
|
||||
# Copyright (c) 1998 by Mark Harrison.
|
||||
#
|
||||
# See the file "license.terms" for information on usage and redistribution
|
||||
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
#
|
||||
# RCS: @(#) $Id: msgcat.tcl,v 1.26.4.2 2009/12/17 16:30:12 dgp Exp $
|
||||
|
||||
package require Tcl 8.5
|
||||
# When the version number changes, be sure to update the pkgIndex.tcl file,
|
||||
# and the installation directory in the Makefiles.
|
||||
package provide msgcat 1.4.3
|
||||
|
||||
namespace eval msgcat {
|
||||
namespace export mc mcload mclocale mcmax mcmset mcpreferences mcset \
|
||||
mcunknown
|
||||
|
||||
# Records the current locale as passed to mclocale
|
||||
variable Locale ""
|
||||
|
||||
# Records the list of locales to search
|
||||
variable Loclist {}
|
||||
|
||||
# Records the mapping between source strings and translated strings. The
|
||||
# dict key is of the form "<locale> <namespace> <src>", where locale and
|
||||
# namespace should be themselves dict values and the value is
|
||||
# the translated string.
|
||||
variable Msgs [dict create]
|
||||
|
||||
# Map of language codes used in Windows registry to those of ISO-639
|
||||
if { $::tcl_platform(platform) eq "windows" } {
|
||||
variable WinRegToISO639 [dict create {*}{
|
||||
01 ar 0401 ar_SA 0801 ar_IQ 0c01 ar_EG 1001 ar_LY 1401 ar_DZ
|
||||
1801 ar_MA 1c01 ar_TN 2001 ar_OM 2401 ar_YE 2801 ar_SY
|
||||
2c01 ar_JO 3001 ar_LB 3401 ar_KW 3801 ar_AE 3c01 ar_BH
|
||||
4001 ar_QA
|
||||
02 bg 0402 bg_BG
|
||||
03 ca 0403 ca_ES
|
||||
04 zh 0404 zh_TW 0804 zh_CN 0c04 zh_HK 1004 zh_SG 1404 zh_MO
|
||||
05 cs 0405 cs_CZ
|
||||
06 da 0406 da_DK
|
||||
07 de 0407 de_DE 0807 de_CH 0c07 de_AT 1007 de_LU 1407 de_LI
|
||||
08 el 0408 el_GR
|
||||
09 en 0409 en_US 0809 en_GB 0c09 en_AU 1009 en_CA 1409 en_NZ
|
||||
1809 en_IE 1c09 en_ZA 2009 en_JM 2409 en_GD 2809 en_BZ
|
||||
2c09 en_TT 3009 en_ZW 3409 en_PH
|
||||
0a es 040a es_ES 080a es_MX 0c0a es_ES@modern 100a es_GT 140a es_CR
|
||||
180a es_PA 1c0a es_DO 200a es_VE 240a es_CO 280a es_PE
|
||||
2c0a es_AR 300a es_EC 340a es_CL 380a es_UY 3c0a es_PY
|
||||
400a es_BO 440a es_SV 480a es_HN 4c0a es_NI 500a es_PR
|
||||
0b fi 040b fi_FI
|
||||
0c fr 040c fr_FR 080c fr_BE 0c0c fr_CA 100c fr_CH 140c fr_LU
|
||||
180c fr_MC
|
||||
0d he 040d he_IL
|
||||
0e hu 040e hu_HU
|
||||
0f is 040f is_IS
|
||||
10 it 0410 it_IT 0810 it_CH
|
||||
11 ja 0411 ja_JP
|
||||
12 ko 0412 ko_KR
|
||||
13 nl 0413 nl_NL 0813 nl_BE
|
||||
14 no 0414 no_NO 0814 nn_NO
|
||||
15 pl 0415 pl_PL
|
||||
16 pt 0416 pt_BR 0816 pt_PT
|
||||
17 rm 0417 rm_CH
|
||||
18 ro 0418 ro_RO
|
||||
19 ru
|
||||
1a hr 041a hr_HR 081a sr_YU 0c1a sr_YU@cyrillic
|
||||
1b sk 041b sk_SK
|
||||
1c sq 041c sq_AL
|
||||
1d sv 041d sv_SE 081d sv_FI
|
||||
1e th 041e th_TH
|
||||
1f tr 041f tr_TR
|
||||
20 ur 0420 ur_PK 0820 ur_IN
|
||||
21 id 0421 id_ID
|
||||
22 uk 0422 uk_UA
|
||||
23 be 0423 be_BY
|
||||
24 sl 0424 sl_SI
|
||||
25 et 0425 et_EE
|
||||
26 lv 0426 lv_LV
|
||||
27 lt 0427 lt_LT
|
||||
28 tg 0428 tg_TJ
|
||||
29 fa 0429 fa_IR
|
||||
2a vi 042a vi_VN
|
||||
2b hy 042b hy_AM
|
||||
2c az 042c az_AZ@latin 082c az_AZ@cyrillic
|
||||
2d eu
|
||||
2e wen 042e wen_DE
|
||||
2f mk 042f mk_MK
|
||||
30 bnt 0430 bnt_TZ
|
||||
31 ts 0431 ts_ZA
|
||||
33 ven 0433 ven_ZA
|
||||
34 xh 0434 xh_ZA
|
||||
35 zu 0435 zu_ZA
|
||||
36 af 0436 af_ZA
|
||||
37 ka 0437 ka_GE
|
||||
38 fo 0438 fo_FO
|
||||
39 hi 0439 hi_IN
|
||||
3a mt 043a mt_MT
|
||||
3b se 043b se_NO
|
||||
043c gd_UK 083c ga_IE
|
||||
3d yi 043d yi_IL
|
||||
3e ms 043e ms_MY 083e ms_BN
|
||||
3f kk 043f kk_KZ
|
||||
40 ky 0440 ky_KG
|
||||
41 sw 0441 sw_KE
|
||||
42 tk 0442 tk_TM
|
||||
43 uz 0443 uz_UZ@latin 0843 uz_UZ@cyrillic
|
||||
44 tt 0444 tt_RU
|
||||
45 bn 0445 bn_IN
|
||||
46 pa 0446 pa_IN
|
||||
47 gu 0447 gu_IN
|
||||
48 or 0448 or_IN
|
||||
49 ta
|
||||
4a te 044a te_IN
|
||||
4b kn 044b kn_IN
|
||||
4c ml 044c ml_IN
|
||||
4d as 044d as_IN
|
||||
4e mr 044e mr_IN
|
||||
4f sa 044f sa_IN
|
||||
50 mn
|
||||
51 bo 0451 bo_CN
|
||||
52 cy 0452 cy_GB
|
||||
53 km 0453 km_KH
|
||||
54 lo 0454 lo_LA
|
||||
55 my 0455 my_MM
|
||||
56 gl 0456 gl_ES
|
||||
57 kok 0457 kok_IN
|
||||
58 mni 0458 mni_IN
|
||||
59 sd
|
||||
5a syr 045a syr_TR
|
||||
5b si 045b si_LK
|
||||
5c chr 045c chr_US
|
||||
5d iu 045d iu_CA
|
||||
5e am 045e am_ET
|
||||
5f ber 045f ber_MA
|
||||
60 ks 0460 ks_PK 0860 ks_IN
|
||||
61 ne 0461 ne_NP 0861 ne_IN
|
||||
62 fy 0462 fy_NL
|
||||
63 ps
|
||||
64 tl 0464 tl_PH
|
||||
65 div 0465 div_MV
|
||||
66 bin 0466 bin_NG
|
||||
67 ful 0467 ful_NG
|
||||
68 ha 0468 ha_NG
|
||||
69 nic 0469 nic_NG
|
||||
6a yo 046a yo_NG
|
||||
70 ibo 0470 ibo_NG
|
||||
71 kau 0471 kau_NG
|
||||
72 om 0472 om_ET
|
||||
73 ti 0473 ti_ET
|
||||
74 gn 0474 gn_PY
|
||||
75 cpe 0475 cpe_US
|
||||
76 la 0476 la_VA
|
||||
77 so 0477 so_SO
|
||||
78 sit 0478 sit_CN
|
||||
79 pap 0479 pap_AN
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
||||
# msgcat::mc --
|
||||
#
|
||||
# Find the translation for the given string based on the current
|
||||
# locale setting. Check the local namespace first, then look in each
|
||||
# parent namespace until the source is found. If additional args are
|
||||
# specified, use the format command to work them into the traslated
|
||||
# string.
|
||||
#
|
||||
# Arguments:
|
||||
# src The string to translate.
|
||||
# args Args to pass to the format command
|
||||
#
|
||||
# Results:
|
||||
# Returns the translated string. Propagates errors thrown by the
|
||||
# format command.
|
||||
|
||||
proc msgcat::mc {src args} {
|
||||
# Check for the src in each namespace starting from the local and
|
||||
# ending in the global.
|
||||
|
||||
variable Msgs
|
||||
variable Loclist
|
||||
variable Locale
|
||||
|
||||
set ns [uplevel 1 [list ::namespace current]]
|
||||
|
||||
while {$ns != ""} {
|
||||
foreach loc $Loclist {
|
||||
if {[dict exists $Msgs $loc $ns $src]} {
|
||||
if {[llength $args] == 0} {
|
||||
return [dict get $Msgs $loc $ns $src]
|
||||
} else {
|
||||
return [format [dict get $Msgs $loc $ns $src] {*}$args]
|
||||
}
|
||||
}
|
||||
}
|
||||
set ns [namespace parent $ns]
|
||||
}
|
||||
# we have not found the translation
|
||||
return [uplevel 1 [list [namespace origin mcunknown] \
|
||||
$Locale $src {*}$args]]
|
||||
}
|
||||
|
||||
# msgcat::mclocale --
|
||||
#
|
||||
# Query or set the current locale.
|
||||
#
|
||||
# Arguments:
|
||||
# newLocale (Optional) The new locale string. Locale strings
|
||||
# should be composed of one or more sublocale parts
|
||||
# separated by underscores (e.g. en_US).
|
||||
#
|
||||
# Results:
|
||||
# Returns the current locale.
|
||||
|
||||
proc msgcat::mclocale {args} {
|
||||
variable Loclist
|
||||
variable Locale
|
||||
set len [llength $args]
|
||||
|
||||
if {$len > 1} {
|
||||
return -code error "wrong # args: should be\
|
||||
\"[lindex [info level 0] 0] ?newLocale?\""
|
||||
}
|
||||
|
||||
if {$len == 1} {
|
||||
set newLocale [lindex $args 0]
|
||||
if {$newLocale ne [file tail $newLocale]} {
|
||||
return -code error "invalid newLocale value \"$newLocale\":\
|
||||
could be path to unsafe code."
|
||||
}
|
||||
set Locale [string tolower $newLocale]
|
||||
set Loclist {}
|
||||
set word ""
|
||||
foreach part [split $Locale _] {
|
||||
set word [string trim "${word}_${part}" _]
|
||||
if {$word ne [lindex $Loclist 0]} {
|
||||
set Loclist [linsert $Loclist 0 $word]
|
||||
}
|
||||
}
|
||||
lappend Loclist {}
|
||||
set Locale [lindex $Loclist 0]
|
||||
}
|
||||
return $Locale
|
||||
}
|
||||
|
||||
# msgcat::mcpreferences --
|
||||
#
|
||||
# Fetch the list of locales used to look up strings, ordered from
|
||||
# most preferred to least preferred.
|
||||
#
|
||||
# Arguments:
|
||||
# None.
|
||||
#
|
||||
# Results:
|
||||
# Returns an ordered list of the locales preferred by the user.
|
||||
|
||||
proc msgcat::mcpreferences {} {
|
||||
variable Loclist
|
||||
return $Loclist
|
||||
}
|
||||
|
||||
# msgcat::mcload --
|
||||
#
|
||||
# Attempt to load message catalogs for each locale in the
|
||||
# preference list from the specified directory.
|
||||
#
|
||||
# Arguments:
|
||||
# langdir The directory to search.
|
||||
#
|
||||
# Results:
|
||||
# Returns the number of message catalogs that were loaded.
|
||||
|
||||
proc msgcat::mcload {langdir} {
|
||||
set x 0
|
||||
foreach p [mcpreferences] {
|
||||
if { $p eq {} } {
|
||||
set p ROOT
|
||||
}
|
||||
set langfile [file join $langdir $p.msg]
|
||||
if {[file exists $langfile]} {
|
||||
incr x
|
||||
uplevel 1 [list ::source -encoding utf-8 $langfile]
|
||||
}
|
||||
}
|
||||
return $x
|
||||
}
|
||||
|
||||
# msgcat::mcset --
|
||||
#
|
||||
# Set the translation for a given string in a specified locale.
|
||||
#
|
||||
# Arguments:
|
||||
# locale The locale to use.
|
||||
# src The source string.
|
||||
# dest (Optional) The translated string. If omitted,
|
||||
# the source string is used.
|
||||
#
|
||||
# Results:
|
||||
# Returns the new locale.
|
||||
|
||||
proc msgcat::mcset {locale src {dest ""}} {
|
||||
variable Msgs
|
||||
if {[llength [info level 0]] == 3} { ;# dest not specified
|
||||
set dest $src
|
||||
}
|
||||
|
||||
set ns [uplevel 1 [list ::namespace current]]
|
||||
|
||||
set locale [string tolower $locale]
|
||||
|
||||
# create nested dictionaries if they do not exist
|
||||
if {![dict exists $Msgs $locale]} {
|
||||
dict set Msgs $locale [dict create]
|
||||
}
|
||||
if {![dict exists $Msgs $locale $ns]} {
|
||||
dict set Msgs $locale $ns [dict create]
|
||||
}
|
||||
dict set Msgs $locale $ns $src $dest
|
||||
return $dest
|
||||
}
|
||||
|
||||
# msgcat::mcmset --
|
||||
#
|
||||
# Set the translation for multiple strings in a specified locale.
|
||||
#
|
||||
# Arguments:
|
||||
# locale The locale to use.
|
||||
# pairs One or more src/dest pairs (must be even length)
|
||||
#
|
||||
# Results:
|
||||
# Returns the number of pairs processed
|
||||
|
||||
proc msgcat::mcmset {locale pairs } {
|
||||
variable Msgs
|
||||
|
||||
set length [llength $pairs]
|
||||
if {$length % 2} {
|
||||
return -code error "bad translation list:\
|
||||
should be \"[lindex [info level 0] 0] locale {src dest ...}\""
|
||||
}
|
||||
|
||||
set locale [string tolower $locale]
|
||||
set ns [uplevel 1 [list ::namespace current]]
|
||||
|
||||
# create nested dictionaries if they do not exist
|
||||
if {![dict exists $Msgs $locale]} {
|
||||
dict set Msgs $locale [dict create]
|
||||
}
|
||||
if {![dict exists $Msgs $locale $ns]} {
|
||||
dict set Msgs $locale $ns [dict create]
|
||||
}
|
||||
foreach {src dest} $pairs {
|
||||
dict set Msgs $locale $ns $src $dest
|
||||
}
|
||||
|
||||
return $length
|
||||
}
|
||||
|
||||
# msgcat::mcunknown --
|
||||
#
|
||||
# This routine is called by msgcat::mc if a translation cannot
|
||||
# be found for a string. This routine is intended to be replaced
|
||||
# by an application specific routine for error reporting
|
||||
# purposes. The default behavior is to return the source string.
|
||||
# If additional args are specified, the format command will be used
|
||||
# to work them into the traslated string.
|
||||
#
|
||||
# Arguments:
|
||||
# locale The current locale.
|
||||
# src The string to be translated.
|
||||
# args Args to pass to the format command
|
||||
#
|
||||
# Results:
|
||||
# Returns the translated value.
|
||||
|
||||
proc msgcat::mcunknown {locale src args} {
|
||||
if {[llength $args]} {
|
||||
return [format $src {*}$args]
|
||||
} else {
|
||||
return $src
|
||||
}
|
||||
}
|
||||
|
||||
# msgcat::mcmax --
|
||||
#
|
||||
# Calculates the maximum length of the translated strings of the given
|
||||
# list.
|
||||
#
|
||||
# Arguments:
|
||||
# args strings to translate.
|
||||
#
|
||||
# Results:
|
||||
# Returns the length of the longest translated string.
|
||||
|
||||
proc msgcat::mcmax {args} {
|
||||
set max 0
|
||||
foreach string $args {
|
||||
set translated [uplevel 1 [list [namespace origin mc] $string]]
|
||||
set len [string length $translated]
|
||||
if {$len>$max} {
|
||||
set max $len
|
||||
}
|
||||
}
|
||||
return $max
|
||||
}
|
||||
|
||||
# Convert the locale values stored in environment variables to a form
|
||||
# suitable for passing to [mclocale]
|
||||
proc msgcat::ConvertLocale {value} {
|
||||
# Assume $value is of form: $language[_$territory][.$codeset][@modifier]
|
||||
# Convert to form: $language[_$territory][_$modifier]
|
||||
#
|
||||
# Comment out expanded RE version -- bugs alleged
|
||||
# regexp -expanded {
|
||||
# ^ # Match all the way to the beginning
|
||||
# ([^_.@]*) # Match "lanugage"; ends with _, ., or @
|
||||
# (_([^.@]*))? # Match (optional) "territory"; starts with _
|
||||
# ([.]([^@]*))? # Match (optional) "codeset"; starts with .
|
||||
# (@(.*))? # Match (optional) "modifier"; starts with @
|
||||
# $ # Match all the way to the end
|
||||
# } $value -> language _ territory _ codeset _ modifier
|
||||
if {![regexp {^([^_.@]+)(_([^.@]*))?([.]([^@]*))?(@(.*))?$} $value \
|
||||
-> language _ territory _ codeset _ modifier]} {
|
||||
return -code error "invalid locale '$value': empty language part"
|
||||
}
|
||||
set ret $language
|
||||
if {[string length $territory]} {
|
||||
append ret _$territory
|
||||
}
|
||||
if {[string length $modifier]} {
|
||||
append ret _$modifier
|
||||
}
|
||||
return $ret
|
||||
}
|
||||
|
||||
# Initialize the default locale
|
||||
proc msgcat::Init {} {
|
||||
global env tcl_platform
|
||||
|
||||
#
|
||||
# set default locale, try to get from environment
|
||||
#
|
||||
foreach varName {LC_ALL LC_MESSAGES LANG} {
|
||||
if {[info exists env($varName)] && ("" ne $env($varName))} {
|
||||
if {![catch {
|
||||
mclocale [ConvertLocale $env($varName)]
|
||||
}]} {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
#
|
||||
# On Darwin, fallback to current CFLocale identifier if available.
|
||||
#
|
||||
if {[info exists ::tcl::mac::locale] && $::tcl::mac::locale ne ""} {
|
||||
if {![catch {
|
||||
mclocale [ConvertLocale $::tcl::mac::locale]
|
||||
}]} {
|
||||
return
|
||||
}
|
||||
}
|
||||
#
|
||||
# The rest of this routine is special processing for Windows;
|
||||
# all other platforms, get out now.
|
||||
#
|
||||
if {$tcl_platform(platform) ne "windows"} {
|
||||
mclocale C
|
||||
return
|
||||
}
|
||||
#
|
||||
# On Windows, try to set locale depending on registry settings,
|
||||
# or fall back on locale of "C".
|
||||
#
|
||||
set key {HKEY_CURRENT_USER\Control Panel\International}
|
||||
if {[catch {
|
||||
package require registry
|
||||
set locale [registry get $key "locale"]
|
||||
}]} {
|
||||
mclocale C
|
||||
return
|
||||
}
|
||||
#
|
||||
# Keep trying to match against smaller and smaller suffixes
|
||||
# of the registry value, since the latter hexadigits appear
|
||||
# to determine general language and earlier hexadigits determine
|
||||
# more precise information, such as territory. For example,
|
||||
# 0409 - English - United States
|
||||
# 0809 - English - United Kingdom
|
||||
# Add more translations to the WinRegToISO639 array above.
|
||||
#
|
||||
variable WinRegToISO639
|
||||
set locale [string tolower $locale]
|
||||
while {[string length $locale]} {
|
||||
if {![catch {
|
||||
mclocale [ConvertLocale [dict get $WinRegToISO639 $locale]]
|
||||
}]} {
|
||||
return
|
||||
}
|
||||
set locale [string range $locale 1 end]
|
||||
}
|
||||
#
|
||||
# No translation known. Fall back on "C" locale
|
||||
#
|
||||
mclocale C
|
||||
}
|
||||
msgcat::Init
|
Двоичные данные
mingw/lib/tcl85.lib
Двоичные данные
mingw/lib/tcl85.lib
Двоичный файл не отображается.
|
@ -17,7 +17,7 @@ TCL_DLL_FILE="tcl85.dll"
|
|||
TCL_VERSION='8.5'
|
||||
TCL_MAJOR_VERSION='8'
|
||||
TCL_MINOR_VERSION='5'
|
||||
TCL_PATCH_LEVEL='.8'
|
||||
TCL_PATCH_LEVEL='.9'
|
||||
|
||||
# C compiler to use for compilation.
|
||||
TCL_CC='cl'
|
||||
|
@ -112,7 +112,7 @@ TCL_LIB_FLAG='-ltcl85'
|
|||
|
||||
# String to pass to linker to pick up the Tcl library from its
|
||||
# build directory.
|
||||
TCL_BUILD_LIB_SPEC='-L/src/tcltk/tcl8.5.8/win -ltcl85'
|
||||
TCL_BUILD_LIB_SPEC='-L/src/tcltk/tcl8.5.9/win -ltcl85'
|
||||
|
||||
# String to pass to linker to pick up the Tcl library from its
|
||||
# installed directory.
|
||||
|
@ -147,7 +147,7 @@ TCL_UNSHARED_LIB_SUFFIX='${NODOT_VERSION}${DBGX}.lib'
|
|||
# different place than the directory containing the source files, this
|
||||
# points to the location of the sources, not the location where Tcl was
|
||||
# compiled.
|
||||
TCL_SRC_DIR='/src/tcltk/tcl8.5.8'
|
||||
TCL_SRC_DIR='/src/tcltk/tcl8.5.9'
|
||||
|
||||
# List of standard directories in which to look for packages during
|
||||
# "package require" commands. Contains the "prefix" directory plus also
|
||||
|
@ -165,14 +165,14 @@ TCL_STUB_LIB_FLAG='-ltclstub85'
|
|||
|
||||
# String to pass to linker to pick up the Tcl stub library from its
|
||||
# build directory.
|
||||
TCL_BUILD_STUB_LIB_SPEC='-L/src/tcltk/tcl8.5.8/win -ltclstub85'
|
||||
TCL_BUILD_STUB_LIB_SPEC='-L/src/tcltk/tcl8.5.9/win -ltclstub85'
|
||||
|
||||
# String to pass to linker to pick up the Tcl stub library from its
|
||||
# installed directory.
|
||||
TCL_STUB_LIB_SPEC='-L/mingw/lib -ltclstub85'
|
||||
|
||||
# Path to the Tcl stub library in the build directory.
|
||||
TCL_BUILD_STUB_LIB_PATH='/src/tcltk/tcl8.5.8/win/tclstub85.lib'
|
||||
TCL_BUILD_STUB_LIB_PATH='/src/tcltk/tcl8.5.9/win/tclstub85.lib'
|
||||
|
||||
# Path to the Tcl stub library in the install directory.
|
||||
TCL_STUB_LIB_PATH='/mingw/lib/tclstub85.lib'
|
||||
|
|
Двоичные данные
mingw/lib/tclstub85.lib
Двоичные данные
mingw/lib/tclstub85.lib
Двоичный файл не отображается.
|
@ -3,31 +3,51 @@
|
|||
/mingw/bin/tclsh.exe
|
||||
/mingw/bin/tclsh85.exe
|
||||
/mingw/include/tcl.h
|
||||
/mingw/include/tclTomMath.h
|
||||
/mingw/include/tclDecls.h
|
||||
/mingw/include/tclPlatDecls.h
|
||||
/mingw/include/tclTomMathDecls.h
|
||||
/mingw/lib/dde1.3/tcldde13.dll
|
||||
/mingw/lib/dde1.3/tcldde13.lib
|
||||
/mingw/lib/reg1.2/tclreg12.dll
|
||||
/mingw/lib/reg1.2/tclreg12.lib
|
||||
/mingw/lib/tcl8.5/clock.tcl
|
||||
/mingw/lib/tcl8.5/init.tcl
|
||||
/mingw/lib/tcl8.5/msgs/he.msg
|
||||
/mingw/lib/tcl8.5/safe.tcl
|
||||
/mingw/lib/tcl8.5/tzdata/Africa/Cairo
|
||||
/mingw/lib/tcl8.5/tzdata/America/Argentina/Buenos_Aires
|
||||
/mingw/lib/tcl8.5/tzdata/America/Argentina/Cordoba
|
||||
/mingw/lib/tcl8.5/tzdata/Africa/Casablanca
|
||||
/mingw/lib/tcl8.5/tzdata/Africa/Tunis
|
||||
/mingw/lib/tcl8.5/tzdata/America/Argentina/San_Luis
|
||||
/mingw/lib/tcl8.5/tzdata/America/Argentina/Tucuman
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Amman
|
||||
/mingw/lib/tcl8.5/tzdata/America/Asuncion
|
||||
/mingw/lib/tcl8.5/tzdata/America/Bahia_Banderas
|
||||
/mingw/lib/tcl8.5/tzdata/America/Matamoros
|
||||
/mingw/lib/tcl8.5/tzdata/America/Ojinaga
|
||||
/mingw/lib/tcl8.5/tzdata/America/Santa_Isabel
|
||||
/mingw/lib/tcl8.5/tzdata/America/Santiago
|
||||
/mingw/lib/tcl8.5/tzdata/America/Tijuana
|
||||
/mingw/lib/tcl8.5/tzdata/Antarctica/Casey
|
||||
/mingw/lib/tcl8.5/tzdata/Antarctica/Davis
|
||||
/mingw/lib/tcl8.5/tzdata/Antarctica/Macquarie
|
||||
/mingw/lib/tcl8.5/tzdata/Antarctica/Mawson
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Anadyr
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Damascus
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Dhaka
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Gaza
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Hong_Kong
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Kamchatka
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Karachi
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Novokuznetsk
|
||||
/mingw/lib/tcl8.5/tzdata/Indian/Mauritius
|
||||
/mingw/lib/tcl8.5/tzdata/Asia/Taipei
|
||||
/mingw/lib/tcl8.5/tzdata/Europe/Helsinki
|
||||
/mingw/lib/tcl8.5/tzdata/Europe/Samara
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Apia
|
||||
/mingw/lib/tcl8/8.4/http-2.7.5.tm
|
||||
/mingw/lib/tcl8/8.4/platform-1.0.5.tm
|
||||
/mingw/lib/tcl8/8.5/tcltest-2.3.2.tm
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Chuuk
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Easter
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Fiji
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Pohnpei
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Ponape
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Truk
|
||||
/mingw/lib/tcl8.5/tzdata/Pacific/Yap
|
||||
/mingw/lib/tcl8/8.4/platform-1.0.9.tm
|
||||
/mingw/lib/tcl8/8.4/platform/shell-1.1.4.tm
|
||||
/mingw/lib/tcl8/8.5/msgcat-1.4.3.tm
|
||||
/mingw/lib/tcl85.lib
|
||||
/mingw/lib/tclConfig.sh
|
||||
/mingw/lib/tclstub85.lib
|
||||
|
|
Загрузка…
Ссылка в новой задаче